diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2016-09-02 00:42:02 +0300 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-09-27 18:47:38 -0400 |
commit | 771187d61bb3cbaf62c492ec3b8b789933f7691e (patch) | |
tree | fd7a5835ed056cdcee8994484abfdc58f1d35d44 /fs/proc/internal.h | |
parent | 9b80a184eaadc117f27faad522008f31d571621b (diff) | |
download | linux-771187d61bb3cbaf62c492ec3b8b789933f7691e.tar.bz2 |
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/internal.h')
-rw-r--r-- | fs/proc/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/internal.h b/fs/proc/internal.h index 7931c558c192..5378441ec1b7 100644 --- a/fs/proc/internal.h +++ b/fs/proc/internal.h @@ -60,7 +60,7 @@ union proc_op { struct proc_inode { struct pid *pid; - int fd; + unsigned int fd; union proc_op op; struct proc_dir_entry *pde; struct ctl_table_header *sysctl; |