Skip to content

Commit

Permalink
namespace: ensure clone_flags are always stored in an unsigned long
Browse files Browse the repository at this point in the history
While working on unshare support for the network namespace I noticed we
were putting clone flags in an int.  Which is weird because the syscall
uses unsigned long and we at least need an unsigned to properly hold all of
the unshare flags.

So to make the code consistent, this patch updates the code to use
unsigned long instead of int for the clone flags in those places
where we get it wrong today.

Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Acked-by: Cedric Le Goater <clg@fr.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Eric W. Biederman authored and Linus Torvalds committed Jul 16, 2007
1 parent e3a68e3 commit 213dd26
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion fs/namespace.c
Original file line number Diff line number Diff line change
Expand Up @@ -1509,7 +1509,7 @@ static struct mnt_namespace *dup_mnt_ns(struct mnt_namespace *mnt_ns,
return new_ns;
}

struct mnt_namespace *copy_mnt_ns(int flags, struct mnt_namespace *ns,
struct mnt_namespace *copy_mnt_ns(unsigned long flags, struct mnt_namespace *ns,
struct fs_struct *new_fs)
{
struct mnt_namespace *new_ns;
Expand Down
2 changes: 1 addition & 1 deletion include/linux/mnt_namespace.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ struct mnt_namespace {
int event;
};

extern struct mnt_namespace *copy_mnt_ns(int, struct mnt_namespace *,
extern struct mnt_namespace *copy_mnt_ns(unsigned long, struct mnt_namespace *,
struct fs_struct *);
extern void __put_mnt_ns(struct mnt_namespace *ns);

Expand Down
2 changes: 1 addition & 1 deletion include/linux/nsproxy.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ struct nsproxy {
};
extern struct nsproxy init_nsproxy;

int copy_namespaces(int flags, struct task_struct *tsk);
int copy_namespaces(unsigned long flags, struct task_struct *tsk);
void get_task_namespaces(struct task_struct *tsk);
void free_nsproxy(struct nsproxy *ns);
int unshare_nsproxy_namespaces(unsigned long, struct nsproxy **,
Expand Down
2 changes: 1 addition & 1 deletion include/linux/pid_namespace.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ static inline void get_pid_ns(struct pid_namespace *ns)
kref_get(&ns->kref);
}

extern struct pid_namespace *copy_pid_ns(int flags, struct pid_namespace *ns);
extern struct pid_namespace *copy_pid_ns(unsigned long flags, struct pid_namespace *ns);
extern void free_pid_ns(struct kref *kref);

static inline void put_pid_ns(struct pid_namespace *ns)
Expand Down
3 changes: 2 additions & 1 deletion include/linux/utsname.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ static inline void get_uts_ns(struct uts_namespace *ns)
kref_get(&ns->kref);
}

extern struct uts_namespace *copy_utsname(int flags, struct uts_namespace *ns);
extern struct uts_namespace *copy_utsname(unsigned long flags,
struct uts_namespace *ns);
extern void free_uts_ns(struct kref *kref);

static inline void put_uts_ns(struct uts_namespace *ns)
Expand Down
6 changes: 3 additions & 3 deletions kernel/nsproxy.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ static inline struct nsproxy *clone_nsproxy(struct nsproxy *orig)
* Return the newly created nsproxy. Do not attach this to the task,
* leave it to the caller to do proper locking and attach it to task.
*/
static struct nsproxy *create_new_namespaces(int flags, struct task_struct *tsk,
struct fs_struct *new_fs)
static struct nsproxy *create_new_namespaces(unsigned long flags,
struct task_struct *tsk, struct fs_struct *new_fs)
{
struct nsproxy *new_nsp;
int err;
Expand Down Expand Up @@ -121,7 +121,7 @@ static struct nsproxy *create_new_namespaces(int flags, struct task_struct *tsk,
* called from clone. This now handles copy for nsproxy and all
* namespaces therein.
*/
int copy_namespaces(int flags, struct task_struct *tsk)
int copy_namespaces(unsigned long flags, struct task_struct *tsk)
{
struct nsproxy *old_ns = tsk->nsproxy;
struct nsproxy *new_ns;
Expand Down
2 changes: 1 addition & 1 deletion kernel/pid.c
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ struct pid *find_ge_pid(int nr)
}
EXPORT_SYMBOL_GPL(find_get_pid);

struct pid_namespace *copy_pid_ns(int flags, struct pid_namespace *old_ns)
struct pid_namespace *copy_pid_ns(unsigned long flags, struct pid_namespace *old_ns)
{
BUG_ON(!old_ns);
get_pid_ns(old_ns);
Expand Down
2 changes: 1 addition & 1 deletion kernel/utsname.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static struct uts_namespace *clone_uts_ns(struct uts_namespace *old_ns)
* utsname of this process won't be seen by parent, and vice
* versa.
*/
struct uts_namespace *copy_utsname(int flags, struct uts_namespace *old_ns)
struct uts_namespace *copy_utsname(unsigned long flags, struct uts_namespace *old_ns)
{
struct uts_namespace *new_ns;

Expand Down

0 comments on commit 213dd26

Please sign in to comment.