Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 40647
b: refs/heads/master
c: c7e12b8
h: refs/heads/master
i:
  40645: 740e2cc
  40643: f0d34f5
  40639: 904cf75
v: v3
  • Loading branch information
Pavel Emelianov authored and Linus Torvalds committed Nov 3, 2006
1 parent 34913af commit e2bb010
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 733b72c31efb0d6b29577655939ccfe835381b52
refs/heads/master: c7e12b838989b0e432c7a1cdf1e6c6fd936007f6
1 change: 1 addition & 0 deletions trunk/ipc/msg.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ void msg_exit_ns(struct ipc_namespace *ns)
}
mutex_unlock(&msg_ids(ns).mutex);

ipc_fini_ids(ns->ids[IPC_MSG_IDS]);
kfree(ns->ids[IPC_MSG_IDS]);
ns->ids[IPC_MSG_IDS] = NULL;
}
Expand Down
1 change: 1 addition & 0 deletions trunk/ipc/sem.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ void sem_exit_ns(struct ipc_namespace *ns)
}
mutex_unlock(&sem_ids(ns).mutex);

ipc_fini_ids(ns->ids[IPC_SEM_IDS]);
kfree(ns->ids[IPC_SEM_IDS]);
ns->ids[IPC_SEM_IDS] = NULL;
}
Expand Down
1 change: 1 addition & 0 deletions trunk/ipc/shm.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ void shm_exit_ns(struct ipc_namespace *ns)
}
mutex_unlock(&shm_ids(ns).mutex);

ipc_fini_ids(ns->ids[IPC_SHM_IDS]);
kfree(ns->ids[IPC_SHM_IDS]);
ns->ids[IPC_SHM_IDS] = NULL;
}
Expand Down
2 changes: 1 addition & 1 deletion trunk/ipc/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ static int grow_ary(struct ipc_ids* ids, int newsize)
*/
rcu_assign_pointer(ids->entries, new);

ipc_rcu_putref(old);
__ipc_fini_ids(ids, old);
return newsize;
}

Expand Down
12 changes: 12 additions & 0 deletions trunk/ipc/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,18 @@ void* ipc_rcu_alloc(int size);
void ipc_rcu_getref(void *ptr);
void ipc_rcu_putref(void *ptr);

static inline void __ipc_fini_ids(struct ipc_ids *ids,
struct ipc_id_ary *entries)
{
if (entries != &ids->nullentry)
ipc_rcu_putref(entries);
}

static inline void ipc_fini_ids(struct ipc_ids *ids)
{
__ipc_fini_ids(ids, ids->entries);
}

struct kern_ipc_perm* ipc_get(struct ipc_ids* ids, int id);
struct kern_ipc_perm* ipc_lock(struct ipc_ids* ids, int id);
void ipc_lock_by_ptr(struct kern_ipc_perm *ipcp);
Expand Down

0 comments on commit e2bb010

Please sign in to comment.