aboutsummaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorDavidlohr Bueso <davidlohr.bueso@hp.com>2013-07-08 19:01:10 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-07-09 13:33:27 -0400
commit1ca7003ab41152d673d9e359632283d05294f3d6 (patch)
treeb587df3d3a2aecc47acd74712348c2895c292bb6 /ipc
parentdbfcd91f06f0e2d5564b2fd184e9c2a43675f9ab (diff)
ipc: introduce ipc object locking helpers
Simple helpers around the (kern_ipc_perm *)->lock spinlock. Signed-off-by: Davidlohr Bueso <davidlohr.bueso@hp.com> Cc: Andi Kleen <andi@firstfloor.org> Cc: Rik van Riel <riel@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'ipc')
-rw-r--r--ipc/util.h20
1 files changed, 15 insertions, 5 deletions
diff --git a/ipc/util.h b/ipc/util.h
index 2b0bdd5d92ce..da65e8afb8f4 100644
--- a/ipc/util.h
+++ b/ipc/util.h
@@ -159,23 +159,33 @@ static inline int ipc_checkid(struct kern_ipc_perm *ipcp, int uid)
159 return uid / SEQ_MULTIPLIER != ipcp->seq; 159 return uid / SEQ_MULTIPLIER != ipcp->seq;
160} 160}
161 161
162static inline void ipc_lock_by_ptr(struct kern_ipc_perm *perm) 162static inline void ipc_lock_object(struct kern_ipc_perm *perm)
163{ 163{
164 rcu_read_lock();
165 spin_lock(&perm->lock); 164 spin_lock(&perm->lock);
166} 165}
167 166
168static inline void ipc_unlock(struct kern_ipc_perm *perm) 167static inline void ipc_unlock_object(struct kern_ipc_perm *perm)
169{ 168{
170 spin_unlock(&perm->lock); 169 spin_unlock(&perm->lock);
171 rcu_read_unlock();
172} 170}
173 171
174static inline void ipc_lock_object(struct kern_ipc_perm *perm) 172static inline void ipc_assert_locked_object(struct kern_ipc_perm *perm)
175{ 173{
174 assert_spin_locked(&perm->lock);
175}
176
177static inline void ipc_lock_by_ptr(struct kern_ipc_perm *perm)
178{
179 rcu_read_lock();
176 spin_lock(&perm->lock); 180 spin_lock(&perm->lock);
177} 181}
178 182
183static inline void ipc_unlock(struct kern_ipc_perm *perm)
184{
185 spin_unlock(&perm->lock);
186 rcu_read_unlock();
187}
188
179struct kern_ipc_perm *ipc_lock_check(struct ipc_ids *ids, int id); 189struct kern_ipc_perm *ipc_lock_check(struct ipc_ids *ids, int id);
180struct kern_ipc_perm *ipc_obtain_object_check(struct ipc_ids *ids, int id); 190struct kern_ipc_perm *ipc_obtain_object_check(struct ipc_ids *ids, int id);
181int ipcget(struct ipc_namespace *ns, struct ipc_ids *ids, 191int ipcget(struct ipc_namespace *ns, struct ipc_ids *ids,