Skip to content

Commit

Permalink
IPC/semaphores: remove one unused parameter from semctl_down()
Browse files Browse the repository at this point in the history
semctl_down() takes one unused parameter: semnum.  This patch proposes to get
rid of it.

Signed-off-by: Pierre Peiffer <pierre.peiffer@bull.net>
Acked-by: Serge Hallyn <serue@us.ibm.com>
Cc: Nadia Derbey <Nadia.Derbey@bull.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Pierre Peiffer authored and Linus Torvalds committed Apr 29, 2008
1 parent 522bb2a commit 21a4826
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ipc/sem.c
Original file line number Diff line number Diff line change
Expand Up @@ -880,8 +880,8 @@ static inline unsigned long copy_semid_from_user(struct sem_setbuf *out, void __
* to be held in write mode.
* NOTE: no locks must be held, the rw_mutex is taken inside this function.
*/
static int semctl_down(struct ipc_namespace *ns, int semid, int semnum,
int cmd, int version, union semun arg)
static int semctl_down(struct ipc_namespace *ns, int semid,
int cmd, int version, union semun arg)
{
struct sem_array *sma;
int err;
Expand Down Expand Up @@ -972,7 +972,7 @@ asmlinkage long sys_semctl (int semid, int semnum, int cmd, union semun arg)
return err;
case IPC_RMID:
case IPC_SET:
err = semctl_down(ns,semid,semnum,cmd,version,arg);
err = semctl_down(ns, semid, cmd, version, arg);
return err;
default:
return -EINVAL;
Expand Down

0 comments on commit 21a4826

Please sign in to comment.