Skip to content
Snippets Groups Projects
Commit 6d97e234 authored by Adrian Bunk's avatar Adrian Bunk Committed by Linus Torvalds
Browse files

ipc/sem.c: make free_un() static

parent c9f66169
No related merge requests found
...@@ -504,7 +504,7 @@ static int count_semzcnt (struct sem_array * sma, ushort semnum) ...@@ -504,7 +504,7 @@ static int count_semzcnt (struct sem_array * sma, ushort semnum)
return semzcnt; return semzcnt;
} }
void free_un(struct rcu_head *head) static void free_un(struct rcu_head *head)
{ {
struct sem_undo *un = container_of(head, struct sem_undo, rcu); struct sem_undo *un = container_of(head, struct sem_undo, rcu);
kfree(un); kfree(un);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment