Commit 98236794 authored by Andrew Morton's avatar Andrew Morton Committed by James Toy

Remove NUM_NOTES

Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Amerigo Wang <amwang@redhat.com>
Cc: David Howells <dhowells@redhat.com>
Cc: Roland McGrath <roland@redhat.com>
Cc: WANG Cong <amwang@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 625c4352
...@@ -1716,10 +1716,8 @@ static int elf_note_info_init(struct elf_note_info *info) ...@@ -1716,10 +1716,8 @@ static int elf_note_info_init(struct elf_note_info *info)
memset(info, 0, sizeof(*info)); memset(info, 0, sizeof(*info));
INIT_LIST_HEAD(&info->thread_list); INIT_LIST_HEAD(&info->thread_list);
#define NUM_NOTES 6 /* Allocate space for six ELF notes */
info->notes = kmalloc(NUM_NOTES * sizeof(struct memelfnote), info->notes = kmalloc(6 * sizeof(struct memelfnote), GFP_KERNEL);
GFP_KERNEL);
#undef NUM_NOTES
if (!info->notes) if (!info->notes)
return 0; return 0;
info->psinfo = kmalloc(sizeof(*info->psinfo), GFP_KERNEL); info->psinfo = kmalloc(sizeof(*info->psinfo), GFP_KERNEL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment