提交 27e37d84 编写于 作者: K Kefeng Wang 提交者: Linus Torvalds

pid: kill pidhash_size in pidhash_init()

After commit 3d375d78 ("mm: update callers to use HASH_ZERO flag"),
drop unused pidhash_size in pidhash_init().

Link: http://lkml.kernel.org/r/1500389267-49222-1-git-send-email-wangkefeng.wang@huawei.comSigned-off-by: NKefeng Wang <wangkefeng.wang@huawei.com>
Reviewed-by: NPavel Tatashin <Pasha.Tatashin@Oracle.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 2be7cfed
...@@ -575,13 +575,10 @@ struct pid *find_ge_pid(int nr, struct pid_namespace *ns) ...@@ -575,13 +575,10 @@ struct pid *find_ge_pid(int nr, struct pid_namespace *ns)
*/ */
void __init pidhash_init(void) void __init pidhash_init(void)
{ {
unsigned int pidhash_size;
pid_hash = alloc_large_system_hash("PID", sizeof(*pid_hash), 0, 18, pid_hash = alloc_large_system_hash("PID", sizeof(*pid_hash), 0, 18,
HASH_EARLY | HASH_SMALL | HASH_ZERO, HASH_EARLY | HASH_SMALL | HASH_ZERO,
&pidhash_shift, NULL, &pidhash_shift, NULL,
0, 4096); 0, 4096);
pidhash_size = 1U << pidhash_shift;
} }
void __init pidmap_init(void) void __init pidmap_init(void)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册