diff options
| author | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2006-11-22 13:06:44 -0500 |
|---|---|---|
| committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2006-11-22 13:06:44 -0500 |
| commit | 0bd2af46839ad6262d25714a6ec0365db9d6b98f (patch) | |
| tree | dcced72d230d69fd0c5816ac6dd03ab84799a93e /ipc | |
| parent | e138a5d2356729b8752e88520cc1525fae9794ac (diff) | |
| parent | f26b90440cd74c78fe10c9bd5160809704a9627c (diff) | |
Merge ../scsi-rc-fixes-2.6
Diffstat (limited to 'ipc')
| -rw-r--r-- | ipc/msg.c | 3 | ||||
| -rw-r--r-- | ipc/sem.c | 1 | ||||
| -rw-r--r-- | ipc/shm.c | 1 | ||||
| -rw-r--r-- | ipc/util.c | 2 | ||||
| -rw-r--r-- | ipc/util.h | 12 |
5 files changed, 17 insertions, 2 deletions
| @@ -52,7 +52,7 @@ struct msg_receiver { | |||
| 52 | long r_msgtype; | 52 | long r_msgtype; |
| 53 | long r_maxsize; | 53 | long r_maxsize; |
| 54 | 54 | ||
| 55 | volatile struct msg_msg *r_msg; | 55 | struct msg_msg *volatile r_msg; |
| 56 | }; | 56 | }; |
| 57 | 57 | ||
| 58 | /* one msg_sender for each sleeping sender */ | 58 | /* one msg_sender for each sleeping sender */ |
| @@ -124,6 +124,7 @@ void msg_exit_ns(struct ipc_namespace *ns) | |||
| 124 | } | 124 | } |
| 125 | mutex_unlock(&msg_ids(ns).mutex); | 125 | mutex_unlock(&msg_ids(ns).mutex); |
| 126 | 126 | ||
| 127 | ipc_fini_ids(ns->ids[IPC_MSG_IDS]); | ||
| 127 | kfree(ns->ids[IPC_MSG_IDS]); | 128 | kfree(ns->ids[IPC_MSG_IDS]); |
| 128 | ns->ids[IPC_MSG_IDS] = NULL; | 129 | ns->ids[IPC_MSG_IDS] = NULL; |
| 129 | } | 130 | } |
| @@ -161,6 +161,7 @@ void sem_exit_ns(struct ipc_namespace *ns) | |||
| 161 | } | 161 | } |
| 162 | mutex_unlock(&sem_ids(ns).mutex); | 162 | mutex_unlock(&sem_ids(ns).mutex); |
| 163 | 163 | ||
| 164 | ipc_fini_ids(ns->ids[IPC_SEM_IDS]); | ||
| 164 | kfree(ns->ids[IPC_SEM_IDS]); | 165 | kfree(ns->ids[IPC_SEM_IDS]); |
| 165 | ns->ids[IPC_SEM_IDS] = NULL; | 166 | ns->ids[IPC_SEM_IDS] = NULL; |
| 166 | } | 167 | } |
| @@ -116,6 +116,7 @@ void shm_exit_ns(struct ipc_namespace *ns) | |||
| 116 | } | 116 | } |
| 117 | mutex_unlock(&shm_ids(ns).mutex); | 117 | mutex_unlock(&shm_ids(ns).mutex); |
| 118 | 118 | ||
| 119 | ipc_fini_ids(ns->ids[IPC_SHM_IDS]); | ||
| 119 | kfree(ns->ids[IPC_SHM_IDS]); | 120 | kfree(ns->ids[IPC_SHM_IDS]); |
| 120 | ns->ids[IPC_SHM_IDS] = NULL; | 121 | ns->ids[IPC_SHM_IDS] = NULL; |
| 121 | } | 122 | } |
diff --git a/ipc/util.c b/ipc/util.c index 42479e4eec59..cd8bb14a431f 100644 --- a/ipc/util.c +++ b/ipc/util.c | |||
| @@ -301,7 +301,7 @@ static int grow_ary(struct ipc_ids* ids, int newsize) | |||
| 301 | */ | 301 | */ |
| 302 | rcu_assign_pointer(ids->entries, new); | 302 | rcu_assign_pointer(ids->entries, new); |
| 303 | 303 | ||
| 304 | ipc_rcu_putref(old); | 304 | __ipc_fini_ids(ids, old); |
| 305 | return newsize; | 305 | return newsize; |
| 306 | } | 306 | } |
| 307 | 307 | ||
diff --git a/ipc/util.h b/ipc/util.h index c8fd6b9d77b5..e3aa2c5c97dc 100644 --- a/ipc/util.h +++ b/ipc/util.h | |||
| @@ -83,6 +83,18 @@ void* ipc_rcu_alloc(int size); | |||
| 83 | void ipc_rcu_getref(void *ptr); | 83 | void ipc_rcu_getref(void *ptr); |
| 84 | void ipc_rcu_putref(void *ptr); | 84 | void ipc_rcu_putref(void *ptr); |
| 85 | 85 | ||
| 86 | static inline void __ipc_fini_ids(struct ipc_ids *ids, | ||
| 87 | struct ipc_id_ary *entries) | ||
| 88 | { | ||
| 89 | if (entries != &ids->nullentry) | ||
| 90 | ipc_rcu_putref(entries); | ||
| 91 | } | ||
| 92 | |||
| 93 | static inline void ipc_fini_ids(struct ipc_ids *ids) | ||
| 94 | { | ||
| 95 | __ipc_fini_ids(ids, ids->entries); | ||
| 96 | } | ||
| 97 | |||
| 86 | struct kern_ipc_perm* ipc_get(struct ipc_ids* ids, int id); | 98 | struct kern_ipc_perm* ipc_get(struct ipc_ids* ids, int id); |
| 87 | struct kern_ipc_perm* ipc_lock(struct ipc_ids* ids, int id); | 99 | struct kern_ipc_perm* ipc_lock(struct ipc_ids* ids, int id); |
| 88 | void ipc_lock_by_ptr(struct kern_ipc_perm *ipcp); | 100 | void ipc_lock_by_ptr(struct kern_ipc_perm *ipcp); |
