[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <YpyYSFjTQQQ/p4bM@casper.infradead.org>
Date: Sun, 5 Jun 2022 12:49:28 +0100
From: Matthew Wilcox <willy@...radead.org>
To: Chen Wandun <chenwandun@...wei.com>
Cc: hughd@...gle.com, akpm@...ux-foundation.org, linux-mm@...ck.org,
linux-kernel@...r.kernel.org, david@...hat.com,
wangkefeng.wang@...wei.com
Subject: Re: [PATCH v2 1/3] mm/shmem: check return value of
shmem_init_inodecache
On Sun, Jun 05, 2022 at 11:55:55AM +0800, Chen Wandun wrote:
> It will result in null pointer access if shmem_init_inodecache fail,
> so check return value of shmem_init_inodecache
You ignored my suggestion from v1. Here, let me write it out for you.
+static int shmem_init_inodecache(void)
{
shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
sizeof(struct shmem_inode_info),
0, SLAB_PANIC|SLAB_ACCOUNT, shmem_init_inode);
+ if (!shmem_inode_cachep)
+ return -ENOMEM;
+ return 0;
}
...
+ error = shmem_init_inodecache();
+ if (error)
+ goto out2;
Powered by blists - more mailing lists