diff options
-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) { struct ipc_rcu *p = container_of(head, struct ipc_rcu, rcu); - if (is_vmalloc_addr(p)) - vfree(p); - else - kfree(p); + kvfree(p); } /** |