diff options
| author | Yuanhan Liu <yuanhan.liu@linux.intel.com> | 2013-02-27 17:05:30 -0800 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-27 19:10:22 -0800 | 
| commit | bf5315366b1b708a0dd322bb389e970598f18891 (patch) | |
| tree | a1de63f36604df97e7861ef82c33170190f4db7d | |
| parent | 398eb08555b24049e0362fee92920982b283fd96 (diff) | |
| download | olio-linux-3.10-bf5315366b1b708a0dd322bb389e970598f18891.tar.xz olio-linux-3.10-bf5315366b1b708a0dd322bb389e970598f18891.zip | |
kernel/utsname.c: fix wrong comment about clone_uts_ns()
Fix the wrong comment about the return value of clone_uts_ns()
Signed-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>
Acked-by: Serge Hallyn <serge.hallyn@canonical.com>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | kernel/utsname.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/kernel/utsname.c b/kernel/utsname.c index 08b197e8c48..a47fc5de311 100644 --- a/kernel/utsname.c +++ b/kernel/utsname.c @@ -30,7 +30,7 @@ static struct uts_namespace *create_uts_ns(void)  /*   * Clone a new ns copying an original utsname, setting refcount to 1   * @old_ns: namespace to clone - * Return NULL on error (failure to kmalloc), new ns otherwise + * Return ERR_PTR(-ENOMEM) on error (failure to kmalloc), new ns otherwise   */  static struct uts_namespace *clone_uts_ns(struct user_namespace *user_ns,  					  struct uts_namespace *old_ns) |