x86/platform/uv: Remove spaces from OEM IDs
[linux-2.6-microblaze.git] / kernel / exit.c
index 1f51c27..87a2d51 100644 (file)
@@ -1474,25 +1474,6 @@ end:
        return retval;
 }
 
-static struct pid *pidfd_get_pid(unsigned int fd, unsigned int *flags)
-{
-       struct fd f;
-       struct pid *pid;
-
-       f = fdget(fd);
-       if (!f.file)
-               return ERR_PTR(-EBADF);
-
-       pid = pidfd_pid(f.file);
-       if (!IS_ERR(pid)) {
-               get_pid(pid);
-               *flags = f.file->f_flags;
-       }
-
-       fdput(f);
-       return pid;
-}
-
 static long kernel_waitid(int which, pid_t upid, struct waitid_info *infop,
                          int options, struct rusage *ru)
 {