summaryrefslogtreecommitdiffstats
path: root/fs/proc/fd.h
diff options
context:
space:
mode:
authorAlexey Dobriyan2016-09-01 23:42:02 +0200
committerAl Viro2016-09-28 00:47:38 +0200
commit771187d61bb3cbaf62c492ec3b8b789933f7691e (patch)
treefd7a5835ed056cdcee8994484abfdc58f1d35d44 /fs/proc/fd.h
parentfs/file: more unsigned file descriptors (diff)
downloadkernel-qcow2-linux-771187d61bb3cbaf62c492ec3b8b789933f7691e.tar.gz
kernel-qcow2-linux-771187d61bb3cbaf62c492ec3b8b789933f7691e.tar.xz
kernel-qcow2-linux-771187d61bb3cbaf62c492ec3b8b789933f7691e.zip
proc: unsigned file descriptors
Make struct proc_inode::fd unsigned. This allows better code generation on x86_64 (less sign extensions). Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/proc/fd.h')
-rw-r--r--fs/proc/fd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/fd.h b/fs/proc/fd.h
index 7c047f256ae2..46dafadd0083 100644
--- a/fs/proc/fd.h
+++ b/fs/proc/fd.h
@@ -11,7 +11,7 @@ extern const struct inode_operations proc_fdinfo_inode_operations;
extern int proc_fd_permission(struct inode *inode, int mask);
-static inline int proc_fd(struct inode *inode)
+static inline unsigned int proc_fd(struct inode *inode)
{
return PROC_I(inode)->fd;
}