Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ipc: drop ipc_lock_check

No remaining users, we now use ipc_obtain_object_check().

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>

authored by

Davidlohr Bueso and committed by
Linus Torvalds
20b8875a 7a25dd9e

-17
-16
ipc/util.c
··· 686 686 return out; 687 687 } 688 688 689 - struct kern_ipc_perm *ipc_lock_check(struct ipc_ids *ids, int id) 690 - { 691 - struct kern_ipc_perm *out; 692 - 693 - out = ipc_lock(ids, id); 694 - if (IS_ERR(out)) 695 - return out; 696 - 697 - if (ipc_checkid(out, id)) { 698 - ipc_unlock(out); 699 - return ERR_PTR(-EIDRM); 700 - } 701 - 702 - return out; 703 - } 704 - 705 689 /** 706 690 * ipcget - Common sys_*get() code 707 691 * @ns : namsepace
-1
ipc/util.h
··· 177 177 rcu_read_unlock(); 178 178 } 179 179 180 - struct kern_ipc_perm *ipc_lock_check(struct ipc_ids *ids, int id); 181 180 struct kern_ipc_perm *ipc_obtain_object_check(struct ipc_ids *ids, int id); 182 181 int ipcget(struct ipc_namespace *ns, struct ipc_ids *ids, 183 182 struct ipc_ops *ops, struct ipc_params *params);