diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-25 15:41:43 -0800 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-25 15:41:43 -0800 | 
| commit | 9043a2650cd21f96f831a97f516c2c302e21fb70 (patch) | |
| tree | 926720afb0acc7bad8cfcae537dc58de552f9249 /mm/memory.c | |
| parent | ab7826595e9ec51a51f622c5fc91e2f59440481a (diff) | |
| parent | d9d8d7ed498ec65bea72dd24be7b9cd35af0c200 (diff) | |
| download | olio-linux-3.10-9043a2650cd21f96f831a97f516c2c302e21fb70.tar.xz olio-linux-3.10-9043a2650cd21f96f831a97f516c2c302e21fb70.zip  | |
Merge tag 'modules-next-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux
Pull module update from Rusty Russell:
 "The sweeping change is to make add_taint() explicitly indicate whether
  to disable lockdep, but it's a mechanical change."
* tag 'modules-next-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rusty/linux:
  MODSIGN: Add option to not sign modules during modules_install
  MODSIGN: Add -s <signature> option to sign-file
  MODSIGN: Specify the hash algorithm on sign-file command line
  MODSIGN: Simplify Makefile with a Kconfig helper
  module: clean up load_module a little more.
  modpost: Ignore ARC specific non-alloc sections
  module: constify within_module_*
  taint: add explicit flag to show whether lock dep is still OK.
  module: printk message when module signature fail taints kernel.
Diffstat (limited to 'mm/memory.c')
| -rw-r--r-- | mm/memory.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/memory.c b/mm/memory.c index 705473afc1f..494526ae024 100644 --- a/mm/memory.c +++ b/mm/memory.c @@ -720,7 +720,7 @@ static void print_bad_pte(struct vm_area_struct *vma, unsigned long addr,  		print_symbol(KERN_ALERT "vma->vm_file->f_op->mmap: %s\n",  				(unsigned long)vma->vm_file->f_op->mmap);  	dump_stack(); -	add_taint(TAINT_BAD_PAGE); +	add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);  }  static inline bool is_cow_mapping(vm_flags_t flags)  |