aboutsummaryrefslogtreecommitdiffstats
path: root/ipc/util.c
diff options
context:
space:
mode:
authorDavidlohr Bueso <davidlohr.bueso@hp.com>2013-09-11 17:26:29 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-10-18 10:45:48 -0400
commitffa02e67efa1c1bd32ea07a17d74506e5855a50d (patch)
tree78170bc78355e6a86f26330cc1bb715fedd25547 /ipc/util.c
parent48ec782ce3e59d6ab14a8c1197c19826e61ac8e5 (diff)
ipc: drop ipc_lock_by_ptr
commit 32a2750010981216fb788c5190fb0e646abfab30 upstream. After previous cleanups and optimizations, this function is no longer heavily used and we don't have a good reason to keep it. Update the few remaining callers and get rid of it. Signed-off-by: Davidlohr Bueso <davidlohr.bueso@hp.com> Cc: Sedat Dilek <sedat.dilek@gmail.com> Cc: Rik van Riel <riel@redhat.com> Cc: Manfred Spraul <manfred@colorfullife.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Cc: Mike Galbraith <efault@gmx.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'ipc/util.c')
-rw-r--r--ipc/util.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ipc/util.c b/ipc/util.c
index 1ddadcf9a2ab..9f6aa30d2e0f 100644
--- a/ipc/util.c
+++ b/ipc/util.c
@@ -205,7 +205,8 @@ static struct kern_ipc_perm *ipc_findkey(struct ipc_ids *ids, key_t key)
205 continue; 205 continue;
206 } 206 }
207 207
208 ipc_lock_by_ptr(ipc); 208 rcu_read_lock();
209 ipc_lock_object(ipc);
209 return ipc; 210 return ipc;
210 } 211 }
211 212
@@ -838,7 +839,8 @@ static struct kern_ipc_perm *sysvipc_find_ipc(struct ipc_ids *ids, loff_t pos,
838 ipc = idr_find(&ids->ipcs_idr, pos); 839 ipc = idr_find(&ids->ipcs_idr, pos);
839 if (ipc != NULL) { 840 if (ipc != NULL) {
840 *new_pos = pos + 1; 841 *new_pos = pos + 1;
841 ipc_lock_by_ptr(ipc); 842 rcu_read_lock();
843 ipc_lock_object(ipc);
842 return ipc; 844 return ipc;
843 } 845 }
844 } 846 }