diff options
author | Arnd Bergmann <arnd@arndb.de> | 2017-09-13 16:28:17 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-09-13 18:53:15 -0700 |
commit | 6dec0dd4a627d15510c9435c4dbf4b9f4ffeeeb7 (patch) | |
tree | 6e5dd297dd71a8536dd9742227ec9f4c28a96adc | |
parent | c848c49a62b37bfb426086e248810dbcb14b85ff (diff) | |
download | linux-6dec0dd4a627d15510c9435c4dbf4b9f4ffeeeb7.tar.gz linux-6dec0dd4a627d15510c9435c4dbf4b9f4ffeeeb7.tar.bz2 linux-6dec0dd4a627d15510c9435c4dbf4b9f4ffeeeb7.zip |
procfs: remove unused variable
In NOMMU configurations, we get a warning about a variable that has become
unused:
fs/proc/task_nommu.c: In function 'nommu_vma_show':
fs/proc/task_nommu.c:148:28: error: unused variable 'priv' [-Werror=unused-variable]
Link: http://lkml.kernel.org/r/20170911200231.3171415-1-arnd@arndb.de
Fixes: 1240ea0dc3bb ("fs, proc: remove priv argument from is_stack")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Michal Hocko <mhocko@suse.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | fs/proc/task_nommu.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/proc/task_nommu.c b/fs/proc/task_nommu.c index dea90b566a6e..b00b766098fa 100644 --- a/fs/proc/task_nommu.c +++ b/fs/proc/task_nommu.c @@ -145,7 +145,6 @@ static int nommu_vma_show(struct seq_file *m, struct vm_area_struct *vma, int is_pid) { struct mm_struct *mm = vma->vm_mm; - struct proc_maps_private *priv = m->private; unsigned long ino = 0; struct file *file; dev_t dev = 0; |