Skip to content

Commit 7a6f93b

Browse files
Yasuaki Ishimatsutorvalds
authored andcommitted
firmware, memmap: fix firmware_map_entry leak
When hot removing memory, a firmware_map_entry which has memory range of the memory is released by release_firmware_map_entry(). If the entry is allocated by bootmem, release_firmware_map_entry() adds the entry to map_entires_bootmem list when firmware_map_find_entry() finds the entry from map_entries list. But firmware_map_find_entry never find the entry sicne map_entires list does not have the entry. So the entry just leaks. Here are steps of leaking firmware_map_entry: firmware_map_remove() -> firmware_map_find_entry() Find released entry from map_entries list -> firmware_map_remove_entry() Delete the entry from map_entries list -> remove_sysfs_fw_map_entry() ... -> release_firmware_map_entry() -> firmware_map_find_entry() Find the entry from map_entries list but the entry has been deleted from map_entries list. So the entry is not added to map_entries_bootmem. Thus the entry leaks release_firmware_map_entry() should not call firmware_map_find_entry() since releaed entry has been deleted from map_entries list. So the patch delete firmware_map_find_entry() from releae_firmware_map_entry() Signed-off-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com> Reviewed-by: Wanpeng Li <liwanp@linux.vnet.ibm.com> Reviewed-by: Tang Chen <tangchen@cn.fujitsu.com> Acked-by: Toshi Kani <toshi.kani@hp.com> Cc: Wen Congyang <wency@cn.fujitsu.com> Cc: Greg KH <greg@kroah.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 40f4b1e commit 7a6f93b

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

drivers/firmware/memmap.c

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,9 @@ static void __meminit release_firmware_map_entry(struct kobject *kobj)
114114
* map_entries_bootmem here, and deleted from &map_entries in
115115
* firmware_map_remove_entry().
116116
*/
117-
if (firmware_map_find_entry(entry->start, entry->end,
118-
entry->type)) {
119-
spin_lock(&map_entries_bootmem_lock);
120-
list_add(&entry->list, &map_entries_bootmem);
121-
spin_unlock(&map_entries_bootmem_lock);
122-
}
117+
spin_lock(&map_entries_bootmem_lock);
118+
list_add(&entry->list, &map_entries_bootmem);
119+
spin_unlock(&map_entries_bootmem_lock);
123120

124121
return;
125122
}

0 commit comments

Comments
 (0)