diff options
author | Pekka Enberg <penberg@kernel.org> | 2015-06-30 17:58:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-06-30 22:44:58 -0400 |
commit | c859aa83113dcad165d986e66aa21c5b73745f42 (patch) | |
tree | 6c705179b893cfe26873dafc2a215b023f0da431 /ipc/util.c | |
parent | 92ed932d3081e494a6c61d22c093af100a313034 (diff) |
ipc/util.c: use kvfree() in ipc_rcu_free()
Use kvfree() instead of open-coding it.
Signed-off-by: Pekka Enberg <penberg@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'ipc/util.c')
-rw-r--r-- | ipc/util.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ipc/util.c b/ipc/util.c index ff3323ef8d8b..537a41c7f633 100644 --- a/ipc/util.c +++ b/ipc/util.c | |||
@@ -467,10 +467,7 @@ void ipc_rcu_free(struct rcu_head *head) | |||
467 | { | 467 | { |
468 | struct ipc_rcu *p = container_of(head, struct ipc_rcu, rcu); | 468 | struct ipc_rcu *p = container_of(head, struct ipc_rcu, rcu); |
469 | 469 | ||
470 | if (is_vmalloc_addr(p)) | 470 | kvfree(p); |
471 | vfree(p); | ||
472 | else | ||
473 | kfree(p); | ||
474 | } | 471 | } |
475 | 472 | ||
476 | /** | 473 | /** |