diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-10 13:04:49 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-10-10 13:04:49 -0700 | 
| commit | abb5a14fa20fdd400995926134b7be9eb8ce6048 (patch) | |
| tree | 085add41cae3193b8c8293d25b453fd1ecae0c19 /kernel | |
| parent | 911f9dab301e8583143c7e75b552eadd434ea0a8 (diff) | |
| parent | e55f1d1d13e7f1c364672d667d78fd1f640ab9f9 (diff) | |
| download | linux-abb5a14fa20fdd400995926134b7be9eb8ce6048.tar.bz2 | |
Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
Pull misc vfs updates from Al Viro:
 "Assorted misc bits and pieces.
  There are several single-topic branches left after this (rename2
  series from Miklos, current_time series from Deepa Dinamani, xattr
  series from Andreas, uaccess stuff from from me) and I'd prefer to
  send those separately"
* 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: (39 commits)
  proc: switch auxv to use of __mem_open()
  hpfs: support FIEMAP
  cifs: get rid of unused arguments of CIFSSMBWrite()
  posix_acl: uapi header split
  posix_acl: xattr representation cleanups
  fs/aio.c: eliminate redundant loads in put_aio_ring_file
  fs/internal.h: add const to ns_dentry_operations declaration
  compat: remove compat_printk()
  fs/buffer.c: make __getblk_slow() static
  proc: unsigned file descriptors
  fs/file: more unsigned file descriptors
  fs: compat: remove redundant check of nr_segs
  cachefiles: Fix attempt to read i_blocks after deleting file [ver #2]
  cifs: don't use memcpy() to copy struct iov_iter
  get rid of separate multipage fault-in primitives
  fs: Avoid premature clearing of capabilities
  fs: Give dentry to inode_change_ok() instead of inode
  fuse: Propagate dentry down to inode_change_ok()
  ceph: Propagate dentry down to inode_change_ok()
  xfs: Propagate dentry down to inode_change_ok()
  ...
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/sysctl.c | 14 | 
1 files changed, 2 insertions, 12 deletions
| diff --git a/kernel/sysctl.c b/kernel/sysctl.c index a43775c6646c..706309f9ed84 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c @@ -107,9 +107,8 @@ extern unsigned int core_pipe_limit;  extern int pid_max;  extern int pid_max_min, pid_max_max;  extern int percpu_pagelist_fraction; -extern int compat_log;  extern int latencytop_enabled; -extern int sysctl_nr_open_min, sysctl_nr_open_max; +extern unsigned int sysctl_nr_open_min, sysctl_nr_open_max;  #ifndef CONFIG_MMU  extern int sysctl_nr_trim_pages;  #endif @@ -1085,15 +1084,6 @@ static struct ctl_table kern_table[] = {  		.extra1		= &neg_one,  	},  #endif -#ifdef CONFIG_COMPAT -	{ -		.procname	= "compat-log", -		.data		= &compat_log, -		.maxlen		= sizeof (int), -	 	.mode		= 0644, -		.proc_handler	= proc_dointvec, -	}, -#endif  #ifdef CONFIG_RT_MUTEXES  	{  		.procname	= "max_lock_depth", @@ -1693,7 +1683,7 @@ static struct ctl_table fs_table[] = {  	{  		.procname	= "nr_open",  		.data		= &sysctl_nr_open, -		.maxlen		= sizeof(int), +		.maxlen		= sizeof(unsigned int),  		.mode		= 0644,  		.proc_handler	= proc_dointvec_minmax,  		.extra1		= &sysctl_nr_open_min, |