diff options
author | Jan Kara <jack@suse.cz> | 2016-03-17 14:19:55 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-03-17 15:09:34 -0700 |
commit | 0e8fb9312fbaf1a687dd731b04d8ab3121c4ff5a (patch) | |
tree | 02225140098a0824f2c340268a117c73a2003b4b /arch/unicore32/mm | |
parent | 870d4b12ad15d21c5db67b373bdc2f62cfe2ec64 (diff) | |
download | linux-stable-0e8fb9312fbaf1a687dd731b04d8ab3121c4ff5a.tar.gz linux-stable-0e8fb9312fbaf1a687dd731b04d8ab3121c4ff5a.tar.bz2 linux-stable-0e8fb9312fbaf1a687dd731b04d8ab3121c4ff5a.zip |
mm: remove VM_FAULT_MINOR
The define has a comment from Nick Piggin from 2007:
/* For backwards compat. Remove me quickly. */
I guess 9 years should not be too hurried sense of 'quickly' even for
kernel measures.
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/unicore32/mm')
-rw-r--r-- | arch/unicore32/mm/fault.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/unicore32/mm/fault.c b/arch/unicore32/mm/fault.c index afccef5529cc..2ec3d3adcefc 100644 --- a/arch/unicore32/mm/fault.c +++ b/arch/unicore32/mm/fault.c @@ -276,7 +276,7 @@ retry: up_read(&mm->mmap_sem); /* - * Handle the "normal" case first - VM_FAULT_MAJOR / VM_FAULT_MINOR + * Handle the "normal" case first - VM_FAULT_MAJOR */ if (likely(!(fault & (VM_FAULT_ERROR | VM_FAULT_BADMAP | VM_FAULT_BADACCESS)))) |