commit | 1d5cfdb076288df5eb95545a547a39905e95c930 | [log] [tgz] |
---|---|---|
author | Tetsuo Handa <[email protected]> | Fri Jan 22 15:11:02 2016 -0800 |
committer | Linus Torvalds <[email protected]> | Fri Jan 22 17:02:18 2016 -0800 |
tree | c644d2e609c3054833710b75ab1d0fe50fb17c01 | |
parent | eab95db69d334745d3034072f4a7204084136c88 [diff] |
tree wide: use kvfree() than conditional kfree()/vfree() There are many locations that do if (memory_was_allocated_by_vmalloc) vfree(ptr); else kfree(ptr); but kvfree() can handle both kmalloc()ed memory and vmalloc()ed memory using is_vmalloc_addr(). Unless callers have special reasons, we can replace this branch with kvfree(). Please check and reply if you found problems. Signed-off-by: Tetsuo Handa <[email protected]> Acked-by: Michal Hocko <[email protected]> Acked-by: Jan Kara <[email protected]> Acked-by: Russell King <[email protected]> Reviewed-by: Andreas Dilger <[email protected]> Acked-by: "Rafael J. Wysocki" <[email protected]> Acked-by: David Rientjes <[email protected]> Cc: "Luck, Tony" <[email protected]> Cc: Oleg Drokin <[email protected]> Cc: Boris Petkov <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>