public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/hardened-patchset:master commit in: 3.2.19/, 2.6.32/, 3.3.8/, 3.4.1/
@ 2012-06-10 12:49 Anthony G. Basile
  0 siblings, 0 replies; only message in thread
From: Anthony G. Basile @ 2012-06-10 12:49 UTC (permalink / raw
  To: gentoo-commits

commit:     03d55ff9c83181e048755c418f30b021a5c1d613
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 10 12:49:28 2012 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Jun 10 12:49:28 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/hardened-patchset.git;a=commit;h=03d55ff9

Grsec/PaX: 2.9-{2.6.32.59,3.2.19,3.4.1}-201206091540

---
 2.6.32/0000_README                                 |    2 +-
 ..._grsecurity-2.9.1-2.6.32.59-201206091539.patch} |   56 +-
 3.2.19/0000_README                                 |    2 +-
 ...420_grsecurity-2.9.1-3.2.19-201206091539.patch} |   60 +-
 {3.3.8 => 3.4.1}/0000_README                       |    2 +-
 .../4420_grsecurity-2.9.1-3.4.1-201206091540.patch |10858 ++++++++------------
 .../4430_grsec-remove-localversion-grsec.patch     |    0
 {3.3.8 => 3.4.1}/4435_grsec-mute-warnings.patch    |    0
 .../4440_grsec-remove-protected-paths.patch        |    0
 .../4445_grsec-pax-without-grsec.patch             |    0
 .../4450_grsec-kconfig-default-gids.patch          |    0
 {3.3.8 => 3.4.1}/4455_grsec-kconfig-gentoo.patch   |    0
 .../4460-grsec-kconfig-proc-user.patch             |    0
 .../4465_selinux-avc_audit-log-curr_ip.patch       |    0
 {3.3.8 => 3.4.1}/4470_disable-compat_vdso.patch    |    0
 15 files changed, 4590 insertions(+), 6390 deletions(-)

diff --git a/2.6.32/0000_README b/2.6.32/0000_README
index 1e75c22..29be958 100644
--- a/2.6.32/0000_README
+++ b/2.6.32/0000_README
@@ -30,7 +30,7 @@ Patch:	1058_linux-2.6.32.59.patch
 From:	http://www.kernel.org
 Desc:	Linux 2.6.32.59
 
-Patch:	4420_grsecurity-2.9-2.6.32.59-201206042134.patch
+Patch:	4420_grsecurity-2.9.1-2.6.32.59-201206091539.patch
 From:	http://www.grsecurity.net
 Desc:	hardened-sources base patch from upstream grsecurity
 

diff --git a/2.6.32/4420_grsecurity-2.9-2.6.32.59-201206042134.patch b/2.6.32/4420_grsecurity-2.9.1-2.6.32.59-201206091539.patch
similarity index 99%
rename from 2.6.32/4420_grsecurity-2.9-2.6.32.59-201206042134.patch
rename to 2.6.32/4420_grsecurity-2.9.1-2.6.32.59-201206091539.patch
index 9d85b0d..9707bca 100644
--- a/2.6.32/4420_grsecurity-2.9-2.6.32.59-201206042134.patch
+++ b/2.6.32/4420_grsecurity-2.9.1-2.6.32.59-201206091539.patch
@@ -73120,10 +73120,10 @@ index b080b79..d957e63 100644
  }
  
 diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
-index 3b7b82a..4b420b0 100644
+index 3b7b82a..0655a0f 100644
 --- a/fs/proc/task_mmu.c
 +++ b/fs/proc/task_mmu.c
-@@ -8,6 +8,7 @@
+@@ -8,12 +8,19 @@
  #include <linux/mempolicy.h>
  #include <linux/swap.h>
  #include <linux/swapops.h>
@@ -73131,7 +73131,19 @@ index 3b7b82a..4b420b0 100644
  
  #include <asm/elf.h>
  #include <asm/uaccess.h>
-@@ -46,15 +47,26 @@ void task_mem(struct seq_file *m, struct mm_struct *mm)
+ #include <asm/tlbflush.h>
+ #include "internal.h"
+ 
++#ifdef CONFIG_GRKERNSEC_PROC_MEMMAP
++#define PAX_RAND_FLAGS(_mm) (_mm != NULL && _mm != current->mm && \
++			     (_mm->pax_flags & MF_PAX_RANDMMAP || \
++			      _mm->pax_flags & MF_PAX_SEGMEXEC))
++#endif
++
+ void task_mem(struct seq_file *m, struct mm_struct *mm)
+ {
+ 	unsigned long data, text, lib;
+@@ -46,15 +53,27 @@ void task_mem(struct seq_file *m, struct mm_struct *mm)
  		"VmStk:\t%8lu kB\n"
  		"VmExe:\t%8lu kB\n"
  		"VmLib:\t%8lu kB\n"
@@ -73154,14 +73166,15 @@ index 3b7b82a..4b420b0 100644
 +		(PTRS_PER_PTE*sizeof(pte_t)*mm->nr_ptes) >> 10
 +
 +#ifdef CONFIG_ARCH_TRACK_EXEC_LIMIT
-+		, mm->context.user_cs_base, mm->context.user_cs_limit
++		, PAX_RAND_FLAGS(mm) ? 0 : mm->context.user_cs_base
++		, PAX_RAND_FLAGS(mm) ? 0 : mm->context.user_cs_limit
 +#endif
 +
 +	);
  }
  
  unsigned long task_vsize(struct mm_struct *mm)
-@@ -175,7 +187,8 @@ static void m_stop(struct seq_file *m, void *v)
+@@ -175,7 +194,8 @@ static void m_stop(struct seq_file *m, void *v)
  	struct proc_maps_private *priv = m->private;
  	struct vm_area_struct *vma = v;
  
@@ -73171,20 +73184,7 @@ index 3b7b82a..4b420b0 100644
  	if (priv->task)
  		put_task_struct(priv->task);
  }
-@@ -199,6 +212,12 @@ static int do_maps_open(struct inode *inode, struct file *file,
- 	return ret;
- }
- 
-+#ifdef CONFIG_GRKERNSEC_PROC_MEMMAP
-+#define PAX_RAND_FLAGS(_mm) (_mm != NULL && _mm != current->mm && \
-+			     (_mm->pax_flags & MF_PAX_RANDMMAP || \
-+			      _mm->pax_flags & MF_PAX_SEGMEXEC))
-+#endif
-+
- static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
- {
- 	struct mm_struct *mm = vma->vm_mm;
-@@ -206,7 +225,6 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
+@@ -206,7 +226,6 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
  	int flags = vma->vm_flags;
  	unsigned long ino = 0;
  	unsigned long long pgoff = 0;
@@ -73192,7 +73192,7 @@ index 3b7b82a..4b420b0 100644
  	dev_t dev = 0;
  	int len;
  
-@@ -217,20 +235,23 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
+@@ -217,20 +236,23 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
  		pgoff = ((loff_t)vma->vm_pgoff) << PAGE_SHIFT;
  	}
  
@@ -73223,7 +73223,7 @@ index 3b7b82a..4b420b0 100644
  			MAJOR(dev), MINOR(dev), ino, &len);
  
  	/*
-@@ -239,7 +260,7 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
+@@ -239,7 +261,7 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
  	 */
  	if (file) {
  		pad_len_spaces(m, len);
@@ -73232,7 +73232,7 @@ index 3b7b82a..4b420b0 100644
  	} else {
  		const char *name = arch_vma_name(vma);
  		if (!name) {
-@@ -247,8 +268,9 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
+@@ -247,8 +269,9 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
  				if (vma->vm_start <= mm->brk &&
  						vma->vm_end >= mm->start_brk) {
  					name = "[heap]";
@@ -73244,7 +73244,7 @@ index 3b7b82a..4b420b0 100644
  					name = "[stack]";
  				}
  			} else {
-@@ -269,6 +291,13 @@ static int show_map(struct seq_file *m, void *v)
+@@ -269,6 +292,13 @@ static int show_map(struct seq_file *m, void *v)
  	struct proc_maps_private *priv = m->private;
  	struct task_struct *task = priv->task;
  
@@ -73258,7 +73258,7 @@ index 3b7b82a..4b420b0 100644
  	show_map_vma(m, vma);
  
  	if (m->count < m->size)  /* vma is copied successfully */
-@@ -390,10 +419,23 @@ static int show_smap(struct seq_file *m, void *v)
+@@ -390,10 +420,23 @@ static int show_smap(struct seq_file *m, void *v)
  		.private = &mss,
  	};
  
@@ -73285,7 +73285,7 @@ index 3b7b82a..4b420b0 100644
  
  	show_map_vma(m, vma);
  
-@@ -409,7 +451,11 @@ static int show_smap(struct seq_file *m, void *v)
+@@ -409,7 +452,11 @@ static int show_smap(struct seq_file *m, void *v)
  		   "Swap:           %8lu kB\n"
  		   "KernelPageSize: %8lu kB\n"
  		   "MMUPageSize:    %8lu kB\n",
@@ -86031,7 +86031,7 @@ index 297df45..b6a74ff 100644
  	struct blk_integrity *integrity;
 diff --git a/include/linux/gracl.h b/include/linux/gracl.h
 new file mode 100644
-index 0000000..6c51079
+index 0000000..fc80ba3
 --- /dev/null
 +++ b/include/linux/gracl.h
 @@ -0,0 +1,320 @@
@@ -86046,8 +86046,8 @@ index 0000000..6c51079
 +
 +/* Major status information */
 +
-+#define GR_VERSION  "grsecurity 2.9"
-+#define GRSECURITY_VERSION 0x2900
++#define GR_VERSION  "grsecurity 2.9.1"
++#define GRSECURITY_VERSION 0x2901
 +
 +enum {
 +	GR_SHUTDOWN = 0,

diff --git a/3.2.19/0000_README b/3.2.19/0000_README
index d244990..249fc70 100644
--- a/3.2.19/0000_README
+++ b/3.2.19/0000_README
@@ -10,7 +10,7 @@ Patch:	1017_linux-3.2.18.patch
 From:	http://www.kernel.org
 Desc:	Linux 3.2.18
 
-Patch:	4420_grsecurity-2.9-3.2.19-201206042135.patch
+Patch:	4420_grsecurity-2.9.1-3.2.19-201206091539.patch
 From:	http://www.grsecurity.net
 Desc:	hardened-sources base patch from upstream grsecurity
 

diff --git a/3.2.19/4420_grsecurity-2.9-3.2.19-201206042135.patch b/3.2.19/4420_grsecurity-2.9.1-3.2.19-201206091539.patch
similarity index 99%
rename from 3.2.19/4420_grsecurity-2.9-3.2.19-201206042135.patch
rename to 3.2.19/4420_grsecurity-2.9.1-3.2.19-201206091539.patch
index b4e3cb9..4b5f163 100644
--- a/3.2.19/4420_grsecurity-2.9-3.2.19-201206042135.patch
+++ b/3.2.19/4420_grsecurity-2.9.1-3.2.19-201206091539.patch
@@ -49184,10 +49184,10 @@ index 03102d9..4ae347e 100644
  }
  
 diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
-index 3efa725..23c925b 100644
+index 3efa725..59f199d 100644
 --- a/fs/proc/task_mmu.c
 +++ b/fs/proc/task_mmu.c
-@@ -11,6 +11,7 @@
+@@ -11,12 +11,19 @@
  #include <linux/rmap.h>
  #include <linux/swap.h>
  #include <linux/swapops.h>
@@ -49195,7 +49195,19 @@ index 3efa725..23c925b 100644
  
  #include <asm/elf.h>
  #include <asm/uaccess.h>
-@@ -52,8 +53,13 @@ void task_mem(struct seq_file *m, struct mm_struct *mm)
+ #include <asm/tlbflush.h>
+ #include "internal.h"
+ 
++#ifdef CONFIG_GRKERNSEC_PROC_MEMMAP
++#define PAX_RAND_FLAGS(_mm) (_mm != NULL && _mm != current->mm && \
++			     (_mm->pax_flags & MF_PAX_RANDMMAP || \
++			      _mm->pax_flags & MF_PAX_SEGMEXEC))
++#endif
++
+ void task_mem(struct seq_file *m, struct mm_struct *mm)
+ {
+ 	unsigned long data, text, lib, swap;
+@@ -52,8 +59,13 @@ void task_mem(struct seq_file *m, struct mm_struct *mm)
  		"VmExe:\t%8lu kB\n"
  		"VmLib:\t%8lu kB\n"
  		"VmPTE:\t%8lu kB\n"
@@ -49211,7 +49223,7 @@ index 3efa725..23c925b 100644
  		(total_vm - mm->reserved_vm) << (PAGE_SHIFT-10),
  		mm->locked_vm << (PAGE_SHIFT-10),
  		mm->pinned_vm << (PAGE_SHIFT-10),
-@@ -62,7 +68,13 @@ void task_mem(struct seq_file *m, struct mm_struct *mm)
+@@ -62,7 +74,14 @@ void task_mem(struct seq_file *m, struct mm_struct *mm)
  		data << (PAGE_SHIFT-10),
  		mm->stack_vm << (PAGE_SHIFT-10), text, lib,
  		(PTRS_PER_PTE*sizeof(pte_t)*mm->nr_ptes) >> 10,
@@ -49219,27 +49231,15 @@ index 3efa725..23c925b 100644
 +		swap << (PAGE_SHIFT-10)
 +
 +#ifdef CONFIG_ARCH_TRACK_EXEC_LIMIT
-+		, mm->context.user_cs_base, mm->context.user_cs_limit
++		, PAX_RAND_FLAGS(mm) ? 0 : mm->context.user_cs_base
++		, PAX_RAND_FLAGS(mm) ? 0 : mm->context.user_cs_limit
 +#endif
 +
 +	);
  }
  
  unsigned long task_vsize(struct mm_struct *mm)
-@@ -209,6 +221,12 @@ static int do_maps_open(struct inode *inode, struct file *file,
- 	return ret;
- }
- 
-+#ifdef CONFIG_GRKERNSEC_PROC_MEMMAP
-+#define PAX_RAND_FLAGS(_mm) (_mm != NULL && _mm != current->mm && \
-+			     (_mm->pax_flags & MF_PAX_RANDMMAP || \
-+			      _mm->pax_flags & MF_PAX_SEGMEXEC))
-+#endif
-+
- static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
- {
- 	struct mm_struct *mm = vma->vm_mm;
-@@ -227,13 +245,13 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
+@@ -227,13 +246,13 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
  		pgoff = ((loff_t)vma->vm_pgoff) << PAGE_SHIFT;
  	}
  
@@ -49258,7 +49258,7 @@ index 3efa725..23c925b 100644
  
  	seq_printf(m, "%08lx-%08lx %c%c%c%c %08llx %02x:%02x %lu %n",
  			start,
-@@ -242,7 +260,11 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
+@@ -242,7 +261,11 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
  			flags & VM_WRITE ? 'w' : '-',
  			flags & VM_EXEC ? 'x' : '-',
  			flags & VM_MAYSHARE ? 's' : 'p',
@@ -49270,7 +49270,7 @@ index 3efa725..23c925b 100644
  			MAJOR(dev), MINOR(dev), ino, &len);
  
  	/*
-@@ -251,7 +273,7 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
+@@ -251,7 +274,7 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
  	 */
  	if (file) {
  		pad_len_spaces(m, len);
@@ -49279,7 +49279,7 @@ index 3efa725..23c925b 100644
  	} else {
  		const char *name = arch_vma_name(vma);
  		if (!name) {
-@@ -259,8 +281,9 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
+@@ -259,8 +282,9 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
  				if (vma->vm_start <= mm->brk &&
  						vma->vm_end >= mm->start_brk) {
  					name = "[heap]";
@@ -49291,7 +49291,7 @@ index 3efa725..23c925b 100644
  					name = "[stack]";
  				}
  			} else {
-@@ -281,6 +304,13 @@ static int show_map(struct seq_file *m, void *v)
+@@ -281,6 +305,13 @@ static int show_map(struct seq_file *m, void *v)
  	struct proc_maps_private *priv = m->private;
  	struct task_struct *task = priv->task;
  
@@ -49305,7 +49305,7 @@ index 3efa725..23c925b 100644
  	show_map_vma(m, vma);
  
  	if (m->count < m->size)  /* vma is copied successfully */
-@@ -437,12 +467,23 @@ static int show_smap(struct seq_file *m, void *v)
+@@ -437,12 +468,23 @@ static int show_smap(struct seq_file *m, void *v)
  		.private = &mss,
  	};
  
@@ -49334,7 +49334,7 @@ index 3efa725..23c925b 100644
  	show_map_vma(m, vma);
  
  	seq_printf(m,
-@@ -460,7 +501,11 @@ static int show_smap(struct seq_file *m, void *v)
+@@ -460,7 +502,11 @@ static int show_smap(struct seq_file *m, void *v)
  		   "KernelPageSize: %8lu kB\n"
  		   "MMUPageSize:    %8lu kB\n"
  		   "Locked:         %8lu kB\n",
@@ -49346,7 +49346,7 @@ index 3efa725..23c925b 100644
  		   mss.resident >> 10,
  		   (unsigned long)(mss.pss >> (10 + PSS_SHIFT)),
  		   mss.shared_clean  >> 10,
-@@ -1024,6 +1069,13 @@ static int show_numa_map(struct seq_file *m, void *v)
+@@ -1024,6 +1070,13 @@ static int show_numa_map(struct seq_file *m, void *v)
  	int n;
  	char buffer[50];
  
@@ -49360,7 +49360,7 @@ index 3efa725..23c925b 100644
  	if (!mm)
  		return 0;
  
-@@ -1041,11 +1093,15 @@ static int show_numa_map(struct seq_file *m, void *v)
+@@ -1041,11 +1094,15 @@ static int show_numa_map(struct seq_file *m, void *v)
  	mpol_to_str(buffer, sizeof(buffer), pol, 0);
  	mpol_cond_put(pol);
  
@@ -61317,7 +61317,7 @@ index 4eec461..84c73cf 100644
  	struct blk_integrity *integrity;
 diff --git a/include/linux/gracl.h b/include/linux/gracl.h
 new file mode 100644
-index 0000000..8a130b6
+index 0000000..c938b1f
 --- /dev/null
 +++ b/include/linux/gracl.h
 @@ -0,0 +1,319 @@
@@ -61332,8 +61332,8 @@ index 0000000..8a130b6
 +
 +/* Major status information */
 +
-+#define GR_VERSION  "grsecurity 2.9"
-+#define GRSECURITY_VERSION 0x2900
++#define GR_VERSION  "grsecurity 2.9.1"
++#define GRSECURITY_VERSION 0x2901
 +
 +enum {
 +	GR_SHUTDOWN = 0,

diff --git a/3.3.8/0000_README b/3.4.1/0000_README
similarity index 97%
rename from 3.3.8/0000_README
rename to 3.4.1/0000_README
index c4356e4..77e912a 100644
--- a/3.3.8/0000_README
+++ b/3.4.1/0000_README
@@ -2,7 +2,7 @@ README
 -----------------------------------------------------------------------------
 Individual Patch Descriptions:
 -----------------------------------------------------------------------------
-Patch:	4420_grsecurity-2.9-3.3.8-201206042136.patch
+Patch:	4420_grsecurity-2.9.1-3.4.1-201206091540.patch
 From:	http://www.grsecurity.net
 Desc:	hardened-sources base patch from upstream grsecurity
 

diff --git a/3.3.8/4420_grsecurity-2.9-3.3.8-201206042136.patch b/3.4.1/4420_grsecurity-2.9.1-3.4.1-201206091540.patch
similarity index 93%
rename from 3.3.8/4420_grsecurity-2.9-3.3.8-201206042136.patch
rename to 3.4.1/4420_grsecurity-2.9.1-3.4.1-201206091540.patch
index e7f177d..4332d0b 100644
--- a/3.3.8/4420_grsecurity-2.9-3.3.8-201206042136.patch
+++ b/3.4.1/4420_grsecurity-2.9.1-3.4.1-201206091540.patch
@@ -1,5 +1,5 @@
 diff --git a/Documentation/dontdiff b/Documentation/dontdiff
-index 0c083c5..bf13011 100644
+index b4a898f..6c0106a 100644
 --- a/Documentation/dontdiff
 +++ b/Documentation/dontdiff
 @@ -2,9 +2,11 @@
@@ -113,7 +113,7 @@ index 0c083c5..bf13011 100644
  logo_*.c
  logo_*_clut224.c
  logo_*_mono.c
-@@ -165,14 +181,15 @@ machtypes.h
+@@ -164,14 +180,15 @@ machtypes.h
  map
  map_hugetlb
  maui_boot.h
@@ -130,7 +130,23 @@ index 0c083c5..bf13011 100644
  mkprep
  mkregtable
  mktables
-@@ -208,6 +225,7 @@ r300_reg_safe.h
+@@ -188,6 +205,7 @@ oui.c*
+ page-types
+ parse.c
+ parse.h
++parse-events*
+ patches*
+ pca200e.bin
+ pca200e_ecd.bin2
+@@ -197,6 +215,7 @@ perf-archive
+ piggyback
+ piggy.gzip
+ piggy.S
++pmu-*
+ pnmtologo
+ ppc_defs.h*
+ pss_boot.h
+@@ -207,6 +226,7 @@ r300_reg_safe.h
  r420_reg_safe.h
  r600_reg_safe.h
  recordmcount
@@ -138,7 +154,7 @@ index 0c083c5..bf13011 100644
  relocs
  rlim_names.h
  rn50_reg_safe.h
-@@ -218,6 +236,7 @@ setup
+@@ -217,6 +237,7 @@ setup
  setup.bin
  setup.elf
  sImage
@@ -146,7 +162,7 @@ index 0c083c5..bf13011 100644
  sm_tbl*
  split-include
  syscalltab.h
-@@ -228,6 +247,7 @@ tftpboot.img
+@@ -227,6 +248,7 @@ tftpboot.img
  timeconst.h
  times.h*
  trix_boot.h
@@ -154,7 +170,15 @@ index 0c083c5..bf13011 100644
  utsrelease.h*
  vdso-syms.lds
  vdso.lds
-@@ -245,7 +265,9 @@ vmlinux
+@@ -238,13 +260,17 @@ vdso32.lds
+ vdso32.so.dbg
+ vdso64.lds
+ vdso64.so.dbg
++vdsox32.lds
++vdsox32-syms.lds
+ version.h*
+ vmImage
+ vmlinux
  vmlinux-*
  vmlinux.aout
  vmlinux.bin.all
@@ -164,7 +188,7 @@ index 0c083c5..bf13011 100644
  vmlinuz
  voffset.h
  vsyscall.lds
-@@ -253,9 +275,11 @@ vsyscall_32.lds
+@@ -252,9 +278,11 @@ vsyscall_32.lds
  wanxlfw.inc
  uImage
  unifdef
@@ -177,10 +201,10 @@ index 0c083c5..bf13011 100644
 +zconf.lex.c
  zoffset.h
 diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
-index d99fd9c..8689fef 100644
+index c1601e5..08557ce 100644
 --- a/Documentation/kernel-parameters.txt
 +++ b/Documentation/kernel-parameters.txt
-@@ -1977,6 +1977,13 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
+@@ -2021,6 +2021,13 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
  			the specified number of seconds.  This is to be used if
  			your oopses keep scrolling off the screen.
  
@@ -195,7 +219,7 @@ index d99fd9c..8689fef 100644
  
  	pcd.		[PARIDE]
 diff --git a/Makefile b/Makefile
-index db96149..f101728 100644
+index 0bd1554..808b0e5 100644
 --- a/Makefile
 +++ b/Makefile
 @@ -245,8 +245,9 @@ CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
@@ -392,7 +416,7 @@ index db96149..f101728 100644
  	$(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1)   \
  	$(build)=$(build-dir) $(@:.ko=.o)
 diff --git a/arch/alpha/include/asm/atomic.h b/arch/alpha/include/asm/atomic.h
-index 640f909..48b6597 100644
+index 3bb7ffe..347a54c 100644
 --- a/arch/alpha/include/asm/atomic.h
 +++ b/arch/alpha/include/asm/atomic.h
 @@ -250,6 +250,16 @@ static __inline__ int atomic64_add_unless(atomic64_t *v, long a, long u)
@@ -439,10 +463,10 @@ index ad368a9..fbe0f25 100644
  
  #endif
 diff --git a/arch/alpha/include/asm/elf.h b/arch/alpha/include/asm/elf.h
-index da5449e..7418343 100644
+index 968d999..d36b2df 100644
 --- a/arch/alpha/include/asm/elf.h
 +++ b/arch/alpha/include/asm/elf.h
-@@ -90,6 +90,13 @@ typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
+@@ -91,6 +91,13 @@ typedef elf_fpreg_t elf_fpregset_t[ELF_NFPREG];
  
  #define ELF_ET_DYN_BASE		(TASK_UNMAPPED_BASE + 0x1000000)
  
@@ -474,10 +498,10 @@ index bc2a0da..8ad11ee 100644
  
  static inline void
 diff --git a/arch/alpha/include/asm/pgtable.h b/arch/alpha/include/asm/pgtable.h
-index de98a73..bd4f1f8 100644
+index 81a4342..348b927 100644
 --- a/arch/alpha/include/asm/pgtable.h
 +++ b/arch/alpha/include/asm/pgtable.h
-@@ -101,6 +101,17 @@ struct vm_area_struct;
+@@ -102,6 +102,17 @@ struct vm_area_struct;
  #define PAGE_SHARED	__pgprot(_PAGE_VALID | __ACCESS_BITS)
  #define PAGE_COPY	__pgprot(_PAGE_VALID | __ACCESS_BITS | _PAGE_FOW)
  #define PAGE_READONLY	__pgprot(_PAGE_VALID | __ACCESS_BITS | _PAGE_FOW)
@@ -509,10 +533,10 @@ index 2fd00b7..cfd5069 100644
  
  	for (i = 0; i < n; i++) {
 diff --git a/arch/alpha/kernel/osf_sys.c b/arch/alpha/kernel/osf_sys.c
-index 01e8715..be0e80f 100644
+index 49ee319..9ee7d14 100644
 --- a/arch/alpha/kernel/osf_sys.c
 +++ b/arch/alpha/kernel/osf_sys.c
-@@ -1147,7 +1147,7 @@ arch_get_unmapped_area_1(unsigned long addr, unsigned long len,
+@@ -1146,7 +1146,7 @@ arch_get_unmapped_area_1(unsigned long addr, unsigned long len,
  		/* At this point:  (!vma || addr < vma->vm_end). */
  		if (limit - len < addr)
  			return -ENOMEM;
@@ -521,7 +545,7 @@ index 01e8715..be0e80f 100644
  			return addr;
  		addr = vma->vm_end;
  		vma = vma->vm_next;
-@@ -1183,6 +1183,10 @@ arch_get_unmapped_area(struct file *filp, unsigned long addr,
+@@ -1182,6 +1182,10 @@ arch_get_unmapped_area(struct file *filp, unsigned long addr,
  	   merely specific addresses, but regions of memory -- perhaps
  	   this feature should be incorporated into all ports?  */
  
@@ -532,7 +556,7 @@ index 01e8715..be0e80f 100644
  	if (addr) {
  		addr = arch_get_unmapped_area_1 (PAGE_ALIGN(addr), len, limit);
  		if (addr != (unsigned long) -ENOMEM)
-@@ -1190,8 +1194,8 @@ arch_get_unmapped_area(struct file *filp, unsigned long addr,
+@@ -1189,8 +1193,8 @@ arch_get_unmapped_area(struct file *filp, unsigned long addr,
  	}
  
  	/* Next, try allocating at TASK_UNMAPPED_BASE.  */
@@ -544,10 +568,10 @@ index 01e8715..be0e80f 100644
  		return addr;
  
 diff --git a/arch/alpha/mm/fault.c b/arch/alpha/mm/fault.c
-index fadd5f8..904e73a 100644
+index 5eecab1..609abc0 100644
 --- a/arch/alpha/mm/fault.c
 +++ b/arch/alpha/mm/fault.c
-@@ -54,6 +54,124 @@ __load_new_mm_context(struct mm_struct *next_mm)
+@@ -53,6 +53,124 @@ __load_new_mm_context(struct mm_struct *next_mm)
  	__reload_thread(pcb);
  }
  
@@ -672,7 +696,7 @@ index fadd5f8..904e73a 100644
  
  /*
   * This routine handles page faults.  It determines the address,
-@@ -131,8 +249,29 @@ do_page_fault(unsigned long address, unsigned long mmcsr,
+@@ -130,8 +248,29 @@ do_page_fault(unsigned long address, unsigned long mmcsr,
   good_area:
  	si_code = SEGV_ACCERR;
  	if (cause < 0) {
@@ -704,12 +728,12 @@ index fadd5f8..904e73a 100644
  		/* Allow reads even for write-only mappings */
  		if (!(vma->vm_flags & (VM_READ | VM_WRITE)))
 diff --git a/arch/arm/include/asm/atomic.h b/arch/arm/include/asm/atomic.h
-index 86976d0..c63ea6b 100644
+index 68374ba..15c980c 100644
 --- a/arch/arm/include/asm/atomic.h
 +++ b/arch/arm/include/asm/atomic.h
-@@ -15,6 +15,10 @@
- #include <linux/types.h>
- #include <asm/system.h>
+@@ -17,17 +17,35 @@
+ #include <asm/barrier.h>
+ #include <asm/cmpxchg.h>
  
 +#ifdef CONFIG_GENERIC_ATOMIC64
 +#include <asm-generic/atomic64.h>
@@ -718,7 +742,16 @@ index 86976d0..c63ea6b 100644
  #define ATOMIC_INIT(i)	{ (i) }
  
  #ifdef __KERNEL__
-@@ -25,7 +29,15 @@
+ 
++#define _ASM_EXTABLE(from, to)		\
++"	.pushsection __ex_table,\"a\"\n"\
++"	.align	3\n"			\
++"	.long	" #from ", " #to"\n"	\
++"	.popsection"
++
+ /*
+  * On ARM, ordinary assignment (str instruction) doesn't clear the local
+  * strex/ldrex monitor on some implementations. The reason we can use it for
   * atomic_set() is the clrex or dummy strex done on every exception return.
   */
  #define atomic_read(v)	(*(volatile int *)&(v)->counter)
@@ -734,7 +767,7 @@ index 86976d0..c63ea6b 100644
  
  #if __LINUX_ARM_ARCH__ >= 6
  
-@@ -40,6 +52,35 @@ static inline void atomic_add(int i, atomic_t *v)
+@@ -42,6 +60,35 @@ static inline void atomic_add(int i, atomic_t *v)
  	int result;
  
  	__asm__ __volatile__("@ atomic_add\n"
@@ -770,7 +803,7 @@ index 86976d0..c63ea6b 100644
  "1:	ldrex	%0, [%3]\n"
  "	add	%0, %0, %4\n"
  "	strex	%1, %0, [%3]\n"
-@@ -58,6 +99,42 @@ static inline int atomic_add_return(int i, atomic_t *v)
+@@ -60,6 +107,42 @@ static inline int atomic_add_return(int i, atomic_t *v)
  	smp_mb();
  
  	__asm__ __volatile__("@ atomic_add_return\n"
@@ -813,7 +846,7 @@ index 86976d0..c63ea6b 100644
  "1:	ldrex	%0, [%3]\n"
  "	add	%0, %0, %4\n"
  "	strex	%1, %0, [%3]\n"
-@@ -78,6 +155,35 @@ static inline void atomic_sub(int i, atomic_t *v)
+@@ -80,6 +163,35 @@ static inline void atomic_sub(int i, atomic_t *v)
  	int result;
  
  	__asm__ __volatile__("@ atomic_sub\n"
@@ -849,7 +882,7 @@ index 86976d0..c63ea6b 100644
  "1:	ldrex	%0, [%3]\n"
  "	sub	%0, %0, %4\n"
  "	strex	%1, %0, [%3]\n"
-@@ -96,11 +202,25 @@ static inline int atomic_sub_return(int i, atomic_t *v)
+@@ -98,11 +210,25 @@ static inline int atomic_sub_return(int i, atomic_t *v)
  	smp_mb();
  
  	__asm__ __volatile__("@ atomic_sub_return\n"
@@ -877,7 +910,7 @@ index 86976d0..c63ea6b 100644
  	: "=&r" (result), "=&r" (tmp), "+Qo" (v->counter)
  	: "r" (&v->counter), "Ir" (i)
  	: "cc");
-@@ -132,6 +252,28 @@ static inline int atomic_cmpxchg(atomic_t *ptr, int old, int new)
+@@ -134,6 +260,28 @@ static inline int atomic_cmpxchg(atomic_t *ptr, int old, int new)
  	return oldval;
  }
  
@@ -906,7 +939,7 @@ index 86976d0..c63ea6b 100644
  static inline void atomic_clear_mask(unsigned long mask, unsigned long *addr)
  {
  	unsigned long tmp, tmp2;
-@@ -165,7 +307,9 @@ static inline int atomic_add_return(int i, atomic_t *v)
+@@ -167,7 +315,9 @@ static inline int atomic_add_return(int i, atomic_t *v)
  
  	return val;
  }
@@ -916,7 +949,7 @@ index 86976d0..c63ea6b 100644
  
  static inline int atomic_sub_return(int i, atomic_t *v)
  {
-@@ -179,7 +323,9 @@ static inline int atomic_sub_return(int i, atomic_t *v)
+@@ -181,7 +331,9 @@ static inline int atomic_sub_return(int i, atomic_t *v)
  
  	return val;
  }
@@ -926,7 +959,7 @@ index 86976d0..c63ea6b 100644
  
  static inline int atomic_cmpxchg(atomic_t *v, int old, int new)
  {
-@@ -194,6 +340,7 @@ static inline int atomic_cmpxchg(atomic_t *v, int old, int new)
+@@ -196,6 +348,7 @@ static inline int atomic_cmpxchg(atomic_t *v, int old, int new)
  
  	return ret;
  }
@@ -934,7 +967,7 @@ index 86976d0..c63ea6b 100644
  
  static inline void atomic_clear_mask(unsigned long mask, unsigned long *addr)
  {
-@@ -207,6 +354,10 @@ static inline void atomic_clear_mask(unsigned long mask, unsigned long *addr)
+@@ -209,6 +362,10 @@ static inline void atomic_clear_mask(unsigned long mask, unsigned long *addr)
  #endif /* __LINUX_ARM_ARCH__ */
  
  #define atomic_xchg(v, new) (xchg(&((v)->counter), new))
@@ -945,7 +978,7 @@ index 86976d0..c63ea6b 100644
  
  static inline int __atomic_add_unless(atomic_t *v, int a, int u)
  {
-@@ -219,11 +370,27 @@ static inline int __atomic_add_unless(atomic_t *v, int a, int u)
+@@ -221,11 +378,27 @@ static inline int __atomic_add_unless(atomic_t *v, int a, int u)
  }
  
  #define atomic_inc(v)		atomic_add(1, v)
@@ -973,7 +1006,7 @@ index 86976d0..c63ea6b 100644
  #define atomic_dec_return(v)    (atomic_sub_return(1, v))
  #define atomic_sub_and_test(i, v) (atomic_sub_return(i, v) == 0)
  
-@@ -239,6 +406,14 @@ typedef struct {
+@@ -241,6 +414,14 @@ typedef struct {
  	u64 __aligned(8) counter;
  } atomic64_t;
  
@@ -988,7 +1021,7 @@ index 86976d0..c63ea6b 100644
  #define ATOMIC64_INIT(i) { (i) }
  
  static inline u64 atomic64_read(atomic64_t *v)
-@@ -254,6 +429,19 @@ static inline u64 atomic64_read(atomic64_t *v)
+@@ -256,6 +437,19 @@ static inline u64 atomic64_read(atomic64_t *v)
  	return result;
  }
  
@@ -1008,7 +1041,7 @@ index 86976d0..c63ea6b 100644
  static inline void atomic64_set(atomic64_t *v, u64 i)
  {
  	u64 tmp;
-@@ -268,6 +456,20 @@ static inline void atomic64_set(atomic64_t *v, u64 i)
+@@ -270,6 +464,20 @@ static inline void atomic64_set(atomic64_t *v, u64 i)
  	: "cc");
  }
  
@@ -1029,7 +1062,7 @@ index 86976d0..c63ea6b 100644
  static inline void atomic64_add(u64 i, atomic64_t *v)
  {
  	u64 result;
-@@ -276,6 +478,36 @@ static inline void atomic64_add(u64 i, atomic64_t *v)
+@@ -278,6 +486,36 @@ static inline void atomic64_add(u64 i, atomic64_t *v)
  	__asm__ __volatile__("@ atomic64_add\n"
  "1:	ldrexd	%0, %H0, [%3]\n"
  "	adds	%0, %0, %4\n"
@@ -1066,7 +1099,7 @@ index 86976d0..c63ea6b 100644
  "	adc	%H0, %H0, %H4\n"
  "	strexd	%1, %0, %H0, [%3]\n"
  "	teq	%1, #0\n"
-@@ -287,12 +519,49 @@ static inline void atomic64_add(u64 i, atomic64_t *v)
+@@ -289,12 +527,49 @@ static inline void atomic64_add(u64 i, atomic64_t *v)
  
  static inline u64 atomic64_add_return(u64 i, atomic64_t *v)
  {
@@ -1118,7 +1151,7 @@ index 86976d0..c63ea6b 100644
  "1:	ldrexd	%0, %H0, [%3]\n"
  "	adds	%0, %0, %4\n"
  "	adc	%H0, %H0, %H4\n"
-@@ -316,6 +585,36 @@ static inline void atomic64_sub(u64 i, atomic64_t *v)
+@@ -318,6 +593,36 @@ static inline void atomic64_sub(u64 i, atomic64_t *v)
  	__asm__ __volatile__("@ atomic64_sub\n"
  "1:	ldrexd	%0, %H0, [%3]\n"
  "	subs	%0, %0, %4\n"
@@ -1155,7 +1188,7 @@ index 86976d0..c63ea6b 100644
  "	sbc	%H0, %H0, %H4\n"
  "	strexd	%1, %0, %H0, [%3]\n"
  "	teq	%1, #0\n"
-@@ -327,18 +626,32 @@ static inline void atomic64_sub(u64 i, atomic64_t *v)
+@@ -329,18 +634,32 @@ static inline void atomic64_sub(u64 i, atomic64_t *v)
  
  static inline u64 atomic64_sub_return(u64 i, atomic64_t *v)
  {
@@ -1193,7 +1226,7 @@ index 86976d0..c63ea6b 100644
  	: "=&r" (result), "=&r" (tmp), "+Qo" (v->counter)
  	: "r" (&v->counter), "r" (i)
  	: "cc");
-@@ -372,6 +685,30 @@ static inline u64 atomic64_cmpxchg(atomic64_t *ptr, u64 old, u64 new)
+@@ -374,6 +693,30 @@ static inline u64 atomic64_cmpxchg(atomic64_t *ptr, u64 old, u64 new)
  	return oldval;
  }
  
@@ -1224,7 +1257,7 @@ index 86976d0..c63ea6b 100644
  static inline u64 atomic64_xchg(atomic64_t *ptr, u64 new)
  {
  	u64 result;
-@@ -395,21 +732,34 @@ static inline u64 atomic64_xchg(atomic64_t *ptr, u64 new)
+@@ -397,21 +740,34 @@ static inline u64 atomic64_xchg(atomic64_t *ptr, u64 new)
  
  static inline u64 atomic64_dec_if_positive(atomic64_t *v)
  {
@@ -1266,7 +1299,7 @@ index 86976d0..c63ea6b 100644
  	: "=&r" (result), "=&r" (tmp), "+Qo" (v->counter)
  	: "r" (&v->counter)
  	: "cc");
-@@ -432,13 +782,25 @@ static inline int atomic64_add_unless(atomic64_t *v, u64 a, u64 u)
+@@ -434,13 +790,25 @@ static inline int atomic64_add_unless(atomic64_t *v, u64 a, u64 u)
  "	teq	%0, %5\n"
  "	teqeq	%H0, %H5\n"
  "	moveq	%1, #0\n"
@@ -1294,7 +1327,7 @@ index 86976d0..c63ea6b 100644
  	: "=&r" (val), "+r" (ret), "=&r" (tmp), "+Qo" (v->counter)
  	: "r" (&v->counter), "r" (u), "r" (a)
  	: "cc");
-@@ -451,10 +813,13 @@ static inline int atomic64_add_unless(atomic64_t *v, u64 a, u64 u)
+@@ -453,10 +821,13 @@ static inline int atomic64_add_unless(atomic64_t *v, u64 a, u64 u)
  
  #define atomic64_add_negative(a, v)	(atomic64_add_return((a), (v)) < 0)
  #define atomic64_inc(v)			atomic64_add(1LL, (v))
@@ -1337,8 +1370,21 @@ index 1252a26..9dc17b5 100644
  
  /*
   * Select the calling method
+diff --git a/arch/arm/include/asm/cmpxchg.h b/arch/arm/include/asm/cmpxchg.h
+index d41d7cb..9bea5e0 100644
+--- a/arch/arm/include/asm/cmpxchg.h
++++ b/arch/arm/include/asm/cmpxchg.h
+@@ -102,6 +102,8 @@ static inline unsigned long __xchg(unsigned long x, volatile void *ptr, int size
+ 
+ #define xchg(ptr,x) \
+ 	((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
++#define xchg_unchecked(ptr,x) \
++	((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
+ 
+ #include <asm-generic/cmpxchg-local.h>
+ 
 diff --git a/arch/arm/include/asm/elf.h b/arch/arm/include/asm/elf.h
-index 0e9ce8d..6ef1e03 100644
+index 38050b1..9d90e8b 100644
 --- a/arch/arm/include/asm/elf.h
 +++ b/arch/arm/include/asm/elf.h
 @@ -116,7 +116,14 @@ int dump_task_regs(struct task_struct *t, elf_gregset_t *elfregs);
@@ -1357,7 +1403,7 @@ index 0e9ce8d..6ef1e03 100644
  
  /* When the program starts, a1 contains a pointer to a function to be 
     registered with atexit, as per the SVR4 ABI.  A value of 0 means we 
-@@ -126,10 +133,6 @@ int dump_task_regs(struct task_struct *t, elf_gregset_t *elfregs);
+@@ -126,8 +133,4 @@ int dump_task_regs(struct task_struct *t, elf_gregset_t *elfregs);
  extern void elf_set_personality(const struct elf32_hdr *);
  #define SET_PERSONALITY(ex)	elf_set_personality(&(ex))
  
@@ -1365,9 +1411,7 @@ index 0e9ce8d..6ef1e03 100644
 -extern unsigned long arch_randomize_brk(struct mm_struct *mm);
 -#define arch_randomize_brk arch_randomize_brk
 -
- extern int vectors_user_mapping(void);
- #define arch_setup_additional_pages(bprm, uses_interp) vectors_user_mapping()
- #define ARCH_HAS_SETUP_ADDITIONAL_PAGES
+ #endif
 diff --git a/arch/arm/include/asm/kmap_types.h b/arch/arm/include/asm/kmap_types.h
 index e51b1e8..32a3113 100644
 --- a/arch/arm/include/asm/kmap_types.h
@@ -1394,7 +1438,7 @@ index 53426c6..c7baff3 100644
  #ifdef CONFIG_OUTER_CACHE
  
 diff --git a/arch/arm/include/asm/page.h b/arch/arm/include/asm/page.h
-index 97b440c..b7ff179 100644
+index 5838361..da6e813 100644
 --- a/arch/arm/include/asm/page.h
 +++ b/arch/arm/include/asm/page.h
 @@ -123,7 +123,7 @@ struct cpu_user_fns {
@@ -1430,38 +1474,11 @@ index 943504f..bf8d667 100644
  
  #endif	/* CONFIG_ARM_LPAE */
  
-diff --git a/arch/arm/include/asm/system.h b/arch/arm/include/asm/system.h
-index e4c96cc..1145653 100644
---- a/arch/arm/include/asm/system.h
-+++ b/arch/arm/include/asm/system.h
-@@ -98,6 +98,8 @@ void hook_ifault_code(int nr, int (*fn)(unsigned long, unsigned int,
- 
- #define xchg(ptr,x) \
- 	((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
-+#define xchg_unchecked(ptr,x) \
-+	((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
- 
- extern asmlinkage void c_backtrace(unsigned long fp, int pmode);
- 
-@@ -534,6 +536,13 @@ static inline unsigned long long __cmpxchg64_mb(volatile void *ptr,
- 
- #endif	/* __LINUX_ARM_ARCH__ >= 6 */
- 
-+#define _ASM_EXTABLE(from, to)		\
-+"	.pushsection __ex_table,\"a\"\n"\
-+"	.align	3\n"			\
-+"	.long	" #from ", " #to"\n"	\
-+"	.popsection"
-+
-+
- #endif /* __ASSEMBLY__ */
- 
- #define arch_align_stack(x) (x)
 diff --git a/arch/arm/include/asm/thread_info.h b/arch/arm/include/asm/thread_info.h
-index d4c24d4..4ac53e8 100644
+index 0f04d84..2be5648 100644
 --- a/arch/arm/include/asm/thread_info.h
 +++ b/arch/arm/include/asm/thread_info.h
-@@ -141,6 +141,12 @@ extern void vfp_flush_hwstate(struct thread_info *);
+@@ -148,6 +148,12 @@ extern int vfp_restore_user_hwstate(struct user_vfp __user *,
  #define TIF_NOTIFY_RESUME	2	/* callback before returning to user */
  #define TIF_SYSCALL_TRACE	8
  #define TIF_SYSCALL_AUDIT	9
@@ -1474,7 +1491,7 @@ index d4c24d4..4ac53e8 100644
  #define TIF_POLLING_NRFLAG	16
  #define TIF_USING_IWMMXT	17
  #define TIF_MEMDIE		18	/* is terminating due to OOM killer */
-@@ -156,9 +162,11 @@ extern void vfp_flush_hwstate(struct thread_info *);
+@@ -163,9 +169,11 @@ extern int vfp_restore_user_hwstate(struct user_vfp __user *,
  #define _TIF_USING_IWMMXT	(1 << TIF_USING_IWMMXT)
  #define _TIF_RESTORE_SIGMASK	(1 << TIF_RESTORE_SIGMASK)
  #define _TIF_SECCOMP		(1 << TIF_SECCOMP)
@@ -1488,7 +1505,7 @@ index d4c24d4..4ac53e8 100644
  /*
   * Change these and you break ASM code in entry-common.S
 diff --git a/arch/arm/include/asm/uaccess.h b/arch/arm/include/asm/uaccess.h
-index 2958976..12ccac4 100644
+index 71f6536..602f279 100644
 --- a/arch/arm/include/asm/uaccess.h
 +++ b/arch/arm/include/asm/uaccess.h
 @@ -22,6 +22,8 @@
@@ -1547,10 +1564,10 @@ index 2958976..12ccac4 100644
  		n = __copy_to_user(to, from, n);
  	return n;
 diff --git a/arch/arm/kernel/armksyms.c b/arch/arm/kernel/armksyms.c
-index 5b0bce6..becd81c 100644
+index b57c75e..ed2d6b2 100644
 --- a/arch/arm/kernel/armksyms.c
 +++ b/arch/arm/kernel/armksyms.c
-@@ -95,8 +95,8 @@ EXPORT_SYMBOL(__strncpy_from_user);
+@@ -94,8 +94,8 @@ EXPORT_SYMBOL(__strncpy_from_user);
  #ifdef CONFIG_MMU
  EXPORT_SYMBOL(copy_page);
  
@@ -1562,7 +1579,7 @@ index 5b0bce6..becd81c 100644
  
  EXPORT_SYMBOL(__get_user_1);
 diff --git a/arch/arm/kernel/process.c b/arch/arm/kernel/process.c
-index 971d65c..cc936fb 100644
+index 2b7b017..c380fa2 100644
 --- a/arch/arm/kernel/process.c
 +++ b/arch/arm/kernel/process.c
 @@ -28,7 +28,6 @@
@@ -1573,7 +1590,7 @@ index 971d65c..cc936fb 100644
  #include <linux/hw_breakpoint.h>
  #include <linux/cpuidle.h>
  
-@@ -273,9 +272,10 @@ void machine_power_off(void)
+@@ -275,9 +274,10 @@ void machine_power_off(void)
  	machine_shutdown();
  	if (pm_power_off)
  		pm_power_off();
@@ -1585,7 +1602,7 @@ index 971d65c..cc936fb 100644
  {
  	machine_shutdown();
  
-@@ -517,12 +517,6 @@ unsigned long get_wchan(struct task_struct *p)
+@@ -519,12 +519,6 @@ unsigned long get_wchan(struct task_struct *p)
  	return 0;
  }
  
@@ -1599,10 +1616,10 @@ index 971d65c..cc936fb 100644
  /*
   * The vectors page is always readable from user space for the
 diff --git a/arch/arm/kernel/ptrace.c b/arch/arm/kernel/ptrace.c
-index f5ce8ab..4b73893 100644
+index 9650c14..ae30cdd 100644
 --- a/arch/arm/kernel/ptrace.c
 +++ b/arch/arm/kernel/ptrace.c
-@@ -905,10 +905,19 @@ long arch_ptrace(struct task_struct *child, long request,
+@@ -906,10 +906,19 @@ long arch_ptrace(struct task_struct *child, long request,
  	return ret;
  }
  
@@ -1623,10 +1640,10 @@ index f5ce8ab..4b73893 100644
  		audit_syscall_exit(regs);
  	else
 diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c
-index a255c39..4a19b25 100644
+index ebfac78..cbea9c0 100644
 --- a/arch/arm/kernel/setup.c
 +++ b/arch/arm/kernel/setup.c
-@@ -109,13 +109,13 @@ struct processor processor __read_mostly;
+@@ -111,13 +111,13 @@ struct processor processor __read_mostly;
  struct cpu_tlb_fns cpu_tlb __read_mostly;
  #endif
  #ifdef MULTI_USER
@@ -1644,10 +1661,10 @@ index a255c39..4a19b25 100644
  #endif
  
 diff --git a/arch/arm/kernel/traps.c b/arch/arm/kernel/traps.c
-index 504b28a..62f7a7d 100644
+index 63d402f..db1d714 100644
 --- a/arch/arm/kernel/traps.c
 +++ b/arch/arm/kernel/traps.c
-@@ -259,6 +259,8 @@ static int __die(const char *str, int err, struct thread_info *thread, struct pt
+@@ -264,6 +264,8 @@ static int __die(const char *str, int err, struct thread_info *thread, struct pt
  
  static DEFINE_RAW_SPINLOCK(die_lock);
  
@@ -1656,7 +1673,7 @@ index 504b28a..62f7a7d 100644
  /*
   * This function is protected against re-entrancy.
   */
-@@ -291,6 +293,9 @@ void die(const char *str, struct pt_regs *regs, int err)
+@@ -296,6 +298,9 @@ void die(const char *str, struct pt_regs *regs, int err)
  		panic("Fatal exception in interrupt");
  	if (panic_on_oops)
  		panic("Fatal exception");
@@ -1803,10 +1820,10 @@ index 025f742..8432b08 100644
  	/*
  	 * This test is stubbed out of the main function above to keep
 diff --git a/arch/arm/mach-omap2/board-n8x0.c b/arch/arm/mach-omap2/board-n8x0.c
-index 6722627..8f97548c 100644
+index 518091c..eae9a76 100644
 --- a/arch/arm/mach-omap2/board-n8x0.c
 +++ b/arch/arm/mach-omap2/board-n8x0.c
-@@ -597,7 +597,7 @@ static int n8x0_menelaus_late_init(struct device *dev)
+@@ -596,7 +596,7 @@ static int n8x0_menelaus_late_init(struct device *dev)
  }
  #endif
  
@@ -1815,24 +1832,11 @@ index 6722627..8f97548c 100644
  	.late_init = n8x0_menelaus_late_init,
  };
  
-diff --git a/arch/arm/mach-ux500/mbox-db5500.c b/arch/arm/mach-ux500/mbox-db5500.c
-index 2b2d51c..0127490 100644
---- a/arch/arm/mach-ux500/mbox-db5500.c
-+++ b/arch/arm/mach-ux500/mbox-db5500.c
-@@ -168,7 +168,7 @@ static ssize_t mbox_read_fifo(struct device *dev,
- 	return sprintf(buf, "0x%X\n", mbox_value);
- }
- 
--static DEVICE_ATTR(fifo, S_IWUGO | S_IRUGO, mbox_read_fifo, mbox_write_fifo);
-+static DEVICE_ATTR(fifo, S_IWUSR | S_IRUGO, mbox_read_fifo, mbox_write_fifo);
- 
- static int mbox_show(struct seq_file *s, void *data)
- {
 diff --git a/arch/arm/mm/fault.c b/arch/arm/mm/fault.c
-index 90e366a..1b92505 100644
+index 5bb4835..4760f68 100644
 --- a/arch/arm/mm/fault.c
 +++ b/arch/arm/mm/fault.c
-@@ -172,6 +172,13 @@ __do_user_fault(struct task_struct *tsk, unsigned long addr,
+@@ -174,6 +174,13 @@ __do_user_fault(struct task_struct *tsk, unsigned long addr,
  	}
  #endif
  
@@ -1846,7 +1850,7 @@ index 90e366a..1b92505 100644
  	tsk->thread.address = addr;
  	tsk->thread.error_code = fsr;
  	tsk->thread.trap_no = 14;
-@@ -395,6 +402,33 @@ do_page_fault(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
+@@ -397,6 +404,33 @@ do_page_fault(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
  }
  #endif					/* CONFIG_MMU */
  
@@ -1880,7 +1884,7 @@ index 90e366a..1b92505 100644
  /*
   * First Level Translation Fault Handler
   *
-@@ -575,6 +609,20 @@ do_PrefetchAbort(unsigned long addr, unsigned int ifsr, struct pt_regs *regs)
+@@ -577,6 +611,20 @@ do_PrefetchAbort(unsigned long addr, unsigned int ifsr, struct pt_regs *regs)
  	const struct fsr_info *inf = ifsr_info + fsr_fs(ifsr);
  	struct siginfo info;
  
@@ -2153,10 +2157,10 @@ index 1de779f..336fad3 100644
  #define __read_mostly __attribute__((__section__(".data.read_mostly")))
  
 diff --git a/arch/frv/include/asm/atomic.h b/arch/frv/include/asm/atomic.h
-index 0d8a7d6..d0c9ff5 100644
+index b86329d..6709906 100644
 --- a/arch/frv/include/asm/atomic.h
 +++ b/arch/frv/include/asm/atomic.h
-@@ -241,6 +241,16 @@ extern uint32_t __xchg_32(uint32_t i, volatile void *v);
+@@ -186,6 +186,16 @@ static inline void atomic64_dec(atomic64_t *v)
  #define atomic64_cmpxchg(v, old, new)	(__cmpxchg_64(old, new, &(v)->counter))
  #define atomic64_xchg(v, new)		(__xchg_64(new, &(v)->counter))
  
@@ -2269,10 +2273,10 @@ index 0f01de2..d37d309 100644
  #define __cacheline_aligned	__aligned(L1_CACHE_BYTES)
  #define ____cacheline_aligned	__aligned(L1_CACHE_BYTES)
 diff --git a/arch/ia64/include/asm/atomic.h b/arch/ia64/include/asm/atomic.h
-index 3fad89e..3047da5 100644
+index 7d91166..88ab87e 100644
 --- a/arch/ia64/include/asm/atomic.h
 +++ b/arch/ia64/include/asm/atomic.h
-@@ -209,6 +209,16 @@ atomic64_add_negative (__s64 i, atomic64_t *v)
+@@ -208,6 +208,16 @@ atomic64_add_negative (__s64 i, atomic64_t *v)
  #define atomic64_inc(v)			atomic64_add(1, (v))
  #define atomic64_dec(v)			atomic64_sub(1, (v))
  
@@ -2359,7 +2363,7 @@ index 96a8d92..617a1cf 100644
  {
  	return quicklist_alloc(0, GFP_KERNEL, NULL);
 diff --git a/arch/ia64/include/asm/pgtable.h b/arch/ia64/include/asm/pgtable.h
-index 1a97af3..7529d31 100644
+index 815810c..d60bd4c 100644
 --- a/arch/ia64/include/asm/pgtable.h
 +++ b/arch/ia64/include/asm/pgtable.h
 @@ -12,7 +12,7 @@
@@ -2371,7 +2375,7 @@ index 1a97af3..7529d31 100644
  #include <asm/mman.h>
  #include <asm/page.h>
  #include <asm/processor.h>
-@@ -143,6 +143,17 @@
+@@ -142,6 +142,17 @@
  #define PAGE_READONLY	__pgprot(__ACCESS_BITS | _PAGE_PL_3 | _PAGE_AR_R)
  #define PAGE_COPY	__pgprot(__ACCESS_BITS | _PAGE_PL_3 | _PAGE_AR_R)
  #define PAGE_COPY_EXEC	__pgprot(__ACCESS_BITS | _PAGE_PL_3 | _PAGE_AR_RX)
@@ -2390,10 +2394,10 @@ index 1a97af3..7529d31 100644
  #define PAGE_KERNEL	__pgprot(__DIRTY_BITS  | _PAGE_PL_0 | _PAGE_AR_RWX)
  #define PAGE_KERNELRX	__pgprot(__ACCESS_BITS | _PAGE_PL_0 | _PAGE_AR_RX)
 diff --git a/arch/ia64/include/asm/spinlock.h b/arch/ia64/include/asm/spinlock.h
-index b77768d..e0795eb 100644
+index 54ff557..70c88b7 100644
 --- a/arch/ia64/include/asm/spinlock.h
 +++ b/arch/ia64/include/asm/spinlock.h
-@@ -72,7 +72,7 @@ static __always_inline void __ticket_spin_unlock(arch_spinlock_t *lock)
+@@ -71,7 +71,7 @@ static __always_inline void __ticket_spin_unlock(arch_spinlock_t *lock)
  	unsigned short	*p = (unsigned short *)&lock->lock + 1, tmp;
  
  	asm volatile ("ld2.bias %0=[%1]" : "=r"(tmp) : "r"(p));
@@ -2553,10 +2557,10 @@ index 609d500..7dde2a8 100644
  			mm->free_area_cache = addr + len;
  			return addr;
 diff --git a/arch/ia64/kernel/vmlinux.lds.S b/arch/ia64/kernel/vmlinux.lds.S
-index 53c0ba0..2accdde 100644
+index 0ccb28f..8992469 100644
 --- a/arch/ia64/kernel/vmlinux.lds.S
 +++ b/arch/ia64/kernel/vmlinux.lds.S
-@@ -199,7 +199,7 @@ SECTIONS {
+@@ -198,7 +198,7 @@ SECTIONS {
  	/* Per-cpu data: */
  	. = ALIGN(PERCPU_PAGE_SIZE);
  	PERCPU_VADDR(SMP_CACHE_BYTES, PERCPU_ADDR, :percpu)
@@ -2566,10 +2570,10 @@ index 53c0ba0..2accdde 100644
  	 * ensure percpu data fits
  	 * into percpu page size
 diff --git a/arch/ia64/mm/fault.c b/arch/ia64/mm/fault.c
-index 20b3593..1ce77f0 100644
+index 02d29c2..ea893df 100644
 --- a/arch/ia64/mm/fault.c
 +++ b/arch/ia64/mm/fault.c
-@@ -73,6 +73,23 @@ mapped_kernel_page_is_present (unsigned long address)
+@@ -72,6 +72,23 @@ mapped_kernel_page_is_present (unsigned long address)
  	return pte_present(pte);
  }
  
@@ -2593,7 +2597,7 @@ index 20b3593..1ce77f0 100644
  void __kprobes
  ia64_do_page_fault (unsigned long address, unsigned long isr, struct pt_regs *regs)
  {
-@@ -146,9 +163,23 @@ ia64_do_page_fault (unsigned long address, unsigned long isr, struct pt_regs *re
+@@ -145,9 +162,23 @@ ia64_do_page_fault (unsigned long address, unsigned long isr, struct pt_regs *re
  	mask = (  (((isr >> IA64_ISR_X_BIT) & 1UL) << VM_EXEC_BIT)
  		| (((isr >> IA64_ISR_W_BIT) & 1UL) << VM_WRITE_BIT));
  
@@ -2632,10 +2636,10 @@ index 5ca674b..e0e1b70 100644
  		addr = ALIGN(vmm->vm_end, HPAGE_SIZE);
  	}
 diff --git a/arch/ia64/mm/init.c b/arch/ia64/mm/init.c
-index 13df239d..cb52116 100644
+index 0eab454..bd794f2 100644
 --- a/arch/ia64/mm/init.c
 +++ b/arch/ia64/mm/init.c
-@@ -121,6 +121,19 @@ ia64_init_addr_space (void)
+@@ -120,6 +120,19 @@ ia64_init_addr_space (void)
  		vma->vm_start = current->thread.rbs_bot & PAGE_MASK;
  		vma->vm_end = vma->vm_start + PAGE_SIZE;
  		vma->vm_flags = VM_DATA_DEFAULT_FLAGS|VM_GROWSUP|VM_ACCOUNT;
@@ -2731,12 +2735,12 @@ index 4efe96a..60e8699 100644
  #define SMP_CACHE_BYTES	L1_CACHE_BYTES
  
 diff --git a/arch/mips/include/asm/atomic.h b/arch/mips/include/asm/atomic.h
-index 1d93f81..67794d0 100644
+index 3f4c5cb..3439c6e 100644
 --- a/arch/mips/include/asm/atomic.h
 +++ b/arch/mips/include/asm/atomic.h
 @@ -21,6 +21,10 @@
+ #include <asm/cmpxchg.h>
  #include <asm/war.h>
- #include <asm/system.h>
  
 +#ifdef CONFIG_GENERIC_ATOMIC64
 +#include <asm-generic/atomic64.h>
@@ -2804,6 +2808,18 @@ index 455c0ac..ad65fbe 100644
 -#define arch_randomize_brk arch_randomize_brk
 -
  #endif /* _ASM_ELF_H */
+diff --git a/arch/mips/include/asm/exec.h b/arch/mips/include/asm/exec.h
+index c1f6afa..38cc6e9 100644
+--- a/arch/mips/include/asm/exec.h
++++ b/arch/mips/include/asm/exec.h
+@@ -12,6 +12,6 @@
+ #ifndef _ASM_EXEC_H
+ #define _ASM_EXEC_H
+ 
+-extern unsigned long arch_align_stack(unsigned long sp);
++#define arch_align_stack(x) ((x) & ~0xfUL)
+ 
+ #endif /* _ASM_EXEC_H */
 diff --git a/arch/mips/include/asm/page.h b/arch/mips/include/asm/page.h
 index da9bd7d..91aa7ab 100644
 --- a/arch/mips/include/asm/page.h
@@ -2833,18 +2849,6 @@ index 881d18b..cea38bc 100644
  #endif
  
  /*
-diff --git a/arch/mips/include/asm/system.h b/arch/mips/include/asm/system.h
-index 6018c80..7c37203 100644
---- a/arch/mips/include/asm/system.h
-+++ b/arch/mips/include/asm/system.h
-@@ -230,6 +230,6 @@ extern void per_cpu_trap_init(void);
-  */
- #define __ARCH_WANT_UNLOCKED_CTXSW
- 
--extern unsigned long arch_align_stack(unsigned long sp);
-+#define arch_align_stack(x) ((x) & ~0xfUL)
- 
- #endif /* _ASM_SYSTEM_H */
 diff --git a/arch/mips/include/asm/thread_info.h b/arch/mips/include/asm/thread_info.h
 index 0d85d8e..ec71487 100644
 --- a/arch/mips/include/asm/thread_info.h
@@ -2916,10 +2920,10 @@ index ff44823..97f8906 100644
  
  /*
 diff --git a/arch/mips/kernel/process.c b/arch/mips/kernel/process.c
-index 7955409..ceaea7c 100644
+index e9a5fd7..378809a 100644
 --- a/arch/mips/kernel/process.c
 +++ b/arch/mips/kernel/process.c
-@@ -483,15 +483,3 @@ unsigned long get_wchan(struct task_struct *task)
+@@ -480,15 +480,3 @@ unsigned long get_wchan(struct task_struct *task)
  out:
  	return pc;
  }
@@ -2936,10 +2940,10 @@ index 7955409..ceaea7c 100644
 -	return sp & ALMASK;
 -}
 diff --git a/arch/mips/kernel/ptrace.c b/arch/mips/kernel/ptrace.c
-index 7786b60..3e38c72 100644
+index 7c24c29..e2f1981 100644
 --- a/arch/mips/kernel/ptrace.c
 +++ b/arch/mips/kernel/ptrace.c
-@@ -529,6 +529,10 @@ static inline int audit_arch(void)
+@@ -528,6 +528,10 @@ static inline int audit_arch(void)
  	return arch;
  }
  
@@ -2950,7 +2954,7 @@ index 7786b60..3e38c72 100644
  /*
   * Notification of system call entry/exit
   * - triggered by current->work.syscall_trace
-@@ -538,6 +542,11 @@ asmlinkage void syscall_trace_enter(struct pt_regs *regs)
+@@ -537,6 +541,11 @@ asmlinkage void syscall_trace_enter(struct pt_regs *regs)
  	/* do the secure computing check first */
  	secure_computing(regs->regs[2]);
  
@@ -3015,10 +3019,10 @@ index 5422855..74e63a3 100644
  	and	t0, t1, t0
  	bnez	t0, trace_a_syscall
 diff --git a/arch/mips/mm/fault.c b/arch/mips/mm/fault.c
-index 69ebd58..e4bff83 100644
+index c14f6df..537e729 100644
 --- a/arch/mips/mm/fault.c
 +++ b/arch/mips/mm/fault.c
-@@ -28,6 +28,23 @@
+@@ -27,6 +27,23 @@
  #include <asm/highmem.h>		/* For VMALLOC_END */
  #include <linux/kdebug.h>
  
@@ -3187,10 +3191,10 @@ index 4ce7a01..449202a 100644
  
  #endif /* __ASM_OPENRISC_CACHE_H */
 diff --git a/arch/parisc/include/asm/atomic.h b/arch/parisc/include/asm/atomic.h
-index 4054b31..a10c105 100644
+index 6c6defc..d30653d 100644
 --- a/arch/parisc/include/asm/atomic.h
 +++ b/arch/parisc/include/asm/atomic.h
-@@ -335,6 +335,16 @@ static __inline__ int atomic64_add_unless(atomic64_t *v, long a, long u)
+@@ -229,6 +229,16 @@ static __inline__ int atomic64_add_unless(atomic64_t *v, long a, long u)
  
  #define atomic64_inc_not_zero(v) atomic64_add_unless((v), 1, 0)
  
@@ -3278,10 +3282,10 @@ index fc987a1..6e068ef 100644
  #endif
  
 diff --git a/arch/parisc/include/asm/pgtable.h b/arch/parisc/include/asm/pgtable.h
-index 22dadeb..f6c2be4 100644
+index ee99f23..802b0a1 100644
 --- a/arch/parisc/include/asm/pgtable.h
 +++ b/arch/parisc/include/asm/pgtable.h
-@@ -210,6 +210,17 @@ struct vm_area_struct;
+@@ -212,6 +212,17 @@ struct vm_area_struct;
  #define PAGE_EXECREAD   __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | _PAGE_EXEC |_PAGE_ACCESSED)
  #define PAGE_COPY       PAGE_EXECREAD
  #define PAGE_RWX        __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | _PAGE_WRITE | _PAGE_EXEC |_PAGE_ACCESSED)
@@ -3434,10 +3438,10 @@ index c9b9322..02d8940 100644
  	if (filp) {
  		addr = get_shared_area(filp->f_mapping, addr, len, pgoff);
 diff --git a/arch/parisc/kernel/traps.c b/arch/parisc/kernel/traps.c
-index f19e660..414fe24 100644
+index 45ba99f..8e22c33 100644
 --- a/arch/parisc/kernel/traps.c
 +++ b/arch/parisc/kernel/traps.c
-@@ -733,9 +733,7 @@ void notrace handle_interruption(int code, struct pt_regs *regs)
+@@ -732,9 +732,7 @@ void notrace handle_interruption(int code, struct pt_regs *regs)
  
  			down_read(&current->mm->mmap_sem);
  			vma = find_vma(current->mm,regs->iaoq[0]);
@@ -3622,12 +3626,12 @@ index 18162ce..94de376 100644
  	/*
  	 * If for any reason at all we couldn't handle the fault, make
 diff --git a/arch/powerpc/include/asm/atomic.h b/arch/powerpc/include/asm/atomic.h
-index 02e41b5..ec6e26c 100644
+index da29032..f76c24c 100644
 --- a/arch/powerpc/include/asm/atomic.h
 +++ b/arch/powerpc/include/asm/atomic.h
-@@ -469,6 +469,16 @@ static __inline__ int atomic64_add_unless(atomic64_t *v, long a, long u)
- 
- #define atomic64_inc_not_zero(v) atomic64_add_unless((v), 1, 0)
+@@ -522,6 +522,16 @@ static __inline__ long atomic64_inc_not_zero(atomic64_t *v)
+ 	return t1;
+ }
  
 +#define atomic64_read_unchecked(v)		atomic64_read(v)
 +#define atomic64_set_unchecked(v, i)		atomic64_set((v), (i))
@@ -3643,7 +3647,7 @@ index 02e41b5..ec6e26c 100644
  
  #endif /* __KERNEL__ */
 diff --git a/arch/powerpc/include/asm/cache.h b/arch/powerpc/include/asm/cache.h
-index 4b50941..5605819 100644
+index 9e495c9..b6878e5 100644
 --- a/arch/powerpc/include/asm/cache.h
 +++ b/arch/powerpc/include/asm/cache.h
 @@ -3,6 +3,7 @@
@@ -3699,6 +3703,18 @@ index 3bf9cca..e7457d0 100644
  #endif /* __KERNEL__ */
  
  /*
+diff --git a/arch/powerpc/include/asm/exec.h b/arch/powerpc/include/asm/exec.h
+index 8196e9c..d83a9f3 100644
+--- a/arch/powerpc/include/asm/exec.h
++++ b/arch/powerpc/include/asm/exec.h
+@@ -4,6 +4,6 @@
+ #ifndef _ASM_POWERPC_EXEC_H
+ #define _ASM_POWERPC_EXEC_H
+ 
+-extern unsigned long arch_align_stack(unsigned long sp);
++#define arch_align_stack(x) ((x) & ~0xfUL)
+ 
+ #endif /* _ASM_POWERPC_EXEC_H */
 diff --git a/arch/powerpc/include/asm/kmap_types.h b/arch/powerpc/include/asm/kmap_types.h
 index bca8fdc..61e9580 100644
 --- a/arch/powerpc/include/asm/kmap_types.h
@@ -3832,7 +3848,7 @@ index 4aad413..85d86bf 100644
  #define _PAGE_NO_CACHE	0x020	/* I: cache inhibit */
  #define _PAGE_WRITETHRU	0x040	/* W: cache write-through */
 diff --git a/arch/powerpc/include/asm/reg.h b/arch/powerpc/include/asm/reg.h
-index 7fdc2c0..e47a9b02d3 100644
+index 9d7f0fb..a28fe69 100644
 --- a/arch/powerpc/include/asm/reg.h
 +++ b/arch/powerpc/include/asm/reg.h
 @@ -212,6 +212,7 @@
@@ -3843,24 +3859,11 @@ index 7fdc2c0..e47a9b02d3 100644
  #define   DSISR_PROTFAULT	0x08000000	/* protection fault */
  #define   DSISR_ISSTORE		0x02000000	/* access was a store */
  #define   DSISR_DABRMATCH	0x00400000	/* hit data breakpoint */
-diff --git a/arch/powerpc/include/asm/system.h b/arch/powerpc/include/asm/system.h
-index c377457..3c69fbc 100644
---- a/arch/powerpc/include/asm/system.h
-+++ b/arch/powerpc/include/asm/system.h
-@@ -539,7 +539,7 @@ __cmpxchg_local(volatile void *ptr, unsigned long old, unsigned long new,
- #define cmpxchg64_local(ptr, o, n) __cmpxchg64_local_generic((ptr), (o), (n))
- #endif
- 
--extern unsigned long arch_align_stack(unsigned long sp);
-+#define arch_align_stack(x) ((x) & ~0xfUL)
- 
- /* Used in very early kernel initialization. */
- extern unsigned long reloc_offset(void);
 diff --git a/arch/powerpc/include/asm/thread_info.h b/arch/powerpc/include/asm/thread_info.h
-index 96471494..60ed5a2 100644
+index 4a741c7..c8162227b 100644
 --- a/arch/powerpc/include/asm/thread_info.h
 +++ b/arch/powerpc/include/asm/thread_info.h
-@@ -104,13 +104,15 @@ static inline struct thread_info *current_thread_info(void)
+@@ -104,12 +104,14 @@ static inline struct thread_info *current_thread_info(void)
  #define TIF_PERFMON_CTXSW	6	/* perfmon needs ctxsw calls */
  #define TIF_SYSCALL_AUDIT	7	/* syscall auditing active */
  #define TIF_SINGLESTEP		8	/* singlestepping active */
@@ -3870,14 +3873,13 @@ index 96471494..60ed5a2 100644
  #define TIF_NOERROR		12	/* Force successful syscall return */
  #define TIF_NOTIFY_RESUME	13	/* callback before returning to user */
  #define TIF_SYSCALL_TRACEPOINT	15	/* syscall tracepoint instrumentation */
- #define TIF_RUNLATCH		16	/* Is the runlatch enabled? */
-+#define TIF_MEMDIE		17	/* is terminating due to OOM killer */
++#define TIF_MEMDIE		16	/* is terminating due to OOM killer */
 +/* mask must be expressable within 16 bits to satisfy 'andi' instruction reqs */
 +#define TIF_GRSEC_SETXID	9	/* update credentials on syscall entry/exit */
  
  /* as above, but as bit values */
  #define _TIF_SYSCALL_TRACE	(1<<TIF_SYSCALL_TRACE)
-@@ -128,8 +130,11 @@ static inline struct thread_info *current_thread_info(void)
+@@ -127,8 +129,11 @@ static inline struct thread_info *current_thread_info(void)
  #define _TIF_NOTIFY_RESUME	(1<<TIF_NOTIFY_RESUME)
  #define _TIF_SYSCALL_TRACEPOINT	(1<<TIF_SYSCALL_TRACEPOINT)
  #define _TIF_RUNLATCH		(1<<TIF_RUNLATCH)
@@ -4072,10 +4074,10 @@ index bd0fb84..a42a14b 100644
  
  static inline unsigned long clear_user(void __user *addr, unsigned long size)
 diff --git a/arch/powerpc/kernel/exceptions-64e.S b/arch/powerpc/kernel/exceptions-64e.S
-index 429983c..7af363b 100644
+index 7215cc2..a9730c1 100644
 --- a/arch/powerpc/kernel/exceptions-64e.S
 +++ b/arch/powerpc/kernel/exceptions-64e.S
-@@ -587,6 +587,7 @@ storage_fault_common:
+@@ -661,6 +661,7 @@ storage_fault_common:
  	std	r14,_DAR(r1)
  	std	r15,_DSISR(r1)
  	addi	r3,r1,STACK_FRAME_OVERHEAD
@@ -4083,7 +4085,7 @@ index 429983c..7af363b 100644
  	mr	r4,r14
  	mr	r5,r15
  	ld	r14,PACA_EXGEN+EX_R14(r13)
-@@ -596,8 +597,7 @@ storage_fault_common:
+@@ -669,8 +670,7 @@ storage_fault_common:
  	cmpdi	r3,0
  	bne-	1f
  	b	.ret_from_except_lite
@@ -4094,49 +4096,21 @@ index 429983c..7af363b 100644
  	ld	r4,_DAR(r1)
  	bl	.bad_page_fault
 diff --git a/arch/powerpc/kernel/exceptions-64s.S b/arch/powerpc/kernel/exceptions-64s.S
-index 15c5a4f..22a4000 100644
+index 8f880bc..c5bd2f3 100644
 --- a/arch/powerpc/kernel/exceptions-64s.S
 +++ b/arch/powerpc/kernel/exceptions-64s.S
-@@ -1004,10 +1004,10 @@ handle_page_fault:
+@@ -890,10 +890,10 @@ handle_page_fault:
  11:	ld	r4,_DAR(r1)
  	ld	r5,_DSISR(r1)
  	addi	r3,r1,STACK_FRAME_OVERHEAD
 +	bl	.save_nvgprs
  	bl	.do_page_fault
  	cmpdi	r3,0
- 	beq+	13f
+ 	beq+	12f
 -	bl	.save_nvgprs
  	mr	r5,r3
  	addi	r3,r1,STACK_FRAME_OVERHEAD
  	lwz	r4,_DAR(r1)
-diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c
-index 01e2877..a1ba360 100644
---- a/arch/powerpc/kernel/irq.c
-+++ b/arch/powerpc/kernel/irq.c
-@@ -560,9 +560,6 @@ struct irq_host *irq_alloc_host(struct device_node *of_node,
- 	host->ops = ops;
- 	host->of_node = of_node_get(of_node);
- 
--	if (host->ops->match == NULL)
--		host->ops->match = default_irq_host_match;
--
- 	raw_spin_lock_irqsave(&irq_big_lock, flags);
- 
- 	/* If it's a legacy controller, check for duplicates and
-@@ -635,7 +632,12 @@ struct irq_host *irq_find_host(struct device_node *node)
- 	 */
- 	raw_spin_lock_irqsave(&irq_big_lock, flags);
- 	list_for_each_entry(h, &irq_hosts, link)
--		if (h->ops->match(h, node)) {
-+		if (h->ops->match) {
-+			if (h->ops->match(h, node)) {
-+				found = h;
-+				break;
-+			}
-+		} else if (default_irq_host_match(h, node)) {
- 			found = h;
- 			break;
- 		}
 diff --git a/arch/powerpc/kernel/module_32.c b/arch/powerpc/kernel/module_32.c
 index 0b6d796..d760ddb 100644
 --- a/arch/powerpc/kernel/module_32.c
@@ -4171,10 +4145,10 @@ index 0b6d796..d760ddb 100644
  	/* Find this entry, or if that fails, the next avail. entry */
  	while (entry->jump[0]) {
 diff --git a/arch/powerpc/kernel/process.c b/arch/powerpc/kernel/process.c
-index d817ab0..b23b18e 100644
+index 4937c96..70714b7 100644
 --- a/arch/powerpc/kernel/process.c
 +++ b/arch/powerpc/kernel/process.c
-@@ -676,8 +676,8 @@ void show_regs(struct pt_regs * regs)
+@@ -681,8 +681,8 @@ void show_regs(struct pt_regs * regs)
  	 * Lookup NIP late so we have the best change of getting the
  	 * above info out without failing
  	 */
@@ -4185,7 +4159,7 @@ index d817ab0..b23b18e 100644
  #endif
  	show_stack(current, (unsigned long *) regs->gpr[1]);
  	if (!user_mode(regs))
-@@ -1181,10 +1181,10 @@ void show_stack(struct task_struct *tsk, unsigned long *stack)
+@@ -1186,10 +1186,10 @@ void show_stack(struct task_struct *tsk, unsigned long *stack)
  		newsp = stack[0];
  		ip = stack[STACK_FRAME_LR_SAVE];
  		if (!firstframe || ip != lr) {
@@ -4198,7 +4172,7 @@ index d817ab0..b23b18e 100644
  				       (void *)current->ret_stack[curr_frame].ret);
  				curr_frame--;
  			}
-@@ -1204,7 +1204,7 @@ void show_stack(struct task_struct *tsk, unsigned long *stack)
+@@ -1209,7 +1209,7 @@ void show_stack(struct task_struct *tsk, unsigned long *stack)
  			struct pt_regs *regs = (struct pt_regs *)
  				(sp + STACK_FRAME_OVERHEAD);
  			lr = regs->link;
@@ -4207,7 +4181,7 @@ index d817ab0..b23b18e 100644
  			       regs->trap, (void *)regs->nip, (void *)lr);
  			firstframe = 1;
  		}
-@@ -1279,58 +1279,3 @@ void thread_info_cache_init(void)
+@@ -1282,58 +1282,3 @@ void thread_info_cache_init(void)
  }
  
  #endif /* THREAD_SHIFT < PAGE_SHIFT */
@@ -4267,7 +4241,7 @@ index d817ab0..b23b18e 100644
 -	return ret;
 -}
 diff --git a/arch/powerpc/kernel/ptrace.c b/arch/powerpc/kernel/ptrace.c
-index 5b43325..94a5bb4 100644
+index 8d8e028..c2aeb50 100644
 --- a/arch/powerpc/kernel/ptrace.c
 +++ b/arch/powerpc/kernel/ptrace.c
 @@ -1702,6 +1702,10 @@ long arch_ptrace(struct task_struct *child, long request,
@@ -4306,10 +4280,10 @@ index 5b43325..94a5bb4 100644
  
  	if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT)))
 diff --git a/arch/powerpc/kernel/signal_32.c b/arch/powerpc/kernel/signal_32.c
-index 836a5a1..27289a3 100644
+index 45eb998..0cb36bc 100644
 --- a/arch/powerpc/kernel/signal_32.c
 +++ b/arch/powerpc/kernel/signal_32.c
-@@ -859,7 +859,7 @@ int handle_rt_signal32(unsigned long sig, struct k_sigaction *ka,
+@@ -861,7 +861,7 @@ int handle_rt_signal32(unsigned long sig, struct k_sigaction *ka,
  	/* Save user registers on the stack */
  	frame = &rt_sf->uc.uc_mcontext;
  	addr = frame;
@@ -4319,10 +4293,10 @@ index 836a5a1..27289a3 100644
  			goto badframe;
  		regs->link = current->mm->context.vdso_base + vdso32_rt_sigtramp;
 diff --git a/arch/powerpc/kernel/signal_64.c b/arch/powerpc/kernel/signal_64.c
-index a50b5ec..547078a 100644
+index 2692efd..6673d2e 100644
 --- a/arch/powerpc/kernel/signal_64.c
 +++ b/arch/powerpc/kernel/signal_64.c
-@@ -429,7 +429,7 @@ int handle_rt_signal64(int signr, struct k_sigaction *ka, siginfo_t *info,
+@@ -430,7 +430,7 @@ int handle_rt_signal64(int signr, struct k_sigaction *ka, siginfo_t *info,
  	current->thread.fpscr.val = 0;
  
  	/* Set up to return from userspace. */
@@ -4332,10 +4306,10 @@ index a50b5ec..547078a 100644
  	} else {
  		err |= setup_trampoline(__NR_rt_sigreturn, &frame->tramp[0]);
 diff --git a/arch/powerpc/kernel/traps.c b/arch/powerpc/kernel/traps.c
-index c091527..5592625 100644
+index 1589723..cefe690 100644
 --- a/arch/powerpc/kernel/traps.c
 +++ b/arch/powerpc/kernel/traps.c
-@@ -131,6 +131,8 @@ static unsigned __kprobes long oops_begin(struct pt_regs *regs)
+@@ -133,6 +133,8 @@ static unsigned __kprobes long oops_begin(struct pt_regs *regs)
  	return flags;
  }
  
@@ -4344,7 +4318,7 @@ index c091527..5592625 100644
  static void __kprobes oops_end(unsigned long flags, struct pt_regs *regs,
  			       int signr)
  {
-@@ -178,6 +180,9 @@ static void __kprobes oops_end(unsigned long flags, struct pt_regs *regs,
+@@ -182,6 +184,9 @@ static void __kprobes oops_end(unsigned long flags, struct pt_regs *regs,
  		panic("Fatal exception in interrupt");
  	if (panic_on_oops)
  		panic("Fatal exception");
@@ -4355,10 +4329,10 @@ index c091527..5592625 100644
  }
  
 diff --git a/arch/powerpc/kernel/vdso.c b/arch/powerpc/kernel/vdso.c
-index 7d14bb6..1305601 100644
+index 9eb5b9b..e45498a 100644
 --- a/arch/powerpc/kernel/vdso.c
 +++ b/arch/powerpc/kernel/vdso.c
-@@ -35,6 +35,7 @@
+@@ -34,6 +34,7 @@
  #include <asm/firmware.h>
  #include <asm/vdso.h>
  #include <asm/vdso_datapage.h>
@@ -4366,7 +4340,7 @@ index 7d14bb6..1305601 100644
  
  #include "setup.h"
  
-@@ -219,7 +220,7 @@ int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
+@@ -218,7 +219,7 @@ int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
  	vdso_base = VDSO32_MBASE;
  #endif
  
@@ -4375,7 +4349,7 @@ index 7d14bb6..1305601 100644
  
  	/* vDSO has a problem and was disabled, just don't "enable" it for the
  	 * process
-@@ -239,7 +240,7 @@ int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
+@@ -238,7 +239,7 @@ int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
  	vdso_base = get_unmapped_area(NULL, vdso_base,
  				      (vdso_pages << PAGE_SHIFT) +
  				      ((VDSO_ALIGNMENT - 1) & PAGE_MASK),
@@ -4420,7 +4394,7 @@ index 5eea6f3..5d10396 100644
  EXPORT_SYMBOL(copy_in_user);
  
 diff --git a/arch/powerpc/mm/fault.c b/arch/powerpc/mm/fault.c
-index 2f0d1b0..36fb5cc 100644
+index 08ffcf5..a0ab912 100644
 --- a/arch/powerpc/mm/fault.c
 +++ b/arch/powerpc/mm/fault.c
 @@ -32,6 +32,10 @@
@@ -4434,15 +4408,7 @@ index 2f0d1b0..36fb5cc 100644
  
  #include <asm/firmware.h>
  #include <asm/page.h>
-@@ -43,6 +47,7 @@
- #include <asm/tlbflush.h>
- #include <asm/siginfo.h>
- #include <mm/mmu_decl.h>
-+#include <asm/ptrace.h>
- 
- #include "icswx.h"
- 
-@@ -68,6 +73,33 @@ static inline int notify_page_fault(struct pt_regs *regs)
+@@ -68,6 +72,33 @@ static inline int notify_page_fault(struct pt_regs *regs)
  }
  #endif
  
@@ -4476,7 +4442,7 @@ index 2f0d1b0..36fb5cc 100644
  /*
   * Check whether the instruction at regs->nip is a store using
   * an update addressing form which will update r1.
-@@ -138,7 +170,7 @@ int __kprobes do_page_fault(struct pt_regs *regs, unsigned long address,
+@@ -215,7 +246,7 @@ int __kprobes do_page_fault(struct pt_regs *regs, unsigned long address,
  	 * indicate errors in DSISR but can validly be set in SRR1.
  	 */
  	if (trap == 0x400)
@@ -4485,7 +4451,7 @@ index 2f0d1b0..36fb5cc 100644
  	else
  		is_write = error_code & DSISR_ISSTORE;
  #else
-@@ -276,7 +308,7 @@ good_area:
+@@ -366,7 +397,7 @@ good_area:
           * "undefined".  Of those that can be set, this is the only
           * one which seems bad.
           */
@@ -4494,7 +4460,7 @@ index 2f0d1b0..36fb5cc 100644
                  /* Guarded storage error. */
  		goto bad_area;
  #endif /* CONFIG_8xx */
-@@ -291,7 +323,7 @@ good_area:
+@@ -381,7 +412,7 @@ good_area:
  		 * processors use the same I/D cache coherency mechanism
  		 * as embedded.
  		 */
@@ -4503,7 +4469,7 @@ index 2f0d1b0..36fb5cc 100644
  			goto bad_area;
  #endif /* CONFIG_PPC_STD_MMU */
  
-@@ -360,6 +392,23 @@ bad_area:
+@@ -463,6 +494,23 @@ bad_area:
  bad_area_nosemaphore:
  	/* User mode accesses cause a SIGSEGV */
  	if (user_mode(regs)) {
@@ -4625,7 +4591,7 @@ index 73709f7..6b90313 100644
  	if (!fixed && addr) {
  		addr = _ALIGN_UP(addr, 1ul << pshift);
 diff --git a/arch/s390/include/asm/atomic.h b/arch/s390/include/asm/atomic.h
-index 8517d2a..d2738d4 100644
+index 748347b..81bc6c7 100644
 --- a/arch/s390/include/asm/atomic.h
 +++ b/arch/s390/include/asm/atomic.h
 @@ -326,6 +326,16 @@ static inline long long atomic64_dec_if_positive(atomic64_t *v)
@@ -4662,10 +4628,10 @@ index 2a30d5a..5e5586f 100644
  
  #define __read_mostly __attribute__((__section__(".data..read_mostly")))
 diff --git a/arch/s390/include/asm/elf.h b/arch/s390/include/asm/elf.h
-index 547f1a6..0b22b53 100644
+index c4ee39f..352881b 100644
 --- a/arch/s390/include/asm/elf.h
 +++ b/arch/s390/include/asm/elf.h
-@@ -162,8 +162,14 @@ extern unsigned int vdso_enabled;
+@@ -161,8 +161,14 @@ extern unsigned int vdso_enabled;
     the loader.  We need to make sure that it is out of the way of the program
     that it will "exec", and that there is sufficient room for the brk.  */
  
@@ -4682,7 +4648,7 @@ index 547f1a6..0b22b53 100644
  
  /* This yields a mask that user programs can use to figure out what
     instruction set this CPU supports. */
-@@ -211,7 +217,4 @@ struct linux_binprm;
+@@ -210,7 +216,4 @@ struct linux_binprm;
  #define ARCH_HAS_SETUP_ADDITIONAL_PAGES 1
  int arch_setup_additional_pages(struct linux_binprm *, int);
  
@@ -4690,24 +4656,23 @@ index 547f1a6..0b22b53 100644
 -#define arch_randomize_brk arch_randomize_brk
 -
  #endif
-diff --git a/arch/s390/include/asm/system.h b/arch/s390/include/asm/system.h
-index d73cc6b..1a296ad 100644
---- a/arch/s390/include/asm/system.h
-+++ b/arch/s390/include/asm/system.h
-@@ -260,7 +260,7 @@ extern void (*_machine_restart)(char *command);
- extern void (*_machine_halt)(void);
- extern void (*_machine_power_off)(void);
+diff --git a/arch/s390/include/asm/exec.h b/arch/s390/include/asm/exec.h
+index c4a93d6..4d2a9b4 100644
+--- a/arch/s390/include/asm/exec.h
++++ b/arch/s390/include/asm/exec.h
+@@ -7,6 +7,6 @@
+ #ifndef __ASM_EXEC_H
+ #define __ASM_EXEC_H
  
 -extern unsigned long arch_align_stack(unsigned long sp);
 +#define arch_align_stack(x) ((x) & ~0xfUL)
  
- static inline int tprot(unsigned long addr)
- {
+ #endif /* __ASM_EXEC_H */
 diff --git a/arch/s390/include/asm/uaccess.h b/arch/s390/include/asm/uaccess.h
-index 2b23885..e136e31 100644
+index 8f2cada..1cddd55 100644
 --- a/arch/s390/include/asm/uaccess.h
 +++ b/arch/s390/include/asm/uaccess.h
-@@ -235,6 +235,10 @@ static inline unsigned long __must_check
+@@ -236,6 +236,10 @@ static inline unsigned long __must_check
  copy_to_user(void __user *to, const void *from, unsigned long n)
  {
  	might_fault();
@@ -4718,7 +4683,7 @@ index 2b23885..e136e31 100644
  	if (access_ok(VERIFY_WRITE, to, n))
  		n = __copy_to_user(to, from, n);
  	return n;
-@@ -260,6 +264,9 @@ copy_to_user(void __user *to, const void *from, unsigned long n)
+@@ -261,6 +265,9 @@ copy_to_user(void __user *to, const void *from, unsigned long n)
  static inline unsigned long __must_check
  __copy_from_user(void *to, const void __user *from, unsigned long n)
  {
@@ -4728,7 +4693,7 @@ index 2b23885..e136e31 100644
  	if (__builtin_constant_p(n) && (n <= 256))
  		return uaccess.copy_from_user_small(n, from, to);
  	else
-@@ -294,6 +301,10 @@ copy_from_user(void *to, const void __user *from, unsigned long n)
+@@ -295,6 +302,10 @@ copy_from_user(void *to, const void __user *from, unsigned long n)
  	unsigned int sz = __compiletime_object_size(to);
  
  	might_fault();
@@ -4815,10 +4780,10 @@ index dfcb343..eda788a 100644
  		if (r_type == R_390_GOTPC)
  			*(unsigned int *) loc = val;
 diff --git a/arch/s390/kernel/process.c b/arch/s390/kernel/process.c
-index e795933..b32563c 100644
+index 60055ce..ee4b252 100644
 --- a/arch/s390/kernel/process.c
 +++ b/arch/s390/kernel/process.c
-@@ -323,39 +323,3 @@ unsigned long get_wchan(struct task_struct *p)
+@@ -316,39 +316,3 @@ unsigned long get_wchan(struct task_struct *p)
  	}
  	return 0;
  }
@@ -4859,7 +4824,7 @@ index e795933..b32563c 100644
 -	return ret;
 -}
 diff --git a/arch/s390/mm/mmap.c b/arch/s390/mm/mmap.c
-index a0155c0..34cc491 100644
+index 2857c48..d047481 100644
 --- a/arch/s390/mm/mmap.c
 +++ b/arch/s390/mm/mmap.c
 @@ -92,10 +92,22 @@ void arch_pick_mmap_layout(struct mm_struct *mm)
@@ -4885,7 +4850,7 @@ index a0155c0..34cc491 100644
  		mm->get_unmapped_area = arch_get_unmapped_area_topdown;
  		mm->unmap_area = arch_unmap_area_topdown;
  	}
-@@ -167,10 +179,22 @@ void arch_pick_mmap_layout(struct mm_struct *mm)
+@@ -166,10 +178,22 @@ void arch_pick_mmap_layout(struct mm_struct *mm)
  	 */
  	if (mmap_is_legacy()) {
  		mm->mmap_base = TASK_UNMAPPED_BASE;
@@ -4923,24 +4888,23 @@ index ae3d59f..f65f075 100644
 +#define L1_CACHE_BYTES		(_AC(1,UL) << L1_CACHE_SHIFT)
  
  #endif /* _ASM_SCORE_CACHE_H */
-diff --git a/arch/score/include/asm/system.h b/arch/score/include/asm/system.h
-index 589d5c7..669e274 100644
---- a/arch/score/include/asm/system.h
-+++ b/arch/score/include/asm/system.h
-@@ -17,7 +17,7 @@ do {								\
- #define finish_arch_switch(prev)	do {} while (0)
- 
- typedef void (*vi_handler_t)(void);
+diff --git a/arch/score/include/asm/exec.h b/arch/score/include/asm/exec.h
+index f9f3cd5..58ff438 100644
+--- a/arch/score/include/asm/exec.h
++++ b/arch/score/include/asm/exec.h
+@@ -1,6 +1,6 @@
+ #ifndef _ASM_SCORE_EXEC_H
+ #define _ASM_SCORE_EXEC_H
+ 
 -extern unsigned long arch_align_stack(unsigned long sp);
 +#define arch_align_stack(x) (x)
  
- #define mb()		barrier()
- #define rmb()		barrier()
+ #endif /* _ASM_SCORE_EXEC_H */
 diff --git a/arch/score/kernel/process.c b/arch/score/kernel/process.c
-index 25d0803..d6c8e36 100644
+index 2707023..1c2a3b7 100644
 --- a/arch/score/kernel/process.c
 +++ b/arch/score/kernel/process.c
-@@ -161,8 +161,3 @@ unsigned long get_wchan(struct task_struct *task)
+@@ -159,8 +159,3 @@ unsigned long get_wchan(struct task_struct *task)
  
  	return task_pt_regs(task)->cp0_epc;
  }
@@ -5058,7 +5022,7 @@ index eddcfb3..b117d90 100644
  VMLINUX_MAIN += $(drivers-y) $(net-y)
  
 diff --git a/arch/sparc/include/asm/atomic_64.h b/arch/sparc/include/asm/atomic_64.h
-index 9f421df..b81fc12 100644
+index ce35a1c..2e7b8f9 100644
 --- a/arch/sparc/include/asm/atomic_64.h
 +++ b/arch/sparc/include/asm/atomic_64.h
 @@ -14,18 +14,40 @@
@@ -5207,7 +5171,7 @@ index 9f421df..b81fc12 100644
  		if (likely(old == c))
  			break;
  		c = old;
-@@ -89,20 +166,35 @@ static inline int __atomic_add_unless(atomic_t *v, int a, int u)
+@@ -88,20 +165,35 @@ static inline int __atomic_add_unless(atomic_t *v, int a, int u)
  #define atomic64_cmpxchg(v, o, n) \
  	((__typeof__((v)->counter))cmpxchg(&((v)->counter), (o), (n)))
  #define atomic64_xchg(v, new) (xchg(&((v)->counter), new))
@@ -5326,7 +5290,7 @@ index 40b2d7a..22a665b 100644
  static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr)
  {
 diff --git a/arch/sparc/include/asm/pgtable_32.h b/arch/sparc/include/asm/pgtable_32.h
-index a790cc6..091ed94 100644
+index 3d71018..48a11c5 100644
 --- a/arch/sparc/include/asm/pgtable_32.h
 +++ b/arch/sparc/include/asm/pgtable_32.h
 @@ -45,6 +45,13 @@ BTFIXUPDEF_SIMM13(user_ptrs_per_pgd)
@@ -5611,7 +5575,7 @@ index 8303ac4..07f333d 100644
  }
  
 diff --git a/arch/sparc/include/asm/uaccess_64.h b/arch/sparc/include/asm/uaccess_64.h
-index 3e1449f..5293a0e 100644
+index a1091afb..380228e 100644
 --- a/arch/sparc/include/asm/uaccess_64.h
 +++ b/arch/sparc/include/asm/uaccess_64.h
 @@ -10,6 +10,7 @@
@@ -5620,9 +5584,9 @@ index 3e1449f..5293a0e 100644
  #include <linux/thread_info.h>
 +#include <linux/kernel.h>
  #include <asm/asi.h>
- #include <asm/system.h>
  #include <asm/spitfire.h>
-@@ -213,8 +214,15 @@ extern unsigned long copy_from_user_fixup(void *to, const void __user *from,
+ #include <asm-generic/uaccess-unaligned.h>
+@@ -212,8 +213,15 @@ extern unsigned long copy_from_user_fixup(void *to, const void __user *from,
  static inline unsigned long __must_check
  copy_from_user(void *to, const void __user *from, unsigned long size)
  {
@@ -5639,7 +5603,7 @@ index 3e1449f..5293a0e 100644
  	if (unlikely(ret))
  		ret = copy_from_user_fixup(to, from, size);
  
-@@ -230,8 +238,15 @@ extern unsigned long copy_to_user_fixup(void __user *to, const void *from,
+@@ -229,8 +237,15 @@ extern unsigned long copy_to_user_fixup(void __user *to, const void *from,
  static inline unsigned long __must_check
  copy_to_user(void __user *to, const void *from, unsigned long size)
  {
@@ -5670,10 +5634,10 @@ index cb85458..e063f17 100644
  extra-y     := head_$(BITS).o
  extra-y     += init_task.o
 diff --git a/arch/sparc/kernel/process_32.c b/arch/sparc/kernel/process_32.c
-index f793742..4d880af 100644
+index efa0754..74b03fe 100644
 --- a/arch/sparc/kernel/process_32.c
 +++ b/arch/sparc/kernel/process_32.c
-@@ -204,7 +204,7 @@ void __show_backtrace(unsigned long fp)
+@@ -200,7 +200,7 @@ void __show_backtrace(unsigned long fp)
  		       rw->ins[4], rw->ins[5],
  		       rw->ins[6],
  		       rw->ins[7]);
@@ -5682,7 +5646,7 @@ index f793742..4d880af 100644
  		rw = (struct reg_window32 *) rw->ins[6];
  	}
  	spin_unlock_irqrestore(&sparc_backtrace_lock, flags);
-@@ -271,14 +271,14 @@ void show_regs(struct pt_regs *r)
+@@ -267,14 +267,14 @@ void show_regs(struct pt_regs *r)
  
          printk("PSR: %08lx PC: %08lx NPC: %08lx Y: %08lx    %s\n",
  	       r->psr, r->pc, r->npc, r->y, print_tainted());
@@ -5699,7 +5663,7 @@ index f793742..4d880af 100644
  
  	printk("%%L: %08lx %08lx  %08lx %08lx  %08lx %08lx  %08lx %08lx\n",
  	       rw->locals[0], rw->locals[1], rw->locals[2], rw->locals[3],
-@@ -313,7 +313,7 @@ void show_stack(struct task_struct *tsk, unsigned long *_ksp)
+@@ -309,7 +309,7 @@ void show_stack(struct task_struct *tsk, unsigned long *_ksp)
  		rw = (struct reg_window32 *) fp;
  		pc = rw->ins[7];
  		printk("[%08lx : ", pc);
@@ -5709,10 +5673,10 @@ index f793742..4d880af 100644
  	} while (++count < 16);
  	printk("\n");
 diff --git a/arch/sparc/kernel/process_64.c b/arch/sparc/kernel/process_64.c
-index 39d8b05..d1a7d90 100644
+index aff0c72..9067b39 100644
 --- a/arch/sparc/kernel/process_64.c
 +++ b/arch/sparc/kernel/process_64.c
-@@ -182,14 +182,14 @@ static void show_regwindow(struct pt_regs *regs)
+@@ -179,14 +179,14 @@ static void show_regwindow(struct pt_regs *regs)
  	printk("i4: %016lx i5: %016lx i6: %016lx i7: %016lx\n",
  	       rwk->ins[4], rwk->ins[5], rwk->ins[6], rwk->ins[7]);
  	if (regs->tstate & TSTATE_PRIV)
@@ -5729,7 +5693,7 @@ index 39d8b05..d1a7d90 100644
  	printk("g0: %016lx g1: %016lx g2: %016lx g3: %016lx\n",
  	       regs->u_regs[0], regs->u_regs[1], regs->u_regs[2],
  	       regs->u_regs[3]);
-@@ -202,7 +202,7 @@ void show_regs(struct pt_regs *regs)
+@@ -199,7 +199,7 @@ void show_regs(struct pt_regs *regs)
  	printk("o4: %016lx o5: %016lx sp: %016lx ret_pc: %016lx\n",
  	       regs->u_regs[12], regs->u_regs[13], regs->u_regs[14],
  	       regs->u_regs[15]);
@@ -5738,7 +5702,7 @@ index 39d8b05..d1a7d90 100644
  	show_regwindow(regs);
  	show_stack(current, (unsigned long *) regs->u_regs[UREG_FP]);
  }
-@@ -287,7 +287,7 @@ void arch_trigger_all_cpu_backtrace(void)
+@@ -284,7 +284,7 @@ void arch_trigger_all_cpu_backtrace(void)
  		       ((tp && tp->task) ? tp->task->pid : -1));
  
  		if (gp->tstate & TSTATE_PRIV) {
@@ -5748,10 +5712,10 @@ index 39d8b05..d1a7d90 100644
  			       (void *) gp->o7,
  			       (void *) gp->i7,
 diff --git a/arch/sparc/kernel/ptrace_64.c b/arch/sparc/kernel/ptrace_64.c
-index 9388844..0075fd2 100644
+index 6f97c07..b1300ec 100644
 --- a/arch/sparc/kernel/ptrace_64.c
 +++ b/arch/sparc/kernel/ptrace_64.c
-@@ -1058,6 +1058,10 @@ long arch_ptrace(struct task_struct *child, long request,
+@@ -1057,6 +1057,10 @@ long arch_ptrace(struct task_struct *child, long request,
  	return ret;
  }
  
@@ -5762,7 +5726,7 @@ index 9388844..0075fd2 100644
  asmlinkage int syscall_trace_enter(struct pt_regs *regs)
  {
  	int ret = 0;
-@@ -1065,6 +1069,11 @@ asmlinkage int syscall_trace_enter(struct pt_regs *regs)
+@@ -1064,6 +1068,11 @@ asmlinkage int syscall_trace_enter(struct pt_regs *regs)
  	/* do the secure computing check first */
  	secure_computing(regs->u_regs[UREG_G1]);
  
@@ -5774,7 +5738,7 @@ index 9388844..0075fd2 100644
  	if (test_thread_flag(TIF_SYSCALL_TRACE))
  		ret = tracehook_report_syscall_entry(regs);
  
-@@ -1085,6 +1094,11 @@ asmlinkage int syscall_trace_enter(struct pt_regs *regs)
+@@ -1084,6 +1093,11 @@ asmlinkage int syscall_trace_enter(struct pt_regs *regs)
  
  asmlinkage void syscall_trace_leave(struct pt_regs *regs)
  {
@@ -5809,7 +5773,7 @@ index 42b282f..28ce9f2 100644
  		addr = vmm->vm_end;
  		if (flags & MAP_SHARED)
 diff --git a/arch/sparc/kernel/sys_sparc_64.c b/arch/sparc/kernel/sys_sparc_64.c
-index 232df99..cee1f9c 100644
+index 3ee51f1..2ba4913 100644
 --- a/arch/sparc/kernel/sys_sparc_64.c
 +++ b/arch/sparc/kernel/sys_sparc_64.c
 @@ -124,7 +124,7 @@ unsigned long arch_get_unmapped_area(struct file *filp, unsigned long addr, unsi
@@ -6009,10 +5973,10 @@ index 1d7e274..b39c527 100644
  	or	%g3, %g2, %g3
  	stx	%o0, [%sp + PTREGS_OFF + PT_V9_I0]
 diff --git a/arch/sparc/kernel/traps_32.c b/arch/sparc/kernel/traps_32.c
-index 591f20c..0f1b925 100644
+index d2de213..6b22bc3 100644
 --- a/arch/sparc/kernel/traps_32.c
 +++ b/arch/sparc/kernel/traps_32.c
-@@ -45,6 +45,8 @@ static void instruction_dump(unsigned long *pc)
+@@ -44,6 +44,8 @@ static void instruction_dump(unsigned long *pc)
  #define __SAVE __asm__ __volatile__("save %sp, -0x40, %sp\n\t")
  #define __RESTORE __asm__ __volatile__("restore %g0, %g0, %g0\n\t")
  
@@ -6021,7 +5985,7 @@ index 591f20c..0f1b925 100644
  void die_if_kernel(char *str, struct pt_regs *regs)
  {
  	static int die_counter;
-@@ -77,15 +79,17 @@ void die_if_kernel(char *str, struct pt_regs *regs)
+@@ -76,15 +78,17 @@ void die_if_kernel(char *str, struct pt_regs *regs)
  		      count++ < 30				&&
                        (((unsigned long) rw) >= PAGE_OFFSET)	&&
  		      !(((unsigned long) rw) & 0x7)) {
@@ -6042,7 +6006,7 @@ index 591f20c..0f1b925 100644
  }
  
 diff --git a/arch/sparc/kernel/traps_64.c b/arch/sparc/kernel/traps_64.c
-index 0cbdaa4..438e4c9 100644
+index c72fdf5..743a344 100644
 --- a/arch/sparc/kernel/traps_64.c
 +++ b/arch/sparc/kernel/traps_64.c
 @@ -75,7 +75,7 @@ static void dump_tl1_traplog(struct tl1_traplog *p)
@@ -6183,7 +6147,7 @@ index 0cbdaa4..438e4c9 100644
  }
  EXPORT_SYMBOL(die_if_kernel);
 diff --git a/arch/sparc/kernel/unaligned_64.c b/arch/sparc/kernel/unaligned_64.c
-index 76e4ac1..78f8bb1 100644
+index dae85bc..af1e19d 100644
 --- a/arch/sparc/kernel/unaligned_64.c
 +++ b/arch/sparc/kernel/unaligned_64.c
 @@ -279,7 +279,7 @@ static void log_unaligned(struct pt_regs *regs)
@@ -6483,7 +6447,7 @@ index 301421c..e2535d1 100644
  obj-$(CONFIG_SPARC64)   += ultra.o tlb.o tsb.o gup.o
  obj-y                   += fault_$(BITS).o
 diff --git a/arch/sparc/mm/fault_32.c b/arch/sparc/mm/fault_32.c
-index 8023fd7..c8e89e9 100644
+index df3155a..eb708b8 100644
 --- a/arch/sparc/mm/fault_32.c
 +++ b/arch/sparc/mm/fault_32.c
 @@ -21,6 +21,9 @@
@@ -6494,9 +6458,9 @@ index 8023fd7..c8e89e9 100644
 +#include <linux/pagemap.h>
 +#include <linux/compiler.h>
  
- #include <asm/system.h>
  #include <asm/page.h>
-@@ -208,6 +211,268 @@ static unsigned long compute_si_addr(struct pt_regs *regs, int text_fault)
+ #include <asm/pgtable.h>
+@@ -207,6 +210,268 @@ static unsigned long compute_si_addr(struct pt_regs *regs, int text_fault)
  	return safe_compute_effective_address(regs, insn);
  }
  
@@ -6765,7 +6729,7 @@ index 8023fd7..c8e89e9 100644
  static noinline void do_fault_siginfo(int code, int sig, struct pt_regs *regs,
  				      int text_fault)
  {
-@@ -280,6 +545,24 @@ good_area:
+@@ -282,6 +547,24 @@ good_area:
  		if(!(vma->vm_flags & VM_WRITE))
  			goto bad_area;
  	} else {
@@ -6791,7 +6755,7 @@ index 8023fd7..c8e89e9 100644
  		if(!(vma->vm_flags & (VM_READ | VM_EXEC)))
  			goto bad_area;
 diff --git a/arch/sparc/mm/fault_64.c b/arch/sparc/mm/fault_64.c
-index 504c062..6fcb9c6 100644
+index 1fe0429..aee2e87 100644
 --- a/arch/sparc/mm/fault_64.c
 +++ b/arch/sparc/mm/fault_64.c
 @@ -21,6 +21,9 @@
@@ -7271,7 +7235,7 @@ index 504c062..6fcb9c6 100644
  asmlinkage void __kprobes do_sparc64_fault(struct pt_regs *regs)
  {
  	struct mm_struct *mm = current->mm;
-@@ -340,6 +794,29 @@ asmlinkage void __kprobes do_sparc64_fault(struct pt_regs *regs)
+@@ -343,6 +797,29 @@ retry:
  	if (!vma)
  		goto bad_area;
  
@@ -7365,10 +7329,10 @@ index 07e1453..0a7d9e9 100644
  	}
  	if (mm->get_unmapped_area == arch_get_unmapped_area)
 diff --git a/arch/sparc/mm/init_32.c b/arch/sparc/mm/init_32.c
-index 7b00de6..78239f4 100644
+index c5f9021..7591bae 100644
 --- a/arch/sparc/mm/init_32.c
 +++ b/arch/sparc/mm/init_32.c
-@@ -316,6 +316,9 @@ extern void device_scan(void);
+@@ -315,6 +315,9 @@ extern void device_scan(void);
  pgprot_t PAGE_SHARED __read_mostly;
  EXPORT_SYMBOL(PAGE_SHARED);
  
@@ -7378,7 +7342,7 @@ index 7b00de6..78239f4 100644
  void __init paging_init(void)
  {
  	switch(sparc_cpu_model) {
-@@ -344,17 +347,17 @@ void __init paging_init(void)
+@@ -343,17 +346,17 @@ void __init paging_init(void)
  
  	/* Initialize the protection map with non-constant, MMU dependent values. */
  	protection_map[0] = PAGE_NONE;
@@ -7421,10 +7385,10 @@ index cbef74e..c38fead 100644
  	page_kernel = pgprot_val(SRMMU_PAGE_KERNEL);
  
 diff --git a/arch/tile/include/asm/atomic_64.h b/arch/tile/include/asm/atomic_64.h
-index 27fe667..36d474c 100644
+index f4500c6..889656c 100644
 --- a/arch/tile/include/asm/atomic_64.h
 +++ b/arch/tile/include/asm/atomic_64.h
-@@ -142,6 +142,16 @@ static inline long atomic64_add_unless(atomic64_t *v, long a, long u)
+@@ -143,6 +143,16 @@ static inline long atomic64_add_unless(atomic64_t *v, long a, long u)
  
  #define atomic64_inc_not_zero(v)	atomic64_add_unless((v), 1, 0)
  
@@ -7460,10 +7424,10 @@ index 392e533..536b092 100644
  /* bytes per L2 cache line */
  #define L2_CACHE_SHIFT		CHIP_L2_LOG_LINE_SIZE()
 diff --git a/arch/um/Makefile b/arch/um/Makefile
-index 28688e6..4c0aa1c 100644
+index 55c0661..86ad413 100644
 --- a/arch/um/Makefile
 +++ b/arch/um/Makefile
-@@ -61,6 +61,10 @@ USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -D__KERNEL__,,\
+@@ -62,6 +62,10 @@ USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -D__KERNEL__,,\
  	$(patsubst -I%,,$(KBUILD_CFLAGS)))) $(ARCH_INCLUDE) $(MODE_INCLUDE) \
  	$(filter -I%,$(CFLAGS)) -D_FILE_OFFSET_BITS=64 -idirafter include
  
@@ -7533,10 +7497,10 @@ index 0032f92..cd151e0 100644
  #ifdef CONFIG_64BIT
  #define set_pud(pudptr, pudval) set_64bit((u64 *) (pudptr), pud_val(pudval))
 diff --git a/arch/um/kernel/process.c b/arch/um/kernel/process.c
-index 69f2490..2634831 100644
+index 2b73ded..804f540 100644
 --- a/arch/um/kernel/process.c
 +++ b/arch/um/kernel/process.c
-@@ -408,22 +408,6 @@ int singlestepping(void * t)
+@@ -404,22 +404,6 @@ int singlestepping(void * t)
  	return 2;
  }
  
@@ -7577,10 +7541,10 @@ index ad8f795..2c7eec6 100644
  /*
   * Memory returned by kmalloc() may be used for DMA, so we must make
 diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
-index 5bed94e..fbcf200 100644
+index c9866b0..fe53aef 100644
 --- a/arch/x86/Kconfig
 +++ b/arch/x86/Kconfig
-@@ -226,7 +226,7 @@ config X86_HT
+@@ -229,7 +229,7 @@ config X86_HT
  
  config X86_32_LAZY_GS
  	def_bool y
@@ -7589,7 +7553,7 @@ index 5bed94e..fbcf200 100644
  
  config ARCH_HWEIGHT_CFLAGS
  	string
-@@ -1058,7 +1058,7 @@ choice
+@@ -1042,7 +1042,7 @@ choice
  
  config NOHIGHMEM
  	bool "off"
@@ -7598,7 +7562,7 @@ index 5bed94e..fbcf200 100644
  	---help---
  	  Linux can use up to 64 Gigabytes of physical memory on x86 systems.
  	  However, the address space of 32-bit x86 processors is only 4
-@@ -1095,7 +1095,7 @@ config NOHIGHMEM
+@@ -1079,7 +1079,7 @@ config NOHIGHMEM
  
  config HIGHMEM4G
  	bool "4GB"
@@ -7607,7 +7571,7 @@ index 5bed94e..fbcf200 100644
  	---help---
  	  Select this if you have a 32-bit processor and between 1 and 4
  	  gigabytes of physical RAM.
-@@ -1149,7 +1149,7 @@ config PAGE_OFFSET
+@@ -1133,7 +1133,7 @@ config PAGE_OFFSET
  	hex
  	default 0xB0000000 if VMSPLIT_3G_OPT
  	default 0x80000000 if VMSPLIT_2G
@@ -7616,7 +7580,7 @@ index 5bed94e..fbcf200 100644
  	default 0x40000000 if VMSPLIT_1G
  	default 0xC0000000
  	depends on X86_32
-@@ -1539,6 +1539,7 @@ config SECCOMP
+@@ -1523,6 +1523,7 @@ config SECCOMP
  
  config CC_STACKPROTECTOR
  	bool "Enable -fstack-protector buffer overflow detection (EXPERIMENTAL)"
@@ -7624,7 +7588,7 @@ index 5bed94e..fbcf200 100644
  	---help---
  	  This option turns on the -fstack-protector GCC feature. This
  	  feature puts, at the beginning of functions, a canary value on
-@@ -1596,6 +1597,7 @@ config KEXEC_JUMP
+@@ -1580,6 +1581,7 @@ config KEXEC_JUMP
  config PHYSICAL_START
  	hex "Physical address where the kernel is loaded" if (EXPERT || CRASH_DUMP)
  	default "0x1000000"
@@ -7632,7 +7596,7 @@ index 5bed94e..fbcf200 100644
  	---help---
  	  This gives the physical address where the kernel is loaded.
  
-@@ -1659,6 +1661,7 @@ config X86_NEED_RELOCS
+@@ -1643,6 +1645,7 @@ config X86_NEED_RELOCS
  config PHYSICAL_ALIGN
  	hex "Alignment value to which kernel should be aligned" if X86_32
  	default "0x1000000"
@@ -7640,7 +7604,7 @@ index 5bed94e..fbcf200 100644
  	range 0x2000 0x1000000
  	---help---
  	  This value puts the alignment restrictions on physical address
-@@ -1690,9 +1693,10 @@ config HOTPLUG_CPU
+@@ -1674,9 +1677,10 @@ config HOTPLUG_CPU
  	  Say N if you want to disable CPU hotplug.
  
  config COMPAT_VDSO
@@ -7653,10 +7617,10 @@ index 5bed94e..fbcf200 100644
  	  Map the 32-bit VDSO to the predictable old-style address too.
  
 diff --git a/arch/x86/Kconfig.cpu b/arch/x86/Kconfig.cpu
-index 3c57033..22d44aa 100644
+index 706e12e..62e4feb 100644
 --- a/arch/x86/Kconfig.cpu
 +++ b/arch/x86/Kconfig.cpu
-@@ -335,7 +335,7 @@ config X86_PPRO_FENCE
+@@ -334,7 +334,7 @@ config X86_PPRO_FENCE
  
  config X86_F00F_BUG
  	def_bool y
@@ -7665,7 +7629,7 @@ index 3c57033..22d44aa 100644
  
  config X86_INVD_BUG
  	def_bool y
-@@ -359,7 +359,7 @@ config X86_POPAD_OK
+@@ -358,7 +358,7 @@ config X86_POPAD_OK
  
  config X86_ALIGNMENT_16
  	def_bool y
@@ -7674,7 +7638,7 @@ index 3c57033..22d44aa 100644
  
  config X86_INTEL_USERCOPY
  	def_bool y
-@@ -405,7 +405,7 @@ config X86_CMPXCHG64
+@@ -404,7 +404,7 @@ config X86_CMPXCHG64
  # generates cmov.
  config X86_CMOV
  	def_bool y
@@ -7706,7 +7670,7 @@ index e46c214..7c72b55 100644
  	  This option helps catch unintended modifications to loadable
  	  kernel module's text and read-only data. It also prevents execution
 diff --git a/arch/x86/Makefile b/arch/x86/Makefile
-index 015f0c5..b405802 100644
+index b1c611e..2c1a823 100644
 --- a/arch/x86/Makefile
 +++ b/arch/x86/Makefile
 @@ -46,6 +46,7 @@ else
@@ -7717,7 +7681,7 @@ index 015f0c5..b405802 100644
          KBUILD_AFLAGS += -m64
          KBUILD_CFLAGS += -m64
  
-@@ -205,3 +206,12 @@ define archhelp
+@@ -222,3 +223,12 @@ define archhelp
    echo  '                  FDARGS="..."  arguments for the booted kernel'
    echo  '                  FDINITRD=file initrd for the booted kernel'
  endef
@@ -7767,7 +7731,7 @@ index 878e4b9..20537ab 100644
  
  #endif /* BOOT_BITOPS_H */
 diff --git a/arch/x86/boot/boot.h b/arch/x86/boot/boot.h
-index c7093bd..d4247ffe0 100644
+index 18997e5..83d9c67 100644
 --- a/arch/x86/boot/boot.h
 +++ b/arch/x86/boot/boot.h
 @@ -85,7 +85,7 @@ static inline void io_delay(void)
@@ -8316,6 +8280,64 @@ index 391d245..67f35c2 100644
 +	pax_force_retaddr 0, 1
  	ret;
  
+diff --git a/arch/x86/crypto/camellia-x86_64-asm_64.S b/arch/x86/crypto/camellia-x86_64-asm_64.S
+index 0b33743..7a56206 100644
+--- a/arch/x86/crypto/camellia-x86_64-asm_64.S
++++ b/arch/x86/crypto/camellia-x86_64-asm_64.S
+@@ -20,6 +20,8 @@
+  *
+  */
+ 
++#include <asm/alternative-asm.h>
++
+ .file "camellia-x86_64-asm_64.S"
+ .text
+ 
+@@ -229,12 +231,14 @@ __enc_done:
+ 	enc_outunpack(mov, RT1);
+ 
+ 	movq RRBP, %rbp;
++	pax_force_retaddr 0, 1
+ 	ret;
+ 
+ __enc_xor:
+ 	enc_outunpack(xor, RT1);
+ 
+ 	movq RRBP, %rbp;
++	pax_force_retaddr 0, 1
+ 	ret;
+ 
+ .global camellia_dec_blk;
+@@ -275,6 +279,7 @@ __dec_rounds16:
+ 	dec_outunpack();
+ 
+ 	movq RRBP, %rbp;
++	pax_force_retaddr 0, 1
+ 	ret;
+ 
+ /**********************************************************************
+@@ -468,6 +473,7 @@ __enc2_done:
+ 
+ 	movq RRBP, %rbp;
+ 	popq %rbx;
++	pax_force_retaddr 0, 1
+ 	ret;
+ 
+ __enc2_xor:
+@@ -475,6 +481,7 @@ __enc2_xor:
+ 
+ 	movq RRBP, %rbp;
+ 	popq %rbx;
++	pax_force_retaddr 0, 1
+ 	ret;
+ 
+ .global camellia_dec_blk_2way;
+@@ -517,4 +524,5 @@ __dec2_rounds16:
+ 
+ 	movq RRBP, %rbp;
+ 	movq RXOR, %rbx;
++	pax_force_retaddr 0, 1
+ 	ret;
 diff --git a/arch/x86/crypto/salsa20-x86_64-asm_64.S b/arch/x86/crypto/salsa20-x86_64-asm_64.S
 index 6214a9b..1f4fc9a 100644
 --- a/arch/x86/crypto/salsa20-x86_64-asm_64.S
@@ -8349,7 +8371,7 @@ index 6214a9b..1f4fc9a 100644
 +	pax_force_retaddr
  	ret
 diff --git a/arch/x86/crypto/serpent-sse2-x86_64-asm_64.S b/arch/x86/crypto/serpent-sse2-x86_64-asm_64.S
-index 7f24a15..9cd3ffe 100644
+index 3ee1ff0..cbc568b 100644
 --- a/arch/x86/crypto/serpent-sse2-x86_64-asm_64.S
 +++ b/arch/x86/crypto/serpent-sse2-x86_64-asm_64.S
 @@ -24,6 +24,8 @@
@@ -8361,7 +8383,7 @@ index 7f24a15..9cd3ffe 100644
  .file "serpent-sse2-x86_64-asm_64.S"
  .text
  
-@@ -695,12 +697,14 @@ __serpent_enc_blk_8way:
+@@ -692,12 +694,14 @@ __serpent_enc_blk_8way:
  	write_blocks(%rsi, RA1, RB1, RC1, RD1, RK0, RK1, RK2);
  	write_blocks(%rax, RA2, RB2, RC2, RD2, RK0, RK1, RK2);
  
@@ -8376,7 +8398,7 @@ index 7f24a15..9cd3ffe 100644
  	ret;
  
  .align 8
-@@ -758,4 +762,5 @@ serpent_dec_blk_8way:
+@@ -755,4 +759,5 @@ serpent_dec_blk_8way:
  	write_blocks(%rsi, RC1, RD1, RB1, RE1, RK0, RK1, RK2);
  	write_blocks(%rax, RC2, RD2, RB2, RE2, RK0, RK1, RK2);
  
@@ -8466,10 +8488,10 @@ index 7bcf3fc..f53832f 100644
 +	pax_force_retaddr 0, 1
  	ret
 diff --git a/arch/x86/ia32/ia32_aout.c b/arch/x86/ia32/ia32_aout.c
-index 39e4909..887aa7e 100644
+index 07b3a68..bd2a388 100644
 --- a/arch/x86/ia32/ia32_aout.c
 +++ b/arch/x86/ia32/ia32_aout.c
-@@ -162,6 +162,8 @@ static int aout_core_dump(long signr, struct pt_regs *regs, struct file *file,
+@@ -159,6 +159,8 @@ static int aout_core_dump(long signr, struct pt_regs *regs, struct file *file,
  	unsigned long dump_start, dump_size;
  	struct user32 dump;
  
@@ -8479,10 +8501,10 @@ index 39e4909..887aa7e 100644
  	set_fs(KERNEL_DS);
  	has_dumped = 1;
 diff --git a/arch/x86/ia32/ia32_signal.c b/arch/x86/ia32/ia32_signal.c
-index 6557769..ef6ae89 100644
+index a69245b..6d145f4 100644
 --- a/arch/x86/ia32/ia32_signal.c
 +++ b/arch/x86/ia32/ia32_signal.c
-@@ -169,7 +169,7 @@ asmlinkage long sys32_sigaltstack(const stack_ia32_t __user *uss_ptr,
+@@ -168,7 +168,7 @@ asmlinkage long sys32_sigaltstack(const stack_ia32_t __user *uss_ptr,
  	}
  	seg = get_fs();
  	set_fs(KERNEL_DS);
@@ -8491,7 +8513,7 @@ index 6557769..ef6ae89 100644
  	set_fs(seg);
  	if (ret >= 0 && uoss_ptr)  {
  		if (!access_ok(VERIFY_WRITE, uoss_ptr, sizeof(stack_ia32_t)))
-@@ -370,7 +370,7 @@ static int ia32_setup_sigcontext(struct sigcontext_ia32 __user *sc,
+@@ -369,7 +369,7 @@ static int ia32_setup_sigcontext(struct sigcontext_ia32 __user *sc,
   */
  static void __user *get_sigframe(struct k_sigaction *ka, struct pt_regs *regs,
  				 size_t frame_size,
@@ -8500,7 +8522,7 @@ index 6557769..ef6ae89 100644
  {
  	unsigned long sp;
  
-@@ -391,7 +391,7 @@ static void __user *get_sigframe(struct k_sigaction *ka, struct pt_regs *regs,
+@@ -390,7 +390,7 @@ static void __user *get_sigframe(struct k_sigaction *ka, struct pt_regs *regs,
  
  	if (used_math()) {
  		sp = sp - sig_xstate_ia32_size;
@@ -8509,7 +8531,7 @@ index 6557769..ef6ae89 100644
  		if (save_i387_xstate_ia32(*fpstate) < 0)
  			return (void __user *) -1L;
  	}
-@@ -399,7 +399,7 @@ static void __user *get_sigframe(struct k_sigaction *ka, struct pt_regs *regs,
+@@ -398,7 +398,7 @@ static void __user *get_sigframe(struct k_sigaction *ka, struct pt_regs *regs,
  	sp -= frame_size;
  	/* Align the stack pointer according to the i386 ABI,
  	 * i.e. so that on function entry ((sp + 4) & 15) == 0. */
@@ -8518,7 +8540,7 @@ index 6557769..ef6ae89 100644
  	return (void __user *) sp;
  }
  
-@@ -457,7 +457,7 @@ int ia32_setup_frame(int sig, struct k_sigaction *ka,
+@@ -456,7 +456,7 @@ int ia32_setup_frame(int sig, struct k_sigaction *ka,
  		 * These are actually not used anymore, but left because some
  		 * gdb versions depend on them as a marker.
  		 */
@@ -8527,7 +8549,7 @@ index 6557769..ef6ae89 100644
  	} put_user_catch(err);
  
  	if (err)
-@@ -499,7 +499,7 @@ int ia32_setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
+@@ -498,7 +498,7 @@ int ia32_setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
  		0xb8,
  		__NR_ia32_rt_sigreturn,
  		0x80cd,
@@ -8536,7 +8558,7 @@ index 6557769..ef6ae89 100644
  	};
  
  	frame = get_sigframe(ka, regs, sizeof(*frame), &fpstate);
-@@ -529,16 +529,18 @@ int ia32_setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
+@@ -528,16 +528,18 @@ int ia32_setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
  
  		if (ka->sa.sa_flags & SA_RESTORER)
  			restorer = ka->sa.sa_restorer;
@@ -8856,7 +8878,7 @@ index e3e7340..05ed805 100644
  	RESTORE_REST
  	cmpq $(IA32_NR_syscalls-1),%rax
 diff --git a/arch/x86/ia32/sys_ia32.c b/arch/x86/ia32/sys_ia32.c
-index f6f5c53..b358b28 100644
+index aec2202..f76174e 100644
 --- a/arch/x86/ia32/sys_ia32.c
 +++ b/arch/x86/ia32/sys_ia32.c
 @@ -69,8 +69,8 @@ asmlinkage long sys32_ftruncate64(unsigned int fd, unsigned long offset_low,
@@ -8870,18 +8892,7 @@ index f6f5c53..b358b28 100644
  	SET_UID(uid, stat->uid);
  	SET_GID(gid, stat->gid);
  	if (!access_ok(VERIFY_WRITE, ubuf, sizeof(struct stat64)) ||
-@@ -308,8 +308,8 @@ asmlinkage long sys32_rt_sigprocmask(int how, compat_sigset_t __user *set,
- 	}
- 	set_fs(KERNEL_DS);
- 	ret = sys_rt_sigprocmask(how,
--				 set ? (sigset_t __user *)&s : NULL,
--				 oset ? (sigset_t __user *)&s : NULL,
-+				 set ? (sigset_t __force_user *)&s : NULL,
-+				 oset ? (sigset_t __force_user *)&s : NULL,
- 				 sigsetsize);
- 	set_fs(old_fs);
- 	if (ret)
-@@ -332,7 +332,7 @@ asmlinkage long sys32_alarm(unsigned int seconds)
+@@ -292,7 +292,7 @@ asmlinkage long sys32_alarm(unsigned int seconds)
  	return alarm_setitimer(seconds);
  }
  
@@ -8890,7 +8901,7 @@ index f6f5c53..b358b28 100644
  			      int options)
  {
  	return compat_sys_wait4(pid, stat_addr, options, NULL);
-@@ -353,7 +353,7 @@ asmlinkage long sys32_sched_rr_get_interval(compat_pid_t pid,
+@@ -313,7 +313,7 @@ asmlinkage long sys32_sched_rr_get_interval(compat_pid_t pid,
  	mm_segment_t old_fs = get_fs();
  
  	set_fs(KERNEL_DS);
@@ -8899,7 +8910,7 @@ index f6f5c53..b358b28 100644
  	set_fs(old_fs);
  	if (put_compat_timespec(&t, interval))
  		return -EFAULT;
-@@ -369,7 +369,7 @@ asmlinkage long sys32_rt_sigpending(compat_sigset_t __user *set,
+@@ -329,7 +329,7 @@ asmlinkage long sys32_rt_sigpending(compat_sigset_t __user *set,
  	mm_segment_t old_fs = get_fs();
  
  	set_fs(KERNEL_DS);
@@ -8908,7 +8919,7 @@ index f6f5c53..b358b28 100644
  	set_fs(old_fs);
  	if (!ret) {
  		switch (_NSIG_WORDS) {
-@@ -394,7 +394,7 @@ asmlinkage long sys32_rt_sigqueueinfo(int pid, int sig,
+@@ -354,7 +354,7 @@ asmlinkage long sys32_rt_sigqueueinfo(int pid, int sig,
  	if (copy_siginfo_from_user32(&info, uinfo))
  		return -EFAULT;
  	set_fs(KERNEL_DS);
@@ -8917,7 +8928,7 @@ index f6f5c53..b358b28 100644
  	set_fs(old_fs);
  	return ret;
  }
-@@ -439,7 +439,7 @@ asmlinkage long sys32_sendfile(int out_fd, int in_fd,
+@@ -399,7 +399,7 @@ asmlinkage long sys32_sendfile(int out_fd, int in_fd,
  		return -EFAULT;
  
  	set_fs(KERNEL_DS);
@@ -8977,7 +8988,7 @@ index 952bd01..7692c6f 100644
  	.long \orig - .
  	.long \alt - .
 diff --git a/arch/x86/include/asm/alternative.h b/arch/x86/include/asm/alternative.h
-index 37ad100..7d47faa 100644
+index 49331be..9706065 100644
 --- a/arch/x86/include/asm/alternative.h
 +++ b/arch/x86/include/asm/alternative.h
 @@ -89,7 +89,7 @@ static inline int alternatives_text_reserved(void *start, void *end)
@@ -8990,10 +9001,10 @@ index 37ad100..7d47faa 100644
        ".previous"
  
 diff --git a/arch/x86/include/asm/apic.h b/arch/x86/include/asm/apic.h
-index 3ab9bdd..238033e 100644
+index d854101..f6ea947 100644
 --- a/arch/x86/include/asm/apic.h
 +++ b/arch/x86/include/asm/apic.h
-@@ -45,7 +45,7 @@ static inline void generic_apic_probe(void)
+@@ -44,7 +44,7 @@ static inline void generic_apic_probe(void)
  
  #ifdef CONFIG_X86_LOCAL_APIC
  
@@ -9434,7 +9445,7 @@ index 58cb6d4..ca9010d 100644
  /*
   * atomic_dec_if_positive - decrement by 1 if old value positive
 diff --git a/arch/x86/include/asm/atomic64_32.h b/arch/x86/include/asm/atomic64_32.h
-index fa13f0e..27c2e08 100644
+index 1981199..36b9dfb 100644
 --- a/arch/x86/include/asm/atomic64_32.h
 +++ b/arch/x86/include/asm/atomic64_32.h
 @@ -12,6 +12,14 @@ typedef struct {
@@ -9451,8 +9462,40 @@ index fa13f0e..27c2e08 100644
 +
  #define ATOMIC64_INIT(val)	{ (val) }
  
- #ifdef CONFIG_X86_CMPXCHG64
-@@ -38,6 +46,21 @@ static inline long long atomic64_cmpxchg(atomic64_t *v, long long o, long long n
+ #define __ATOMIC64_DECL(sym) void atomic64_##sym(atomic64_t *, ...)
+@@ -37,21 +45,31 @@ typedef struct {
+ 	ATOMIC64_DECL_ONE(sym##_386)
+ 
+ ATOMIC64_DECL_ONE(add_386);
++ATOMIC64_DECL_ONE(add_unchecked_386);
+ ATOMIC64_DECL_ONE(sub_386);
++ATOMIC64_DECL_ONE(sub_unchecked_386);
+ ATOMIC64_DECL_ONE(inc_386);
++ATOMIC64_DECL_ONE(inc_unchecked_386);
+ ATOMIC64_DECL_ONE(dec_386);
++ATOMIC64_DECL_ONE(dec_unchecked_386);
+ #endif
+ 
+ #define alternative_atomic64(f, out, in...) \
+ 	__alternative_atomic64(f, f, ASM_OUTPUT2(out), ## in)
+ 
+ ATOMIC64_DECL(read);
++ATOMIC64_DECL(read_unchecked);
+ ATOMIC64_DECL(set);
++ATOMIC64_DECL(set_unchecked);
+ ATOMIC64_DECL(xchg);
+ ATOMIC64_DECL(add_return);
++ATOMIC64_DECL(add_return_unchecked);
+ ATOMIC64_DECL(sub_return);
++ATOMIC64_DECL(sub_return_unchecked);
+ ATOMIC64_DECL(inc_return);
++ATOMIC64_DECL(inc_return_unchecked);
+ ATOMIC64_DECL(dec_return);
++ATOMIC64_DECL(dec_return_unchecked);
+ ATOMIC64_DECL(dec_if_positive);
+ ATOMIC64_DECL(inc_not_zero);
+ ATOMIC64_DECL(add_unless);
+@@ -77,6 +95,21 @@ static inline long long atomic64_cmpxchg(atomic64_t *v, long long o, long long n
  }
  
  /**
@@ -9474,7 +9517,7 @@ index fa13f0e..27c2e08 100644
   * atomic64_xchg - xchg atomic64 variable
   * @v: pointer to type atomic64_t
   * @n: value to assign
-@@ -77,6 +100,24 @@ static inline void atomic64_set(atomic64_t *v, long long i)
+@@ -112,6 +145,22 @@ static inline void atomic64_set(atomic64_t *v, long long i)
  }
  
  /**
@@ -9488,18 +9531,16 @@ index fa13f0e..27c2e08 100644
 +{
 +	unsigned high = (unsigned)(i >> 32);
 +	unsigned low = (unsigned)i;
-+	asm volatile(ATOMIC64_ALTERNATIVE(set)
-+		     : "+b" (low), "+c" (high)
-+		     : "S" (v)
-+		     : "eax", "edx", "memory"
-+		     );
++	alternative_atomic64(set, /* no output */,
++			     "S" (v), "b" (low), "c" (high)
++			     : "eax", "edx", "memory");
 +}
 +
 +/**
   * atomic64_read - read atomic64 variable
   * @v: pointer to type atomic64_t
   *
-@@ -93,6 +134,22 @@ static inline long long atomic64_read(const atomic64_t *v)
+@@ -125,6 +174,19 @@ static inline long long atomic64_read(const atomic64_t *v)
   }
  
  /**
@@ -9511,10 +9552,7 @@ index fa13f0e..27c2e08 100644
 +static inline long long atomic64_read_unchecked(atomic64_unchecked_t *v)
 +{
 +	long long r;
-+	asm volatile(ATOMIC64_ALTERNATIVE(read_unchecked)
-+		     : "=A" (r), "+c" (v)
-+		     : : "memory"
-+		     );
++	alternative_atomic64(read, "=&A" (r), "c" (v) : "memory");
 +	return r;
 + }
 +
@@ -9522,7 +9560,7 @@ index fa13f0e..27c2e08 100644
   * atomic64_add_return - add and return
   * @i: integer value to add
   * @v: pointer to type atomic64_t
-@@ -108,6 +165,22 @@ static inline long long atomic64_add_return(long long i, atomic64_t *v)
+@@ -139,6 +201,21 @@ static inline long long atomic64_add_return(long long i, atomic64_t *v)
  	return i;
  }
  
@@ -9535,35 +9573,31 @@ index fa13f0e..27c2e08 100644
 + */
 +static inline long long atomic64_add_return_unchecked(long long i, atomic64_unchecked_t *v)
 +{
-+	asm volatile(ATOMIC64_ALTERNATIVE(add_return_unchecked)
-+		     : "+A" (i), "+c" (v)
-+		     : : "memory"
-+		     );
++	alternative_atomic64(add_return_unchecked,
++			     ASM_OUTPUT2("+A" (i), "+c" (v)),
++			     ASM_NO_INPUT_CLOBBER("memory"));
 +	return i;
 +}
 +
  /*
   * Other variants with different arithmetic operators:
   */
-@@ -131,6 +204,17 @@ static inline long long atomic64_inc_return(atomic64_t *v)
+@@ -158,6 +235,14 @@ static inline long long atomic64_inc_return(atomic64_t *v)
  	return a;
  }
  
 +static inline long long atomic64_inc_return_unchecked(atomic64_unchecked_t *v)
 +{
 +	long long a;
-+	asm volatile(ATOMIC64_ALTERNATIVE(inc_return_unchecked)
-+		     : "=A" (a)
-+		     : "S" (v)
-+		     : "memory", "ecx"
-+		     );
++	alternative_atomic64(inc_return_unchecked, "=&A" (a),
++			     "S" (v) : "memory", "ecx");
 +	return a;
 +}
 +
  static inline long long atomic64_dec_return(atomic64_t *v)
  {
  	long long a;
-@@ -159,6 +243,22 @@ static inline long long atomic64_add(long long i, atomic64_t *v)
+@@ -182,6 +267,21 @@ static inline long long atomic64_add(long long i, atomic64_t *v)
  }
  
  /**
@@ -9575,10 +9609,9 @@ index fa13f0e..27c2e08 100644
 + */
 +static inline long long atomic64_add_unchecked(long long i, atomic64_unchecked_t *v)
 +{
-+	asm volatile(ATOMIC64_ALTERNATIVE_(add_unchecked, add_return_unchecked)
-+		     : "+A" (i), "+c" (v)
-+		     : : "memory"
-+		     );
++	__alternative_atomic64(add_unchecked, add_return_unchecked,
++			       ASM_OUTPUT2("+A" (i), "+c" (v)),
++			       ASM_NO_INPUT_CLOBBER("memory"));
 +	return i;
 +}
 +
@@ -9952,10 +9985,10 @@ index 48f99f1..d78ebf9 100644
  #ifdef CONFIG_X86_VSMP
  #ifdef CONFIG_SMP
 diff --git a/arch/x86/include/asm/cacheflush.h b/arch/x86/include/asm/cacheflush.h
-index 4e12668..501d239 100644
+index 9863ee3..4a1f8e1 100644
 --- a/arch/x86/include/asm/cacheflush.h
 +++ b/arch/x86/include/asm/cacheflush.h
-@@ -26,7 +26,7 @@ static inline unsigned long get_page_memtype(struct page *pg)
+@@ -27,7 +27,7 @@ static inline unsigned long get_page_memtype(struct page *pg)
  	unsigned long pg_flags = pg->flags & _PGMT_MASK;
  
  	if (pg_flags == _PGMT_DEFAULT)
@@ -10064,10 +10097,10 @@ index 99480e5..d81165b 100644
  	({								\
  	        __typeof__ (*(ptr)) __ret = (inc);			\
 diff --git a/arch/x86/include/asm/cpufeature.h b/arch/x86/include/asm/cpufeature.h
-index 8d67d42..183d0eb 100644
+index 340ee49..4238ced 100644
 --- a/arch/x86/include/asm/cpufeature.h
 +++ b/arch/x86/include/asm/cpufeature.h
-@@ -367,7 +367,7 @@ static __always_inline __pure bool __static_cpu_has(u16 bit)
+@@ -371,7 +371,7 @@ static __always_inline __pure bool __static_cpu_has(u16 bit)
  			     ".section .discard,\"aw\",@progbits\n"
  			     " .byte 0xff + (4f-3f) - (2b-1b)\n" /* size check */
  			     ".previous\n"
@@ -10301,10 +10334,10 @@ index 3778256..c5d4fce 100644
  
  #define BIOS_ROM_BASE		0xffe00000
 diff --git a/arch/x86/include/asm/elf.h b/arch/x86/include/asm/elf.h
-index 5f962df..7289f09 100644
+index 5939f44..193f4a7 100644
 --- a/arch/x86/include/asm/elf.h
 +++ b/arch/x86/include/asm/elf.h
-@@ -238,7 +238,25 @@ extern int force_personality32;
+@@ -243,7 +243,25 @@ extern int force_personality32;
     the loader.  We need to make sure that it is out of the way of the program
     that it will "exec", and that there is sufficient room for the brk.  */
  
@@ -10330,7 +10363,7 @@ index 5f962df..7289f09 100644
  
  /* This yields a mask that user programs can use to figure out what
     instruction set this CPU supports.  This could be done in user space,
-@@ -291,9 +309,7 @@ do {									\
+@@ -296,16 +314,12 @@ do {									\
  
  #define ARCH_DLINFO							\
  do {									\
@@ -10340,8 +10373,16 @@ index 5f962df..7289f09 100644
 +	NEW_AUX_ENT(AT_SYSINFO_EHDR, current->mm->context.vdso);	\
  } while (0)
  
+ #define ARCH_DLINFO_X32							\
+ do {									\
+-	if (vdso_enabled)						\
+-		NEW_AUX_ENT(AT_SYSINFO_EHDR,				\
+-			    (unsigned long)current->mm->context.vdso);	\
++	NEW_AUX_ENT(AT_SYSINFO_EHDR, current->mm->context.vdso);	\
+ } while (0)
+ 
  #define AT_SYSINFO		32
-@@ -304,7 +320,7 @@ do {									\
+@@ -320,7 +334,7 @@ else									\
  
  #endif /* !CONFIG_X86_32 */
  
@@ -10350,7 +10391,7 @@ index 5f962df..7289f09 100644
  
  #define VDSO_ENTRY							\
  	((unsigned long)VDSO32_SYMBOL(VDSO_CURRENT_BASE, vsyscall))
-@@ -318,9 +334,6 @@ extern int arch_setup_additional_pages(struct linux_binprm *bprm,
+@@ -336,9 +350,6 @@ extern int x32_setup_additional_pages(struct linux_binprm *bprm,
  extern int syscall32_setup_pages(struct linux_binprm *, int exstack);
  #define compat_arch_setup_additional_pages	syscall32_setup_pages
  
@@ -10372,12 +10413,49 @@ index cc70c1c..d96d011 100644
 +extern void machine_emergency_restart(void) __noreturn;
  
  #endif /* _ASM_X86_EMERGENCY_RESTART_H */
+diff --git a/arch/x86/include/asm/fpu-internal.h b/arch/x86/include/asm/fpu-internal.h
+index 4fa8815..71b121a 100644
+--- a/arch/x86/include/asm/fpu-internal.h
++++ b/arch/x86/include/asm/fpu-internal.h
+@@ -86,6 +86,11 @@ static inline int fxrstor_checking(struct i387_fxsave_struct *fx)
+ {
+ 	int err;
+ 
++#if defined(CONFIG_X86_64) && defined(CONFIG_PAX_MEMORY_UDEREF)
++	if ((unsigned long)fx < PAX_USER_SHADOW_BASE)
++		fx = (struct i387_fxsave_struct __user *)((void *)fx + PAX_USER_SHADOW_BASE);
++#endif
++
+ 	/* See comment in fxsave() below. */
+ #ifdef CONFIG_AS_FXSAVEQ
+ 	asm volatile("1:  fxrstorq %[fx]\n\t"
+@@ -115,6 +120,11 @@ static inline int fxsave_user(struct i387_fxsave_struct __user *fx)
+ {
+ 	int err;
+ 
++#if defined(CONFIG_X86_64) && defined(CONFIG_PAX_MEMORY_UDEREF)
++	if ((unsigned long)fx < PAX_USER_SHADOW_BASE)
++		fx = (struct i387_fxsave_struct __user *)((void __user *)fx + PAX_USER_SHADOW_BASE);
++#endif
++
+ 	/*
+ 	 * Clear the bytes not touched by the fxsave and reserved
+ 	 * for the SW usage.
+@@ -271,7 +281,7 @@ static inline int restore_fpu_checking(struct task_struct *tsk)
+ 		"emms\n\t"		/* clear stack tags */
+ 		"fildl %P[addr]",	/* set F?P to defined value */
+ 		X86_FEATURE_FXSAVE_LEAK,
+-		[addr] "m" (tsk->thread.fpu.has_fpu));
++		[addr] "m" (init_tss[smp_processor_id()].x86_tss.sp0));
+ 
+ 	return fpu_restore_checking(&tsk->thread.fpu);
+ }
 diff --git a/arch/x86/include/asm/futex.h b/arch/x86/include/asm/futex.h
-index d09bb03..4ea4194 100644
+index 71ecbcb..bac10b7 100644
 --- a/arch/x86/include/asm/futex.h
 +++ b/arch/x86/include/asm/futex.h
-@@ -12,16 +12,18 @@
- #include <asm/system.h>
+@@ -11,16 +11,18 @@
+ #include <asm/processor.h>
  
  #define __futex_atomic_op1(insn, ret, oldval, uaddr, oparg)	\
 +	typecheck(u32 __user *, uaddr);				\
@@ -10396,7 +10474,7 @@ index d09bb03..4ea4194 100644
  	asm volatile("1:\tmovl	%2, %0\n"			\
  		     "\tmovl\t%0, %3\n"				\
  		     "\t" insn "\n"				\
-@@ -34,7 +36,7 @@
+@@ -33,7 +35,7 @@
  		     _ASM_EXTABLE(1b, 4b)			\
  		     _ASM_EXTABLE(2b, 4b)			\
  		     : "=&a" (oldval), "=&r" (ret),		\
@@ -10405,7 +10483,7 @@ index d09bb03..4ea4194 100644
  		     : "r" (oparg), "i" (-EFAULT), "1" (0))
  
  static inline int futex_atomic_op_inuser(int encoded_op, u32 __user *uaddr)
-@@ -61,10 +63,10 @@ static inline int futex_atomic_op_inuser(int encoded_op, u32 __user *uaddr)
+@@ -60,10 +62,10 @@ static inline int futex_atomic_op_inuser(int encoded_op, u32 __user *uaddr)
  
  	switch (op) {
  	case FUTEX_OP_SET:
@@ -10418,7 +10496,7 @@ index d09bb03..4ea4194 100644
  				   uaddr, oparg);
  		break;
  	case FUTEX_OP_OR:
-@@ -123,13 +125,13 @@ static inline int futex_atomic_cmpxchg_inatomic(u32 *uval, u32 __user *uaddr,
+@@ -122,13 +124,13 @@ static inline int futex_atomic_cmpxchg_inatomic(u32 *uval, u32 __user *uaddr,
  	if (!access_ok(VERIFY_WRITE, uaddr, sizeof(u32)))
  		return -EFAULT;
  
@@ -10449,52 +10527,6 @@ index eb92a6e..b98b2f4 100644
  
  /* EISA */
  extern void eisa_set_level_irq(unsigned int irq);
-diff --git a/arch/x86/include/asm/i387.h b/arch/x86/include/asm/i387.h
-index 2479049..3fb9795 100644
---- a/arch/x86/include/asm/i387.h
-+++ b/arch/x86/include/asm/i387.h
-@@ -93,6 +93,11 @@ static inline int fxrstor_checking(struct i387_fxsave_struct *fx)
- {
- 	int err;
- 
-+#if defined(CONFIG_X86_64) && defined(CONFIG_PAX_MEMORY_UDEREF)
-+	if ((unsigned long)fx < PAX_USER_SHADOW_BASE)
-+		fx = (struct i387_fxsave_struct __user *)((void *)fx + PAX_USER_SHADOW_BASE);
-+#endif
-+
- 	/* See comment in fxsave() below. */
- #ifdef CONFIG_AS_FXSAVEQ
- 	asm volatile("1:  fxrstorq %[fx]\n\t"
-@@ -122,6 +127,11 @@ static inline int fxsave_user(struct i387_fxsave_struct __user *fx)
- {
- 	int err;
- 
-+#if defined(CONFIG_X86_64) && defined(CONFIG_PAX_MEMORY_UDEREF)
-+	if ((unsigned long)fx < PAX_USER_SHADOW_BASE)
-+		fx = (struct i387_fxsave_struct __user *)((void __user *)fx + PAX_USER_SHADOW_BASE);
-+#endif
-+
- 	/*
- 	 * Clear the bytes not touched by the fxsave and reserved
- 	 * for the SW usage.
-@@ -278,7 +288,7 @@ static inline int restore_fpu_checking(struct task_struct *tsk)
- 		"emms\n\t"	  	/* clear stack tags */
- 		"fildl %P[addr]",	/* set F?P to defined value */
- 		X86_FEATURE_FXSAVE_LEAK,
--		[addr] "m" (tsk->thread.fpu.has_fpu));
-+		[addr] "m" (init_tss[smp_processor_id()].x86_tss.sp0));
- 
- 	return fpu_restore_checking(&tsk->thread.fpu);
- }
-@@ -445,7 +455,7 @@ static inline bool interrupted_kernel_fpu_idle(void)
- static inline bool interrupted_user_mode(void)
- {
- 	struct pt_regs *regs = get_irq_regs();
--	return regs && user_mode_vm(regs);
-+	return regs && user_mode(regs);
- }
- 
- /*
 diff --git a/arch/x86/include/asm/io.h b/arch/x86/include/asm/io.h
 index d8e8eef..99f81ae 100644
 --- a/arch/x86/include/asm/io.h
@@ -10554,10 +10586,10 @@ index 5478825..839e88c 100644
  #define flush_insn_slot(p)	do { } while (0)
  
 diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h
-index 52d6640..a013b87 100644
+index e216ba0..453f6ec 100644
 --- a/arch/x86/include/asm/kvm_host.h
 +++ b/arch/x86/include/asm/kvm_host.h
-@@ -663,7 +663,7 @@ struct kvm_x86_ops {
+@@ -679,7 +679,7 @@ struct kvm_x86_ops {
  	int (*check_intercept)(struct kvm_vcpu *vcpu,
  			       struct x86_instruction_info *info,
  			       enum x86_intercept_stage stage);
@@ -10567,10 +10599,10 @@ index 52d6640..a013b87 100644
  struct kvm_arch_async_pf {
  	u32 token;
 diff --git a/arch/x86/include/asm/local.h b/arch/x86/include/asm/local.h
-index 9cdae5d..300d20f 100644
+index c8bed0d..e5721fa 100644
 --- a/arch/x86/include/asm/local.h
 +++ b/arch/x86/include/asm/local.h
-@@ -18,26 +18,58 @@ typedef struct {
+@@ -17,26 +17,58 @@ typedef struct {
  
  static inline void local_inc(local_t *l)
  {
@@ -10633,7 +10665,7 @@ index 9cdae5d..300d20f 100644
  		     : "+m" (l->a.counter)
  		     : "ir" (i));
  }
-@@ -55,7 +87,16 @@ static inline int local_sub_and_test(long i, local_t *l)
+@@ -54,7 +86,16 @@ static inline int local_sub_and_test(long i, local_t *l)
  {
  	unsigned char c;
  
@@ -10651,7 +10683,7 @@ index 9cdae5d..300d20f 100644
  		     : "+m" (l->a.counter), "=qm" (c)
  		     : "ir" (i) : "memory");
  	return c;
-@@ -73,7 +114,16 @@ static inline int local_dec_and_test(local_t *l)
+@@ -72,7 +113,16 @@ static inline int local_dec_and_test(local_t *l)
  {
  	unsigned char c;
  
@@ -10669,7 +10701,7 @@ index 9cdae5d..300d20f 100644
  		     : "+m" (l->a.counter), "=qm" (c)
  		     : : "memory");
  	return c != 0;
-@@ -91,7 +141,16 @@ static inline int local_inc_and_test(local_t *l)
+@@ -90,7 +140,16 @@ static inline int local_inc_and_test(local_t *l)
  {
  	unsigned char c;
  
@@ -10687,7 +10719,7 @@ index 9cdae5d..300d20f 100644
  		     : "+m" (l->a.counter), "=qm" (c)
  		     : : "memory");
  	return c != 0;
-@@ -110,7 +169,16 @@ static inline int local_add_negative(long i, local_t *l)
+@@ -109,7 +168,16 @@ static inline int local_add_negative(long i, local_t *l)
  {
  	unsigned char c;
  
@@ -10705,7 +10737,7 @@ index 9cdae5d..300d20f 100644
  		     : "+m" (l->a.counter), "=qm" (c)
  		     : "ir" (i) : "memory");
  	return c;
-@@ -133,7 +201,15 @@ static inline long local_add_return(long i, local_t *l)
+@@ -132,7 +200,15 @@ static inline long local_add_return(long i, local_t *l)
  #endif
  	/* Modern 486+ processor */
  	__i = i;
@@ -10948,10 +10980,10 @@ index 7639dbf..e08a58c 100644
  extern unsigned long __phys_addr(unsigned long);
  #define __phys_reloc_hide(x)	(x)
 diff --git a/arch/x86/include/asm/paravirt.h b/arch/x86/include/asm/paravirt.h
-index a7d2db9..edb023e 100644
+index aa0f913..0c5bc6a 100644
 --- a/arch/x86/include/asm/paravirt.h
 +++ b/arch/x86/include/asm/paravirt.h
-@@ -667,6 +667,18 @@ static inline void set_pgd(pgd_t *pgdp, pgd_t pgd)
+@@ -668,6 +668,18 @@ static inline void set_pgd(pgd_t *pgdp, pgd_t pgd)
  			    val);
  }
  
@@ -10970,7 +11002,7 @@ index a7d2db9..edb023e 100644
  static inline void pgd_clear(pgd_t *pgdp)
  {
  	set_pgd(pgdp, __pgd(0));
-@@ -748,6 +760,21 @@ static inline void __set_fixmap(unsigned /* enum fixed_addresses */ idx,
+@@ -749,6 +761,21 @@ static inline void __set_fixmap(unsigned /* enum fixed_addresses */ idx,
  	pv_mmu_ops.set_fixmap(idx, phys, flags);
  }
  
@@ -10992,7 +11024,7 @@ index a7d2db9..edb023e 100644
  #if defined(CONFIG_SMP) && defined(CONFIG_PARAVIRT_SPINLOCKS)
  
  static inline int arch_spin_is_locked(struct arch_spinlock *lock)
-@@ -964,7 +991,7 @@ extern void default_banner(void);
+@@ -965,7 +992,7 @@ extern void default_banner(void);
  
  #define PARA_PATCH(struct, off)        ((PARAVIRT_PATCH_##struct + (off)) / 4)
  #define PARA_SITE(ptype, clobbers, ops) _PVSITE(ptype, clobbers, ops, .long, 4)
@@ -11001,7 +11033,7 @@ index a7d2db9..edb023e 100644
  #endif
  
  #define INTERRUPT_RETURN						\
-@@ -1041,6 +1068,21 @@ extern void default_banner(void);
+@@ -1042,6 +1069,21 @@ extern void default_banner(void);
  	PARA_SITE(PARA_PATCH(pv_cpu_ops, PV_CPU_irq_enable_sysexit),	\
  		  CLBR_NONE,						\
  		  jmp PARA_INDIRECT(pv_cpu_ops+PV_CPU_irq_enable_sysexit))
@@ -11692,10 +11724,10 @@ index 013286a..8b42f4f 100644
  #define pgprot_writecombine	pgprot_writecombine
  extern pgprot_t pgprot_writecombine(pgprot_t prot);
 diff --git a/arch/x86/include/asm/processor.h b/arch/x86/include/asm/processor.h
-index 58545c9..fe6fc38e 100644
+index 4fa7dcc..764e33a 100644
 --- a/arch/x86/include/asm/processor.h
 +++ b/arch/x86/include/asm/processor.h
-@@ -266,7 +266,7 @@ struct tss_struct {
+@@ -276,7 +276,7 @@ struct tss_struct {
  
  } ____cacheline_aligned;
  
@@ -11704,7 +11736,7 @@ index 58545c9..fe6fc38e 100644
  
  /*
   * Save the original ist values for checking stack pointers during debugging
-@@ -860,11 +860,18 @@ static inline void spin_lock_prefetch(const void *x)
+@@ -807,11 +807,18 @@ static inline void spin_lock_prefetch(const void *x)
   */
  #define TASK_SIZE		PAGE_OFFSET
  #define TASK_SIZE_MAX		TASK_SIZE
@@ -11725,7 +11757,7 @@ index 58545c9..fe6fc38e 100644
  	.vm86_info		= NULL,					  \
  	.sysenter_cs		= __KERNEL_CS,				  \
  	.io_bitmap_ptr		= NULL,					  \
-@@ -878,7 +885,7 @@ static inline void spin_lock_prefetch(const void *x)
+@@ -825,7 +832,7 @@ static inline void spin_lock_prefetch(const void *x)
   */
  #define INIT_TSS  {							  \
  	.x86_tss = {							  \
@@ -11734,7 +11766,7 @@ index 58545c9..fe6fc38e 100644
  		.ss0		= __KERNEL_DS,				  \
  		.ss1		= __KERNEL_CS,				  \
  		.io_bitmap_base	= INVALID_IO_BITMAP_OFFSET,		  \
-@@ -889,11 +896,7 @@ static inline void spin_lock_prefetch(const void *x)
+@@ -836,11 +843,7 @@ static inline void spin_lock_prefetch(const void *x)
  extern unsigned long thread_saved_pc(struct task_struct *tsk);
  
  #define THREAD_SIZE_LONGS      (THREAD_SIZE/sizeof(unsigned long))
@@ -11747,7 +11779,7 @@ index 58545c9..fe6fc38e 100644
  
  /*
   * The below -8 is to reserve 8 bytes on top of the ring0 stack.
-@@ -908,7 +911,7 @@ extern unsigned long thread_saved_pc(struct task_struct *tsk);
+@@ -855,7 +858,7 @@ extern unsigned long thread_saved_pc(struct task_struct *tsk);
  #define task_pt_regs(task)                                             \
  ({                                                                     \
         struct pt_regs *__regs__;                                       \
@@ -11756,7 +11788,7 @@ index 58545c9..fe6fc38e 100644
         __regs__ - 1;                                                   \
  })
  
-@@ -918,13 +921,13 @@ extern unsigned long thread_saved_pc(struct task_struct *tsk);
+@@ -865,13 +868,13 @@ extern unsigned long thread_saved_pc(struct task_struct *tsk);
  /*
   * User space process size. 47bits minus one guard page.
   */
@@ -11770,9 +11802,9 @@ index 58545c9..fe6fc38e 100644
 -					0xc0000000 : 0xFFFFe000)
 +					0xc0000000 : 0xFFFFf000)
  
- #define TASK_SIZE		(test_thread_flag(TIF_IA32) ? \
+ #define TASK_SIZE		(test_thread_flag(TIF_ADDR32) ? \
  					IA32_PAGE_OFFSET : TASK_SIZE_MAX)
-@@ -935,11 +938,11 @@ extern unsigned long thread_saved_pc(struct task_struct *tsk);
+@@ -882,11 +885,11 @@ extern unsigned long thread_saved_pc(struct task_struct *tsk);
  #define STACK_TOP_MAX		TASK_SIZE_MAX
  
  #define INIT_THREAD  { \
@@ -11786,7 +11818,7 @@ index 58545c9..fe6fc38e 100644
  }
  
  /*
-@@ -961,6 +964,10 @@ extern void start_thread(struct pt_regs *regs, unsigned long new_ip,
+@@ -914,6 +917,10 @@ extern void start_thread(struct pt_regs *regs, unsigned long new_ip,
   */
  #define TASK_UNMAPPED_BASE	(PAGE_ALIGN(TASK_SIZE / 3))
  
@@ -11797,11 +11829,26 @@ index 58545c9..fe6fc38e 100644
  #define KSTK_EIP(task)		(task_pt_regs(task)->ip)
  
  /* Get/set a process' ability to use the timestamp counter instruction */
+@@ -976,12 +983,12 @@ extern bool cpu_has_amd_erratum(const int *);
+ 
+ void cpu_idle_wait(void);
+ 
+-extern unsigned long arch_align_stack(unsigned long sp);
++#define arch_align_stack(x) ((x) & ~0xfUL)
+ extern void free_init_pages(char *what, unsigned long begin, unsigned long end);
+ 
+ void default_idle(void);
+ bool set_pm_idle_to_default(void);
+ 
+-void stop_this_cpu(void *dummy);
++void stop_this_cpu(void *dummy) __noreturn;
+ 
+ #endif /* _ASM_X86_PROCESSOR_H */
 diff --git a/arch/x86/include/asm/ptrace.h b/arch/x86/include/asm/ptrace.h
-index 3566454..4bdfb8c 100644
+index dcfde52..dbfea06 100644
 --- a/arch/x86/include/asm/ptrace.h
 +++ b/arch/x86/include/asm/ptrace.h
-@@ -156,28 +156,29 @@ static inline unsigned long regs_return_value(struct pt_regs *regs)
+@@ -155,28 +155,29 @@ static inline unsigned long regs_return_value(struct pt_regs *regs)
  }
  
  /*
@@ -11837,7 +11884,7 @@ index 3566454..4bdfb8c 100644
  #endif
  }
  
-@@ -193,15 +194,16 @@ static inline int v8086_mode(struct pt_regs *regs)
+@@ -192,15 +193,16 @@ static inline int v8086_mode(struct pt_regs *regs)
  #ifdef CONFIG_X86_64
  static inline bool user_64bit_mode(struct pt_regs *regs)
  {
@@ -12007,7 +12054,7 @@ index 2dbe4a7..ce1db00 100644
  
  #endif /* __KERNEL__ */
 diff --git a/arch/x86/include/asm/segment.h b/arch/x86/include/asm/segment.h
-index 5e64171..f58957e 100644
+index 1654662..5af4157 100644
 --- a/arch/x86/include/asm/segment.h
 +++ b/arch/x86/include/asm/segment.h
 @@ -64,10 +64,15 @@
@@ -12076,6 +12123,15 @@ index 5e64171..f58957e 100644
  #define __KERNEL_DS	(GDT_ENTRY_KERNEL_DS*8)
  #define __USER_DS	(GDT_ENTRY_DEFAULT_USER_DS*8+3)
  #define __USER_CS	(GDT_ENTRY_DEFAULT_USER_CS*8+3)
+@@ -263,7 +279,7 @@ static inline unsigned long get_limit(unsigned long segment)
+ {
+ 	unsigned long __limit;
+ 	asm("lsll %1,%0" : "=r" (__limit) : "r" (segment));
+-	return __limit + 1;
++	return __limit;
+ }
+ 
+ #endif /* !__ASSEMBLY__ */
 diff --git a/arch/x86/include/asm/smp.h b/arch/x86/include/asm/smp.h
 index 0434c40..1714bf0 100644
 --- a/arch/x86/include/asm/smp.h
@@ -12116,7 +12172,7 @@ index 0434c40..1714bf0 100644
  
  #endif
 diff --git a/arch/x86/include/asm/spinlock.h b/arch/x86/include/asm/spinlock.h
-index a82c2bf..2198f61 100644
+index 76bfa2c..12d3fe7 100644
 --- a/arch/x86/include/asm/spinlock.h
 +++ b/arch/x86/include/asm/spinlock.h
 @@ -175,6 +175,14 @@ static inline int arch_write_can_lock(arch_rwlock_t *lock)
@@ -12182,10 +12238,10 @@ index a82c2bf..2198f61 100644
  }
  
 diff --git a/arch/x86/include/asm/stackprotector.h b/arch/x86/include/asm/stackprotector.h
-index 1575177..cb23f52 100644
+index b5d9533..41655fa 100644
 --- a/arch/x86/include/asm/stackprotector.h
 +++ b/arch/x86/include/asm/stackprotector.h
-@@ -48,7 +48,7 @@
+@@ -47,7 +47,7 @@
   * head_32 for boot CPU and setup_per_cpu_areas() for others.
   */
  #define GDT_STACK_CANARY_INIT						\
@@ -12194,7 +12250,7 @@ index 1575177..cb23f52 100644
  
  /*
   * Initialize the stackprotector canary value.
-@@ -113,7 +113,7 @@ static inline void setup_stack_canary_segment(int cpu)
+@@ -112,7 +112,7 @@ static inline void setup_stack_canary_segment(int cpu)
  
  static inline void load_stack_canary_segment(void)
  {
@@ -12256,24 +12312,11 @@ index 70bbe39..4ae2bd4 100644
  };
  
  void dump_trace(struct task_struct *tsk, struct pt_regs *regs,
-diff --git a/arch/x86/include/asm/sys_ia32.h b/arch/x86/include/asm/sys_ia32.h
-index cb23852..2dde194 100644
---- a/arch/x86/include/asm/sys_ia32.h
-+++ b/arch/x86/include/asm/sys_ia32.h
-@@ -40,7 +40,7 @@ asmlinkage long sys32_rt_sigprocmask(int, compat_sigset_t __user *,
- 				     compat_sigset_t __user *, unsigned int);
- asmlinkage long sys32_alarm(unsigned int);
- 
--asmlinkage long sys32_waitpid(compat_pid_t, unsigned int *, int);
-+asmlinkage long sys32_waitpid(compat_pid_t, unsigned int __user *, int);
- asmlinkage long sys32_sysfs(int, u32, u32);
- 
- asmlinkage long sys32_sched_rr_get_interval(compat_pid_t,
-diff --git a/arch/x86/include/asm/system.h b/arch/x86/include/asm/system.h
-index 2d2f01c..f985723 100644
---- a/arch/x86/include/asm/system.h
-+++ b/arch/x86/include/asm/system.h
-@@ -129,7 +129,7 @@ do {									\
+diff --git a/arch/x86/include/asm/switch_to.h b/arch/x86/include/asm/switch_to.h
+index 4ec45b3..a4f0a8a 100644
+--- a/arch/x86/include/asm/switch_to.h
++++ b/arch/x86/include/asm/switch_to.h
+@@ -108,7 +108,7 @@ do {									\
  	     "call __switch_to\n\t"					  \
  	     "movq "__percpu_arg([current_task])",%%rsi\n\t"		  \
  	     __switch_canary						  \
@@ -12282,7 +12325,7 @@ index 2d2f01c..f985723 100644
  	     "movq %%rax,%%rdi\n\t" 					  \
  	     "testl  %[_tif_fork],%P[ti_flags](%%r8)\n\t"		  \
  	     "jnz   ret_from_fork\n\t"					  \
-@@ -140,7 +140,7 @@ do {									\
+@@ -119,7 +119,7 @@ do {									\
  	       [threadrsp] "i" (offsetof(struct task_struct, thread.sp)), \
  	       [ti_flags] "i" (offsetof(struct thread_info, flags)),	  \
  	       [_tif_fork] "i" (_TIF_FORK),			  	  \
@@ -12291,33 +12334,21 @@ index 2d2f01c..f985723 100644
  	       [current_task] "m" (current_task)			  \
  	       __switch_canary_iparam					  \
  	     : "memory", "cc" __EXTRA_CLOBBER)
-@@ -200,7 +200,7 @@ static inline unsigned long get_limit(unsigned long segment)
- {
- 	unsigned long __limit;
- 	asm("lsll %1,%0" : "=r" (__limit) : "r" (segment));
--	return __limit + 1;
-+	return __limit;
- }
- 
- static inline void native_clts(void)
-@@ -397,13 +397,13 @@ void enable_hlt(void);
- 
- void cpu_idle_wait(void);
- 
--extern unsigned long arch_align_stack(unsigned long sp);
-+#define arch_align_stack(x) ((x) & ~0xfUL)
- extern void free_init_pages(char *what, unsigned long begin, unsigned long end);
- 
- void default_idle(void);
- bool set_pm_idle_to_default(void);
+diff --git a/arch/x86/include/asm/sys_ia32.h b/arch/x86/include/asm/sys_ia32.h
+index 3fda9db4..4ca1c61 100644
+--- a/arch/x86/include/asm/sys_ia32.h
++++ b/arch/x86/include/asm/sys_ia32.h
+@@ -40,7 +40,7 @@ asmlinkage long sys32_sigaction(int, struct old_sigaction32 __user *,
+ 				struct old_sigaction32 __user *);
+ asmlinkage long sys32_alarm(unsigned int);
  
--void stop_this_cpu(void *dummy);
-+void stop_this_cpu(void *dummy) __noreturn;
+-asmlinkage long sys32_waitpid(compat_pid_t, unsigned int *, int);
++asmlinkage long sys32_waitpid(compat_pid_t, unsigned int __user *, int);
+ asmlinkage long sys32_sysfs(int, u32, u32);
  
- /*
-  * Force strict CPU ordering.
+ asmlinkage long sys32_sched_rr_get_interval(compat_pid_t,
 diff --git a/arch/x86/include/asm/thread_info.h b/arch/x86/include/asm/thread_info.h
-index cfd8144..664ac89 100644
+index ad6df8c..5e0cf6e 100644
 --- a/arch/x86/include/asm/thread_info.h
 +++ b/arch/x86/include/asm/thread_info.h
 @@ -10,6 +10,7 @@
@@ -12367,25 +12398,26 @@ index cfd8144..664ac89 100644
  #define init_stack		(init_thread_union.stack)
  
  #else /* !__ASSEMBLY__ */
-@@ -95,6 +89,7 @@ struct thread_info {
- #define TIF_BLOCKSTEP		25	/* set when we want DEBUGCTLMSR_BTF */
- #define TIF_LAZY_MMU_UPDATES	27	/* task is updating the mmu lazily */
+@@ -97,6 +91,7 @@ struct thread_info {
  #define TIF_SYSCALL_TRACEPOINT	28	/* syscall tracepoint instrumentation */
-+#define TIF_GRSEC_SETXID	29	/* update credentials on syscall entry/exit */
+ #define TIF_ADDR32		29	/* 32-bit address space on 64 bits */
+ #define TIF_X32			30	/* 32-bit native x86-64 binary */
++#define TIF_GRSEC_SETXID	31	/* update credentials on syscall entry/exit */
  
  #define _TIF_SYSCALL_TRACE	(1 << TIF_SYSCALL_TRACE)
  #define _TIF_NOTIFY_RESUME	(1 << TIF_NOTIFY_RESUME)
-@@ -116,16 +111,17 @@ struct thread_info {
- #define _TIF_BLOCKSTEP		(1 << TIF_BLOCKSTEP)
- #define _TIF_LAZY_MMU_UPDATES	(1 << TIF_LAZY_MMU_UPDATES)
+@@ -120,16 +115,18 @@ struct thread_info {
  #define _TIF_SYSCALL_TRACEPOINT	(1 << TIF_SYSCALL_TRACEPOINT)
+ #define _TIF_ADDR32		(1 << TIF_ADDR32)
+ #define _TIF_X32		(1 << TIF_X32)
 +#define _TIF_GRSEC_SETXID	(1 << TIF_GRSEC_SETXID)
  
  /* work to do in syscall_trace_enter() */
  #define _TIF_WORK_SYSCALL_ENTRY	\
  	(_TIF_SYSCALL_TRACE | _TIF_SYSCALL_EMU | _TIF_SYSCALL_AUDIT |	\
 -	 _TIF_SECCOMP | _TIF_SINGLESTEP | _TIF_SYSCALL_TRACEPOINT)
-+	 _TIF_SECCOMP | _TIF_SINGLESTEP | _TIF_SYSCALL_TRACEPOINT | _TIF_GRSEC_SETXID)
++	 _TIF_SECCOMP | _TIF_SINGLESTEP | _TIF_SYSCALL_TRACEPOINT |	\
++	 _TIF_GRSEC_SETXID)
  
  /* work to do in syscall_trace_leave() */
  #define _TIF_WORK_SYSCALL_EXIT	\
@@ -12395,7 +12427,7 @@ index cfd8144..664ac89 100644
  
  /* work to do on interrupt/exception return */
  #define _TIF_WORK_MASK							\
-@@ -135,7 +131,8 @@ struct thread_info {
+@@ -139,7 +136,8 @@ struct thread_info {
  
  /* work to do on any return to user space */
  #define _TIF_ALLWORK_MASK						\
@@ -12405,7 +12437,7 @@ index cfd8144..664ac89 100644
  
  /* Only used for 64 bit */
  #define _TIF_DO_NOTIFY_MASK						\
-@@ -169,45 +166,40 @@ struct thread_info {
+@@ -173,45 +171,40 @@ struct thread_info {
  	ret;								\
  })
  
@@ -12476,7 +12508,7 @@ index cfd8144..664ac89 100644
  /*
   * macros/functions for gaining access to the thread information structure
   * preempt_count needs to be 1 initially, until the scheduler is functional.
-@@ -215,27 +207,8 @@ static inline struct thread_info *current_thread_info(void)
+@@ -219,27 +212,8 @@ static inline struct thread_info *current_thread_info(void)
  #ifndef __ASSEMBLY__
  DECLARE_PER_CPU(unsigned long, kernel_stack);
  
@@ -12506,7 +12538,7 @@ index cfd8144..664ac89 100644
  #endif
  
  #endif /* !X86_32 */
-@@ -269,5 +242,16 @@ extern void arch_task_cache_init(void);
+@@ -285,5 +259,16 @@ extern void arch_task_cache_init(void);
  extern void free_thread_info(struct thread_info *ti);
  extern int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src);
  #define arch_task_cache_init arch_task_cache_init
@@ -12524,7 +12556,7 @@ index cfd8144..664ac89 100644
  #endif
  #endif /* _ASM_X86_THREAD_INFO_H */
 diff --git a/arch/x86/include/asm/uaccess.h b/arch/x86/include/asm/uaccess.h
-index 8be5f54..7ae826d 100644
+index e054459..14bc8a7 100644
 --- a/arch/x86/include/asm/uaccess.h
 +++ b/arch/x86/include/asm/uaccess.h
 @@ -7,12 +7,15 @@
@@ -12747,7 +12779,7 @@ index 8be5f54..7ae826d 100644
  
  #ifdef CONFIG_X86_WP_WORKS_OK
 diff --git a/arch/x86/include/asm/uaccess_32.h b/arch/x86/include/asm/uaccess_32.h
-index 566e803..1230707 100644
+index 8084bc7..cc139cb 100644
 --- a/arch/x86/include/asm/uaccess_32.h
 +++ b/arch/x86/include/asm/uaccess_32.h
 @@ -11,15 +11,15 @@
@@ -12934,7 +12966,7 @@ index 566e803..1230707 100644
  	return n;
  }
  
-@@ -235,7 +302,7 @@ long __must_check __strncpy_from_user(char *dst,
+@@ -230,7 +297,7 @@ static inline unsigned long __must_check copy_from_user(void *to,
  #define strlen_user(str) strnlen_user(str, LONG_MAX)
  
  long strnlen_user(const char __user *str, long n);
@@ -12945,7 +12977,7 @@ index 566e803..1230707 100644
  
  #endif /* _ASM_X86_UACCESS_32_H */
 diff --git a/arch/x86/include/asm/uaccess_64.h b/arch/x86/include/asm/uaccess_64.h
-index 1c66d30..bf1a2cc 100644
+index fcd4b6f..f4631a0 100644
 --- a/arch/x86/include/asm/uaccess_64.h
 +++ b/arch/x86/include/asm/uaccess_64.h
 @@ -10,6 +10,9 @@
@@ -13278,7 +13310,7 @@ index 1c66d30..bf1a2cc 100644
  			       ret, "q", "", "=r", 8);
  		if (likely(!ret))
  			__put_user_asm(tmp, (u64 __user *)dst,
-@@ -203,8 +292,16 @@ int __copy_in_user(void __user *dst, const void __user *src, unsigned size)
+@@ -203,47 +292,92 @@ int __copy_in_user(void __user *dst, const void __user *src, unsigned size)
  		return ret;
  	}
  	default:
@@ -13297,7 +13329,6 @@ index 1c66d30..bf1a2cc 100644
  	}
  }
  
-@@ -215,39 +312,76 @@ __strncpy_from_user(char *dst, const char __user *src, long count);
  __must_check long strnlen_user(const char __user *str, long n);
  __must_check long __strnlen_user(const char __user *str, long n);
  __must_check long strlen_user(const char __user *str);
@@ -13404,7 +13435,7 @@ index bb05228..d763d5b 100644
  #endif
  
 diff --git a/arch/x86/include/asm/x86_init.h b/arch/x86/include/asm/x86_init.h
-index a609c39..7a68dc7 100644
+index 764b66a..ad3cfc8 100644
 --- a/arch/x86/include/asm/x86_init.h
 +++ b/arch/x86/include/asm/x86_init.h
 @@ -29,7 +29,7 @@ struct x86_init_mpparse {
@@ -13497,25 +13528,25 @@ index a609c39..7a68dc7 100644
  
  /**
   * struct x86_cpuinit_ops - platform specific cpu hotplug setups
-@@ -149,7 +149,7 @@ struct x86_init_ops {
- struct x86_cpuinit_ops {
+@@ -151,7 +151,7 @@ struct x86_cpuinit_ops {
  	void (*setup_percpu_clockev)(void);
+ 	void (*early_percpu_clock_init)(void);
  	void (*fixup_cpu_id)(struct cpuinfo_x86 *c, int node);
 -};
 +} __no_const;
  
  /**
   * struct x86_platform_ops - platform specific runtime functions
-@@ -171,7 +171,7 @@ struct x86_platform_ops {
- 	void (*nmi_init)(void);
- 	unsigned char (*get_nmi_reason)(void);
+@@ -177,7 +177,7 @@ struct x86_platform_ops {
  	int (*i8042_detect)(void);
+ 	void (*save_sched_clock_state)(void);
+ 	void (*restore_sched_clock_state)(void);
 -};
 +} __no_const;
  
  struct pci_dev;
  
-@@ -180,7 +180,7 @@ struct x86_msi_ops {
+@@ -186,7 +186,7 @@ struct x86_msi_ops {
  	void (*teardown_msi_irq)(unsigned int irq);
  	void (*teardown_msi_irqs)(struct pci_dev *dev);
  	void (*restore_msi_irqs)(struct pci_dev *dev, int irq);
@@ -13594,10 +13625,10 @@ index b4fd836..4358fe3 100644
  	pushw	$0
  	pushw	trampoline_segment
 diff --git a/arch/x86/kernel/acpi/sleep.c b/arch/x86/kernel/acpi/sleep.c
-index 103b6ab..2004d0a 100644
+index 146a49c..1b5338b 100644
 --- a/arch/x86/kernel/acpi/sleep.c
 +++ b/arch/x86/kernel/acpi/sleep.c
-@@ -94,8 +94,12 @@ int acpi_suspend_lowlevel(void)
+@@ -98,8 +98,12 @@ int acpi_suspend_lowlevel(void)
  	header->trampoline_segment = trampoline_address() >> 4;
  #ifdef CONFIG_SMP
  	stack_start = (unsigned long)temp_stack + sizeof(temp_stack);
@@ -13611,7 +13642,7 @@ index 103b6ab..2004d0a 100644
  #endif
  	initial_code = (unsigned long)wakeup_long64;
 diff --git a/arch/x86/kernel/acpi/wakeup_32.S b/arch/x86/kernel/acpi/wakeup_32.S
-index 13ab720..95d5442 100644
+index 7261083..5c12053 100644
 --- a/arch/x86/kernel/acpi/wakeup_32.S
 +++ b/arch/x86/kernel/acpi/wakeup_32.S
 @@ -30,13 +30,11 @@ wakeup_pmode_return:
@@ -13768,7 +13799,7 @@ index 1f84794..e23f862 100644
  }
  
 diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c
-index 5b3f88e..61232b4 100644
+index edc2448..553e7c5 100644
 --- a/arch/x86/kernel/apic/apic.c
 +++ b/arch/x86/kernel/apic/apic.c
 @@ -184,7 +184,7 @@ int first_system_vector = 0xfe;
@@ -13780,7 +13811,7 @@ index 5b3f88e..61232b4 100644
  
  int pic_mode;
  
-@@ -1912,7 +1912,7 @@ void smp_error_interrupt(struct pt_regs *regs)
+@@ -1917,7 +1917,7 @@ void smp_error_interrupt(struct pt_regs *regs)
  	apic_write(APIC_ESR, 0);
  	v1 = apic_read(APIC_ESR);
  	ack_APIC_irq();
@@ -13790,10 +13821,21 @@ index 5b3f88e..61232b4 100644
  	apic_printk(APIC_DEBUG, KERN_DEBUG "APIC error on CPU%d: %02x(%02x)",
  		    smp_processor_id(), v0 , v1);
 diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
-index fb07275..e06bb59 100644
+index e88300d..cd5a87a 100644
 --- a/arch/x86/kernel/apic/io_apic.c
 +++ b/arch/x86/kernel/apic/io_apic.c
-@@ -1096,7 +1096,7 @@ int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin,
+@@ -83,7 +83,9 @@ static struct io_apic_ops io_apic_ops = {
+ 
+ void __init set_io_apic_ops(const struct io_apic_ops *ops)
+ {
+-	io_apic_ops = *ops;
++	pax_open_kernel();
++	memcpy((void*)&io_apic_ops, ops, sizeof io_apic_ops);
++	pax_close_kernel();
+ }
+ 
+ /*
+@@ -1135,7 +1137,7 @@ int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin,
  }
  EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
  
@@ -13802,7 +13844,7 @@ index fb07275..e06bb59 100644
  {
  	/* Used to the online set of cpus does not change
  	 * during assign_irq_vector.
-@@ -1104,7 +1104,7 @@ void lock_vector_lock(void)
+@@ -1143,7 +1145,7 @@ void lock_vector_lock(void)
  	raw_spin_lock(&vector_lock);
  }
  
@@ -13811,16 +13853,16 @@ index fb07275..e06bb59 100644
  {
  	raw_spin_unlock(&vector_lock);
  }
-@@ -2510,7 +2510,7 @@ static void ack_apic_edge(struct irq_data *data)
+@@ -2549,7 +2551,7 @@ static void ack_apic_edge(struct irq_data *data)
  	ack_APIC_irq();
  }
  
 -atomic_t irq_mis_count;
 +atomic_unchecked_t irq_mis_count;
  
- static void ack_apic_level(struct irq_data *data)
- {
-@@ -2576,7 +2576,7 @@ static void ack_apic_level(struct irq_data *data)
+ #ifdef CONFIG_GENERIC_PENDING_IRQ
+ static inline bool ioapic_irqd_mask(struct irq_data *data, struct irq_cfg *cfg)
+@@ -2667,7 +2669,7 @@ static void ack_apic_level(struct irq_data *data)
  	 * at the cpu.
  	 */
  	if (!(v & (1 << (i & 0x1f)))) {
@@ -13830,10 +13872,10 @@ index fb07275..e06bb59 100644
  		eoi_ioapic_irq(irq, cfg);
  	}
 diff --git a/arch/x86/kernel/apm_32.c b/arch/x86/kernel/apm_32.c
-index f76623c..aab694f 100644
+index 459e78c..f037006 100644
 --- a/arch/x86/kernel/apm_32.c
 +++ b/arch/x86/kernel/apm_32.c
-@@ -411,7 +411,7 @@ static DEFINE_MUTEX(apm_mutex);
+@@ -410,7 +410,7 @@ static DEFINE_MUTEX(apm_mutex);
   * This is for buggy BIOS's that refer to (real mode) segment 0x40
   * even though they are called in protected mode.
   */
@@ -13842,7 +13884,7 @@ index f76623c..aab694f 100644
  			(unsigned long)__va(0x400UL), PAGE_SIZE - 0x400 - 1);
  
  static const char driver_version[] = "1.16ac";	/* no spaces */
-@@ -589,7 +589,10 @@ static long __apm_bios_call(void *_call)
+@@ -588,7 +588,10 @@ static long __apm_bios_call(void *_call)
  	BUG_ON(cpu != 0);
  	gdt = get_cpu_gdt_table(cpu);
  	save_desc_40 = gdt[0x40 / 8];
@@ -13853,7 +13895,7 @@ index f76623c..aab694f 100644
  
  	apm_irq_save(flags);
  	APM_DO_SAVE_SEGS;
-@@ -598,7 +601,11 @@ static long __apm_bios_call(void *_call)
+@@ -597,7 +600,11 @@ static long __apm_bios_call(void *_call)
  			  &call->esi);
  	APM_DO_RESTORE_SEGS;
  	apm_irq_restore(flags);
@@ -13865,7 +13907,7 @@ index f76623c..aab694f 100644
  	put_cpu();
  
  	return call->eax & 0xff;
-@@ -665,7 +672,10 @@ static long __apm_bios_call_simple(void *_call)
+@@ -664,7 +671,10 @@ static long __apm_bios_call_simple(void *_call)
  	BUG_ON(cpu != 0);
  	gdt = get_cpu_gdt_table(cpu);
  	save_desc_40 = gdt[0x40 / 8];
@@ -13876,7 +13918,7 @@ index f76623c..aab694f 100644
  
  	apm_irq_save(flags);
  	APM_DO_SAVE_SEGS;
-@@ -673,7 +683,11 @@ static long __apm_bios_call_simple(void *_call)
+@@ -672,7 +682,11 @@ static long __apm_bios_call_simple(void *_call)
  					 &call->eax);
  	APM_DO_RESTORE_SEGS;
  	apm_irq_restore(flags);
@@ -13888,7 +13930,7 @@ index f76623c..aab694f 100644
  	put_cpu();
  	return error;
  }
-@@ -2347,12 +2361,15 @@ static int __init apm_init(void)
+@@ -2345,12 +2359,15 @@ static int __init apm_init(void)
  	 * code to that CPU.
  	 */
  	gdt = get_cpu_gdt_table(0);
@@ -13945,10 +13987,10 @@ index 68de2dc..1f3c720 100644
  	BLANK();
  	OFFSET(XEN_vcpu_info_mask, vcpu_info, evtchn_upcall_mask);
 diff --git a/arch/x86/kernel/asm-offsets_64.c b/arch/x86/kernel/asm-offsets_64.c
-index 834e897..dacddc8 100644
+index 1b4754f..fbb4227 100644
 --- a/arch/x86/kernel/asm-offsets_64.c
 +++ b/arch/x86/kernel/asm-offsets_64.c
-@@ -70,6 +70,7 @@ int main(void)
+@@ -76,6 +76,7 @@ int main(void)
  	BLANK();
  #undef ENTRY
  
@@ -13957,7 +13999,7 @@ index 834e897..dacddc8 100644
  	BLANK();
  
 diff --git a/arch/x86/kernel/cpu/Makefile b/arch/x86/kernel/cpu/Makefile
-index 25f24dc..4094a7f 100644
+index 6ab6aa2..8f71507 100644
 --- a/arch/x86/kernel/cpu/Makefile
 +++ b/arch/x86/kernel/cpu/Makefile
 @@ -8,10 +8,6 @@ CFLAGS_REMOVE_common.o = -pg
@@ -13972,10 +14014,10 @@ index 25f24dc..4094a7f 100644
  obj-y			+= proc.o capflags.o powerflags.o common.o
  obj-y			+= vmware.o hypervisor.o sched.o mshyperv.o
 diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c
-index 80ab83d..0a7b34e 100644
+index 146bb62..ac9c74a 100644
 --- a/arch/x86/kernel/cpu/amd.c
 +++ b/arch/x86/kernel/cpu/amd.c
-@@ -670,7 +670,7 @@ static unsigned int __cpuinit amd_size_cache(struct cpuinfo_x86 *c,
+@@ -691,7 +691,7 @@ static unsigned int __cpuinit amd_size_cache(struct cpuinfo_x86 *c,
  							unsigned int size)
  {
  	/* AMD errata T13 (order #21922) */
@@ -13985,10 +14027,10 @@ index 80ab83d..0a7b34e 100644
  		if (c->x86_model == 3 && c->x86_mask == 0)
  			size = 64;
 diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c
-index 1a810e4..9fa8201 100644
+index cf79302..b1b28ae 100644
 --- a/arch/x86/kernel/cpu/common.c
 +++ b/arch/x86/kernel/cpu/common.c
-@@ -84,60 +84,6 @@ static const struct cpu_dev __cpuinitconst default_cpu = {
+@@ -86,60 +86,6 @@ static const struct cpu_dev __cpuinitconst default_cpu = {
  
  static const struct cpu_dev *this_cpu __cpuinitdata = &default_cpu;
  
@@ -14049,7 +14091,7 @@ index 1a810e4..9fa8201 100644
  static int __init x86_xsave_setup(char *s)
  {
  	setup_clear_cpu_cap(X86_FEATURE_XSAVE);
-@@ -372,7 +318,7 @@ void switch_to_new_gdt(int cpu)
+@@ -374,7 +320,7 @@ void switch_to_new_gdt(int cpu)
  {
  	struct desc_ptr gdt_descr;
  
@@ -14058,7 +14100,7 @@ index 1a810e4..9fa8201 100644
  	gdt_descr.size = GDT_SIZE - 1;
  	load_gdt(&gdt_descr);
  	/* Reload the per-cpu base */
-@@ -839,6 +785,10 @@ static void __cpuinit identify_cpu(struct cpuinfo_x86 *c)
+@@ -841,6 +787,10 @@ static void __cpuinit identify_cpu(struct cpuinfo_x86 *c)
  	/* Filter out anything that depends on CPUID levels we don't have */
  	filter_cpuid_features(c, true);
  
@@ -14069,7 +14111,7 @@ index 1a810e4..9fa8201 100644
  	/* If the model name is still unset, do table lookup. */
  	if (!c->x86_model_id[0]) {
  		const char *p;
-@@ -1019,10 +969,12 @@ static __init int setup_disablecpuid(char *arg)
+@@ -1021,10 +971,12 @@ static __init int setup_disablecpuid(char *arg)
  }
  __setup("clearcpuid=", setup_disablecpuid);
  
@@ -14084,7 +14126,7 @@ index 1a810e4..9fa8201 100644
  
  DEFINE_PER_CPU_FIRST(union irq_stack_union,
  		     irq_stack_union) __aligned(PAGE_SIZE);
-@@ -1036,7 +988,7 @@ DEFINE_PER_CPU(struct task_struct *, current_task) ____cacheline_aligned =
+@@ -1038,7 +990,7 @@ DEFINE_PER_CPU(struct task_struct *, current_task) ____cacheline_aligned =
  EXPORT_PER_CPU_SYMBOL(current_task);
  
  DEFINE_PER_CPU(unsigned long, kernel_stack) =
@@ -14151,7 +14193,7 @@ index 3e6ff6c..54b4992 100644
  }
  #endif
 diff --git a/arch/x86/kernel/cpu/mcheck/mce.c b/arch/x86/kernel/cpu/mcheck/mce.c
-index dee004f..327a57e 100644
+index 61604ae..98250a5 100644
 --- a/arch/x86/kernel/cpu/mcheck/mce.c
 +++ b/arch/x86/kernel/cpu/mcheck/mce.c
 @@ -42,6 +42,7 @@
@@ -14202,7 +14244,7 @@ index dee004f..327a57e 100644
  			return;
  	}
  	/* First print corrected ones that are still unlogged */
-@@ -666,7 +667,7 @@ static int mce_timed_out(u64 *t)
+@@ -684,7 +685,7 @@ static int mce_timed_out(u64 *t)
  	 * might have been modified by someone else.
  	 */
  	rmb();
@@ -14211,7 +14253,7 @@ index dee004f..327a57e 100644
  		wait_for_panic();
  	if (!monarch_timeout)
  		goto out;
-@@ -1454,7 +1455,7 @@ static void unexpected_machine_check(struct pt_regs *regs, long error_code)
+@@ -1535,7 +1536,7 @@ static void unexpected_machine_check(struct pt_regs *regs, long error_code)
  }
  
  /* Call the installed machine check handler for this CPU setup. */
@@ -14220,7 +14262,7 @@ index dee004f..327a57e 100644
  						unexpected_machine_check;
  
  /*
-@@ -1477,7 +1478,9 @@ void __cpuinit mcheck_cpu_init(struct cpuinfo_x86 *c)
+@@ -1558,7 +1559,9 @@ void __cpuinit mcheck_cpu_init(struct cpuinfo_x86 *c)
  		return;
  	}
  
@@ -14230,7 +14272,7 @@ index dee004f..327a57e 100644
  
  	__mcheck_cpu_init_generic();
  	__mcheck_cpu_init_vendor(c);
-@@ -1491,7 +1494,7 @@ void __cpuinit mcheck_cpu_init(struct cpuinfo_x86 *c)
+@@ -1572,7 +1575,7 @@ void __cpuinit mcheck_cpu_init(struct cpuinfo_x86 *c)
   */
  
  static DEFINE_SPINLOCK(mce_chrdev_state_lock);
@@ -14239,7 +14281,7 @@ index dee004f..327a57e 100644
  static int mce_chrdev_open_exclu;	/* already open exclusive? */
  
  static int mce_chrdev_open(struct inode *inode, struct file *file)
-@@ -1499,7 +1502,7 @@ static int mce_chrdev_open(struct inode *inode, struct file *file)
+@@ -1580,7 +1583,7 @@ static int mce_chrdev_open(struct inode *inode, struct file *file)
  	spin_lock(&mce_chrdev_state_lock);
  
  	if (mce_chrdev_open_exclu ||
@@ -14248,7 +14290,7 @@ index dee004f..327a57e 100644
  		spin_unlock(&mce_chrdev_state_lock);
  
  		return -EBUSY;
-@@ -1507,7 +1510,7 @@ static int mce_chrdev_open(struct inode *inode, struct file *file)
+@@ -1588,7 +1591,7 @@ static int mce_chrdev_open(struct inode *inode, struct file *file)
  
  	if (file->f_flags & O_EXCL)
  		mce_chrdev_open_exclu = 1;
@@ -14257,7 +14299,7 @@ index dee004f..327a57e 100644
  
  	spin_unlock(&mce_chrdev_state_lock);
  
-@@ -1518,7 +1521,7 @@ static int mce_chrdev_release(struct inode *inode, struct file *file)
+@@ -1599,7 +1602,7 @@ static int mce_chrdev_release(struct inode *inode, struct file *file)
  {
  	spin_lock(&mce_chrdev_state_lock);
  
@@ -14266,7 +14308,7 @@ index dee004f..327a57e 100644
  	mce_chrdev_open_exclu = 0;
  
  	spin_unlock(&mce_chrdev_state_lock);
-@@ -2237,7 +2240,7 @@ struct dentry *mce_get_debugfs_dir(void)
+@@ -2324,7 +2327,7 @@ struct dentry *mce_get_debugfs_dir(void)
  static void mce_reset(void)
  {
  	cpu_missing = 0;
@@ -14276,18 +14318,18 @@ index dee004f..327a57e 100644
  	atomic_set(&mce_callin, 0);
  	atomic_set(&global_nwo, 0);
 diff --git a/arch/x86/kernel/cpu/mcheck/p5.c b/arch/x86/kernel/cpu/mcheck/p5.c
-index 5c0e653..0882b0a 100644
+index 2d5454c..51987eb 100644
 --- a/arch/x86/kernel/cpu/mcheck/p5.c
 +++ b/arch/x86/kernel/cpu/mcheck/p5.c
-@@ -12,6 +12,7 @@
- #include <asm/system.h>
+@@ -11,6 +11,7 @@
+ #include <asm/processor.h>
  #include <asm/mce.h>
  #include <asm/msr.h>
 +#include <asm/pgtable.h>
  
  /* By default disabled */
  int mce_p5_enabled __read_mostly;
-@@ -50,7 +51,9 @@ void intel_p5_mcheck_init(struct cpuinfo_x86 *c)
+@@ -49,7 +50,9 @@ void intel_p5_mcheck_init(struct cpuinfo_x86 *c)
  	if (!cpu_has(c, X86_FEATURE_MCE))
  		return;
  
@@ -14298,18 +14340,18 @@ index 5c0e653..0882b0a 100644
  	wmb();
  
 diff --git a/arch/x86/kernel/cpu/mcheck/winchip.c b/arch/x86/kernel/cpu/mcheck/winchip.c
-index 54060f5..c1a7577 100644
+index 2d7998f..17c9de1 100644
 --- a/arch/x86/kernel/cpu/mcheck/winchip.c
 +++ b/arch/x86/kernel/cpu/mcheck/winchip.c
-@@ -11,6 +11,7 @@
- #include <asm/system.h>
+@@ -10,6 +10,7 @@
+ #include <asm/processor.h>
  #include <asm/mce.h>
  #include <asm/msr.h>
 +#include <asm/pgtable.h>
  
  /* Machine check handler for WinChip C6: */
  static void winchip_machine_check(struct pt_regs *regs, long error_code)
-@@ -24,7 +25,9 @@ void winchip_mcheck_init(struct cpuinfo_x86 *c)
+@@ -23,7 +24,9 @@ void winchip_mcheck_init(struct cpuinfo_x86 *c)
  {
  	u32 lo, hi;
  
@@ -14346,10 +14388,10 @@ index df5e41f..816c719 100644
  extern int generic_get_free_region(unsigned long base, unsigned long size,
  				   int replace_reg);
 diff --git a/arch/x86/kernel/cpu/perf_event.c b/arch/x86/kernel/cpu/perf_event.c
-index 5adce10..99284ec 100644
+index bb8e034..fb9020b 100644
 --- a/arch/x86/kernel/cpu/perf_event.c
 +++ b/arch/x86/kernel/cpu/perf_event.c
-@@ -1665,7 +1665,7 @@ perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs)
+@@ -1835,7 +1835,7 @@ perf_callchain_user(struct perf_callchain_entry *entry, struct pt_regs *regs)
  			break;
  
  		perf_callchain_store(entry, frame.return_address);
@@ -14410,7 +14452,7 @@ index 37250fe..bf2ec74 100644
  
  		.__cr3		= __pa_nodebug(swapper_pg_dir),
 diff --git a/arch/x86/kernel/dumpstack.c b/arch/x86/kernel/dumpstack.c
-index 4025fe4..d8451c6 100644
+index 1b81839..0b4e7b0 100644
 --- a/arch/x86/kernel/dumpstack.c
 +++ b/arch/x86/kernel/dumpstack.c
 @@ -2,6 +2,9 @@
@@ -14423,18 +14465,25 @@ index 4025fe4..d8451c6 100644
  #include <linux/kallsyms.h>
  #include <linux/kprobes.h>
  #include <linux/uaccess.h>
-@@ -35,9 +38,8 @@ void printk_address(unsigned long address, int reliable)
+@@ -35,16 +38,14 @@ void printk_address(unsigned long address, int reliable)
  static void
  print_ftrace_graph_addr(unsigned long addr, void *data,
  			const struct stacktrace_ops *ops,
 -			struct thread_info *tinfo, int *graph)
 +			struct task_struct *task, int *graph)
  {
--	struct task_struct *task = tinfo->task;
+-	struct task_struct *task;
  	unsigned long ret_addr;
- 	int index = task->curr_ret_stack;
+ 	int index;
+ 
+ 	if (addr != (unsigned long)return_to_handler)
+ 		return;
  
-@@ -58,7 +60,7 @@ print_ftrace_graph_addr(unsigned long addr, void *data,
+-	task = tinfo->task;
+ 	index = task->curr_ret_stack;
+ 
+ 	if (!task->ret_stack || index < *graph)
+@@ -61,7 +62,7 @@ print_ftrace_graph_addr(unsigned long addr, void *data,
  static inline void
  print_ftrace_graph_addr(unsigned long addr, void *data,
  			const struct stacktrace_ops *ops,
@@ -14443,7 +14492,7 @@ index 4025fe4..d8451c6 100644
  { }
  #endif
  
-@@ -69,10 +71,8 @@ print_ftrace_graph_addr(unsigned long addr, void *data,
+@@ -72,10 +73,8 @@ print_ftrace_graph_addr(unsigned long addr, void *data,
   * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
   */
  
@@ -14455,7 +14504,7 @@ index 4025fe4..d8451c6 100644
  	if (end) {
  		if (p < end && p >= (end-THREAD_SIZE))
  			return 1;
-@@ -83,14 +83,14 @@ static inline int valid_stack_ptr(struct thread_info *tinfo,
+@@ -86,14 +85,14 @@ static inline int valid_stack_ptr(struct thread_info *tinfo,
  }
  
  unsigned long
@@ -14472,7 +14521,7 @@ index 4025fe4..d8451c6 100644
  		unsigned long addr;
  
  		addr = *stack;
-@@ -102,7 +102,7 @@ print_context_stack(struct thread_info *tinfo,
+@@ -105,7 +104,7 @@ print_context_stack(struct thread_info *tinfo,
  			} else {
  				ops->address(data, addr, 0);
  			}
@@ -14481,7 +14530,7 @@ index 4025fe4..d8451c6 100644
  		}
  		stack++;
  	}
-@@ -111,7 +111,7 @@ print_context_stack(struct thread_info *tinfo,
+@@ -114,7 +113,7 @@ print_context_stack(struct thread_info *tinfo,
  EXPORT_SYMBOL_GPL(print_context_stack);
  
  unsigned long
@@ -14490,7 +14539,7 @@ index 4025fe4..d8451c6 100644
  		       unsigned long *stack, unsigned long bp,
  		       const struct stacktrace_ops *ops, void *data,
  		       unsigned long *end, int *graph)
-@@ -119,7 +119,7 @@ print_context_stack_bp(struct thread_info *tinfo,
+@@ -122,7 +121,7 @@ print_context_stack_bp(struct thread_info *tinfo,
  	struct stack_frame *frame = (struct stack_frame *)bp;
  	unsigned long *ret_addr = &frame->return_address;
  
@@ -14499,7 +14548,7 @@ index 4025fe4..d8451c6 100644
  		unsigned long addr = *ret_addr;
  
  		if (!__kernel_text_address(addr))
-@@ -128,7 +128,7 @@ print_context_stack_bp(struct thread_info *tinfo,
+@@ -131,7 +130,7 @@ print_context_stack_bp(struct thread_info *tinfo,
  		ops->address(data, addr, 1);
  		frame = frame->next_frame;
  		ret_addr = &frame->return_address;
@@ -14508,7 +14557,7 @@ index 4025fe4..d8451c6 100644
  	}
  
  	return (unsigned long)frame;
-@@ -186,7 +186,7 @@ void dump_stack(void)
+@@ -189,7 +188,7 @@ void dump_stack(void)
  
  	bp = stack_frame(current, NULL);
  	printk("Pid: %d, comm: %.20s %s %s %.*s\n",
@@ -14517,7 +14566,7 @@ index 4025fe4..d8451c6 100644
  		init_utsname()->release,
  		(int)strcspn(init_utsname()->version, " "),
  		init_utsname()->version);
-@@ -222,6 +222,8 @@ unsigned __kprobes long oops_begin(void)
+@@ -225,6 +224,8 @@ unsigned __kprobes long oops_begin(void)
  }
  EXPORT_SYMBOL_GPL(oops_begin);
  
@@ -14526,7 +14575,7 @@ index 4025fe4..d8451c6 100644
  void __kprobes oops_end(unsigned long flags, struct pt_regs *regs, int signr)
  {
  	if (regs && kexec_should_crash(current))
-@@ -243,7 +245,10 @@ void __kprobes oops_end(unsigned long flags, struct pt_regs *regs, int signr)
+@@ -246,7 +247,10 @@ void __kprobes oops_end(unsigned long flags, struct pt_regs *regs, int signr)
  		panic("Fatal exception in interrupt");
  	if (panic_on_oops)
  		panic("Fatal exception");
@@ -14538,7 +14587,7 @@ index 4025fe4..d8451c6 100644
  }
  
  int __kprobes __die(const char *str, struct pt_regs *regs, long err)
-@@ -270,7 +275,7 @@ int __kprobes __die(const char *str, struct pt_regs *regs, long err)
+@@ -273,7 +277,7 @@ int __kprobes __die(const char *str, struct pt_regs *regs, long err)
  
  	show_registers(regs);
  #ifdef CONFIG_X86_32
@@ -14547,7 +14596,7 @@ index 4025fe4..d8451c6 100644
  		sp = regs->sp;
  		ss = regs->ss & 0xffff;
  	} else {
-@@ -298,7 +303,7 @@ void die(const char *str, struct pt_regs *regs, long err)
+@@ -301,7 +305,7 @@ void die(const char *str, struct pt_regs *regs, long err)
  	unsigned long flags = oops_begin();
  	int sig = SIGSEGV;
  
@@ -14557,7 +14606,7 @@ index 4025fe4..d8451c6 100644
  
  	if (__die(str, regs, err))
 diff --git a/arch/x86/kernel/dumpstack_32.c b/arch/x86/kernel/dumpstack_32.c
-index c99f9ed..2a15d80 100644
+index 88ec912..e95e935 100644
 --- a/arch/x86/kernel/dumpstack_32.c
 +++ b/arch/x86/kernel/dumpstack_32.c
 @@ -38,15 +38,13 @@ void dump_trace(struct task_struct *task, struct pt_regs *regs,
@@ -14580,6 +14629,15 @@ index c99f9ed..2a15d80 100644
  		if (ops->stack(data, "IRQ") < 0)
  			break;
  		touch_nmi_watchdog();
+@@ -87,7 +85,7 @@ void show_registers(struct pt_regs *regs)
+ 	int i;
+ 
+ 	print_modules();
+-	__show_regs(regs, !user_mode_vm(regs));
++	__show_regs(regs, !user_mode(regs));
+ 
+ 	printk(KERN_EMERG "Process %.*s (pid: %d, ti=%p task=%p task.ti=%p)\n",
+ 		TASK_COMM_LEN, current->comm, task_pid_nr(current),
 @@ -96,21 +94,22 @@ void show_registers(struct pt_regs *regs)
  	 * When in-kernel, we also print out the stack and code at the
  	 * time of the fault..
@@ -15545,7 +15603,7 @@ index 7b784f4..db6b628 100644
  
  /*
 diff --git a/arch/x86/kernel/entry_64.S b/arch/x86/kernel/entry_64.S
-index 1333d98..b340ca2 100644
+index cdc79b5..4710a75 100644
 --- a/arch/x86/kernel/entry_64.S
 +++ b/arch/x86/kernel/entry_64.S
 @@ -56,6 +56,8 @@
@@ -15919,12 +15977,12 @@ index 1333d98..b340ca2 100644
  	movq %rsp, %rsi
  
  	leaq -RBP(%rsp),%rdi	/* arg1 for handler */
--	testl $3, CS(%rdi)
-+	testb $3, CS(%rdi)
+-	testl $3, CS-RBP(%rsi)
++	testb $3, CS-RBP(%rsi)
  	je 1f
  	SWAPGS
  	/*
-@@ -356,9 +640,10 @@ ENTRY(save_rest)
+@@ -355,9 +639,10 @@ ENTRY(save_rest)
  	movq_cfi r15, R15+16
  	movq %r11, 8(%rsp)	/* return address */
  	FIXUP_TOP_OF_STACK %r11, 16
@@ -15936,7 +15994,7 @@ index 1333d98..b340ca2 100644
  
  /* save complete stack frame */
  	.pushsection .kprobes.text, "ax"
-@@ -387,9 +672,10 @@ ENTRY(save_paranoid)
+@@ -386,9 +671,10 @@ ENTRY(save_paranoid)
  	js 1f	/* negative -> in kernel */
  	SWAPGS
  	xorl %ebx,%ebx
@@ -15949,7 +16007,7 @@ index 1333d98..b340ca2 100644
  	.popsection
  
  /*
-@@ -411,7 +697,7 @@ ENTRY(ret_from_fork)
+@@ -410,7 +696,7 @@ ENTRY(ret_from_fork)
  
  	RESTORE_REST
  
@@ -15958,7 +16016,7 @@ index 1333d98..b340ca2 100644
  	jz   retint_restore_args
  
  	testl $_TIF_IA32, TI_flags(%rcx)	# 32-bit compat task needs IRET
-@@ -421,7 +707,7 @@ ENTRY(ret_from_fork)
+@@ -420,7 +706,7 @@ ENTRY(ret_from_fork)
  	jmp ret_from_sys_call			# go to the SYSRET fastpath
  
  	CFI_ENDPROC
@@ -15967,7 +16025,7 @@ index 1333d98..b340ca2 100644
  
  /*
   * System call entry. Up to 6 arguments in registers are supported.
-@@ -457,7 +743,7 @@ END(ret_from_fork)
+@@ -456,7 +742,7 @@ END(ret_from_fork)
  ENTRY(system_call)
  	CFI_STARTPROC	simple
  	CFI_SIGNAL_FRAME
@@ -15976,7 +16034,7 @@ index 1333d98..b340ca2 100644
  	CFI_REGISTER	rip,rcx
  	/*CFI_REGISTER	rflags,r11*/
  	SWAPGS_UNSAFE_STACK
-@@ -470,21 +756,23 @@ GLOBAL(system_call_after_swapgs)
+@@ -469,16 +755,18 @@ GLOBAL(system_call_after_swapgs)
  
  	movq	%rsp,PER_CPU_VAR(old_rsp)
  	movq	PER_CPU_VAR(kernel_stack),%rsp
@@ -15996,14 +16054,17 @@ index 1333d98..b340ca2 100644
 +	testl $_TIF_WORK_SYSCALL_ENTRY,TI_flags(%rcx)
  	jnz tracesys
  system_call_fastpath:
- 	cmpq $__NR_syscall_max,%rax
+ #if __SYSCALL_MASK == ~0
+@@ -488,7 +776,7 @@ system_call_fastpath:
+ 	cmpl $__NR_syscall_max,%eax
+ #endif
  	ja badsys
 -	movq %r10,%rcx
 +	movq R10-ARGOFFSET(%rsp),%rcx
  	call *sys_call_table(,%rax,8)  # XXX:	 rip relative
  	movq %rax,RAX-ARGOFFSET(%rsp)
  /*
-@@ -498,10 +786,13 @@ sysret_check:
+@@ -502,10 +790,13 @@ sysret_check:
  	LOCKDEP_SYS_EXIT
  	DISABLE_INTERRUPTS(CLBR_NONE)
  	TRACE_IRQS_OFF
@@ -16018,7 +16079,7 @@ index 1333d98..b340ca2 100644
  	/*
  	 * sysretq will re-enable interrupts:
  	 */
-@@ -553,14 +844,18 @@ badsys:
+@@ -557,14 +848,18 @@ badsys:
  	 * jump back to the normal fast path.
  	 */
  auditsys:
@@ -16038,7 +16099,7 @@ index 1333d98..b340ca2 100644
  	jmp system_call_fastpath
  
  	/*
-@@ -581,7 +876,7 @@ sysret_audit:
+@@ -585,7 +880,7 @@ sysret_audit:
  	/* Do syscall tracing */
  tracesys:
  #ifdef CONFIG_AUDITSYSCALL
@@ -16047,7 +16108,7 @@ index 1333d98..b340ca2 100644
  	jz auditsys
  #endif
  	SAVE_REST
-@@ -589,16 +884,20 @@ tracesys:
+@@ -593,12 +888,16 @@ tracesys:
  	FIXUP_TOP_OF_STACK %rdi
  	movq %rsp,%rdi
  	call syscall_trace_enter
@@ -16062,14 +16123,18 @@ index 1333d98..b340ca2 100644
  	LOAD_ARGS ARGOFFSET, 1
 +	pax_set_fptr_mask
  	RESTORE_REST
+ #if __SYSCALL_MASK == ~0
  	cmpq $__NR_syscall_max,%rax
+@@ -607,7 +906,7 @@ tracesys:
+ 	cmpl $__NR_syscall_max,%eax
+ #endif
  	ja   int_ret_from_sys_call	/* RAX(%rsp) set to -ENOSYS above */
 -	movq %r10,%rcx	/* fixup for C */
 +	movq R10-ARGOFFSET(%rsp),%rcx	/* fixup for C */
  	call *sys_call_table(,%rax,8)
  	movq %rax,RAX-ARGOFFSET(%rsp)
  	/* Use IRET because user could have changed frame */
-@@ -619,6 +918,7 @@ GLOBAL(int_with_check)
+@@ -628,6 +927,7 @@ GLOBAL(int_with_check)
  	andl %edi,%edx
  	jnz   int_careful
  	andl    $~TS_COMPAT,TI_status(%rcx)
@@ -16077,7 +16142,7 @@ index 1333d98..b340ca2 100644
  	jmp   retint_swapgs
  
  	/* Either reschedule or signal or syscall exit tracking needed. */
-@@ -665,7 +965,7 @@ int_restore_rest:
+@@ -674,7 +974,7 @@ int_restore_rest:
  	TRACE_IRQS_OFF
  	jmp int_with_check
  	CFI_ENDPROC
@@ -16086,7 +16151,7 @@ index 1333d98..b340ca2 100644
  
  /*
   * Certain special system calls that need to save a complete full stack frame.
-@@ -681,7 +981,7 @@ ENTRY(\label)
+@@ -690,7 +990,7 @@ ENTRY(\label)
  	call \func
  	jmp ptregscall_common
  	CFI_ENDPROC
@@ -16095,7 +16160,7 @@ index 1333d98..b340ca2 100644
  	.endm
  
  	PTREGSCALL stub_clone, sys_clone, %r8
-@@ -699,9 +999,10 @@ ENTRY(ptregscall_common)
+@@ -708,9 +1008,10 @@ ENTRY(ptregscall_common)
  	movq_cfi_restore R12+8, r12
  	movq_cfi_restore RBP+8, rbp
  	movq_cfi_restore RBX+8, rbx
@@ -16107,7 +16172,7 @@ index 1333d98..b340ca2 100644
  
  ENTRY(stub_execve)
  	CFI_STARTPROC
-@@ -716,7 +1017,7 @@ ENTRY(stub_execve)
+@@ -725,7 +1026,7 @@ ENTRY(stub_execve)
  	RESTORE_REST
  	jmp int_ret_from_sys_call
  	CFI_ENDPROC
@@ -16116,16 +16181,16 @@ index 1333d98..b340ca2 100644
  
  /*
   * sigreturn is special because it needs to restore all registers on return.
-@@ -734,7 +1035,7 @@ ENTRY(stub_rt_sigreturn)
+@@ -743,7 +1044,7 @@ ENTRY(stub_rt_sigreturn)
  	RESTORE_REST
  	jmp int_ret_from_sys_call
  	CFI_ENDPROC
 -END(stub_rt_sigreturn)
 +ENDPROC(stub_rt_sigreturn)
  
- /*
-  * Build the entry stubs and pointer table with some assembler magic.
-@@ -769,7 +1070,7 @@ vector=vector+1
+ #ifdef CONFIG_X86_X32_ABI
+ 	PTREGSCALL stub_x32_sigaltstack, sys32_sigaltstack, %rdx
+@@ -812,7 +1113,7 @@ vector=vector+1
  2:	jmp common_interrupt
  .endr
  	CFI_ENDPROC
@@ -16134,7 +16199,7 @@ index 1333d98..b340ca2 100644
  
  .previous
  END(interrupt)
-@@ -789,6 +1090,16 @@ END(interrupt)
+@@ -832,6 +1133,16 @@ END(interrupt)
  	subq $ORIG_RAX-RBP, %rsp
  	CFI_ADJUST_CFA_OFFSET ORIG_RAX-RBP
  	SAVE_ARGS_IRQ
@@ -16151,7 +16216,7 @@ index 1333d98..b340ca2 100644
  	call \func
  	.endm
  
-@@ -820,7 +1131,7 @@ ret_from_intr:
+@@ -863,7 +1174,7 @@ ret_from_intr:
  
  exit_intr:
  	GET_THREAD_INFO(%rcx)
@@ -16160,7 +16225,7 @@ index 1333d98..b340ca2 100644
  	je retint_kernel
  
  	/* Interrupt came from user space */
-@@ -842,12 +1153,15 @@ retint_swapgs:		/* return to user-space */
+@@ -885,12 +1196,15 @@ retint_swapgs:		/* return to user-space */
  	 * The iretq could re-enable interrupts:
  	 */
  	DISABLE_INTERRUPTS(CLBR_ANY)
@@ -16176,7 +16241,7 @@ index 1333d98..b340ca2 100644
  	/*
  	 * The iretq could re-enable interrupts:
  	 */
-@@ -936,7 +1250,7 @@ ENTRY(retint_kernel)
+@@ -979,7 +1293,7 @@ ENTRY(retint_kernel)
  #endif
  
  	CFI_ENDPROC
@@ -16185,7 +16250,7 @@ index 1333d98..b340ca2 100644
  /*
   * End of kprobes section
   */
-@@ -953,7 +1267,7 @@ ENTRY(\sym)
+@@ -996,7 +1310,7 @@ ENTRY(\sym)
  	interrupt \do_sym
  	jmp ret_from_intr
  	CFI_ENDPROC
@@ -16194,7 +16259,7 @@ index 1333d98..b340ca2 100644
  .endm
  
  #ifdef CONFIG_SMP
-@@ -1026,12 +1340,22 @@ ENTRY(\sym)
+@@ -1069,12 +1383,22 @@ ENTRY(\sym)
  	CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
  	call error_entry
  	DEFAULT_FRAME 0
@@ -16218,7 +16283,7 @@ index 1333d98..b340ca2 100644
  .endm
  
  .macro paranoidzeroentry sym do_sym
-@@ -1043,15 +1367,25 @@ ENTRY(\sym)
+@@ -1086,15 +1410,25 @@ ENTRY(\sym)
  	CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
  	call save_paranoid
  	TRACE_IRQS_OFF
@@ -16246,7 +16311,7 @@ index 1333d98..b340ca2 100644
  .macro paranoidzeroentry_ist sym do_sym ist
  ENTRY(\sym)
  	INTR_FRAME
-@@ -1061,14 +1395,30 @@ ENTRY(\sym)
+@@ -1104,14 +1438,30 @@ ENTRY(\sym)
  	CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
  	call save_paranoid
  	TRACE_IRQS_OFF
@@ -16278,7 +16343,7 @@ index 1333d98..b340ca2 100644
  .endm
  
  .macro errorentry sym do_sym
-@@ -1079,13 +1429,23 @@ ENTRY(\sym)
+@@ -1122,13 +1472,23 @@ ENTRY(\sym)
  	CFI_ADJUST_CFA_OFFSET ORIG_RAX-R15
  	call error_entry
  	DEFAULT_FRAME 0
@@ -16303,7 +16368,7 @@ index 1333d98..b340ca2 100644
  .endm
  
  	/* error code is on the stack already */
-@@ -1098,13 +1458,23 @@ ENTRY(\sym)
+@@ -1141,13 +1501,23 @@ ENTRY(\sym)
  	call save_paranoid
  	DEFAULT_FRAME 0
  	TRACE_IRQS_OFF
@@ -16328,7 +16393,7 @@ index 1333d98..b340ca2 100644
  .endm
  
  zeroentry divide_error do_divide_error
-@@ -1134,9 +1504,10 @@ gs_change:
+@@ -1177,9 +1547,10 @@ gs_change:
  2:	mfence		/* workaround */
  	SWAPGS
  	popfq_cfi
@@ -16340,7 +16405,7 @@ index 1333d98..b340ca2 100644
  
  	.section __ex_table,"a"
  	.align 8
-@@ -1158,13 +1529,14 @@ ENTRY(kernel_thread_helper)
+@@ -1201,13 +1572,14 @@ ENTRY(kernel_thread_helper)
  	 * Here we are in the child and the registers are set as they were
  	 * at kernel_thread() invocation in the parent.
  	 */
@@ -16356,7 +16421,7 @@ index 1333d98..b340ca2 100644
  
  /*
   * execve(). This function needs to use IRET, not SYSRET, to set up all state properly.
-@@ -1191,11 +1563,11 @@ ENTRY(kernel_execve)
+@@ -1234,11 +1606,11 @@ ENTRY(kernel_execve)
  	RESTORE_REST
  	testq %rax,%rax
  	je int_ret_from_sys_call
@@ -16370,7 +16435,7 @@ index 1333d98..b340ca2 100644
  
  /* Call softirq on interrupt stack. Interrupts are off. */
  ENTRY(call_softirq)
-@@ -1213,9 +1585,10 @@ ENTRY(call_softirq)
+@@ -1256,9 +1628,10 @@ ENTRY(call_softirq)
  	CFI_DEF_CFA_REGISTER	rsp
  	CFI_ADJUST_CFA_OFFSET   -8
  	decl PER_CPU_VAR(irq_count)
@@ -16382,7 +16447,7 @@ index 1333d98..b340ca2 100644
  
  #ifdef CONFIG_XEN
  zeroentry xen_hypervisor_callback xen_do_hypervisor_callback
-@@ -1253,7 +1626,7 @@ ENTRY(xen_do_hypervisor_callback)   # do_hypervisor_callback(struct *pt_regs)
+@@ -1296,7 +1669,7 @@ ENTRY(xen_do_hypervisor_callback)   # do_hypervisor_callback(struct *pt_regs)
  	decl PER_CPU_VAR(irq_count)
  	jmp  error_exit
  	CFI_ENDPROC
@@ -16391,7 +16456,7 @@ index 1333d98..b340ca2 100644
  
  /*
   * Hypervisor uses this for application faults while it executes.
-@@ -1312,7 +1685,7 @@ ENTRY(xen_failsafe_callback)
+@@ -1355,7 +1728,7 @@ ENTRY(xen_failsafe_callback)
  	SAVE_ALL
  	jmp error_exit
  	CFI_ENDPROC
@@ -16400,7 +16465,7 @@ index 1333d98..b340ca2 100644
  
  apicinterrupt XEN_HVM_EVTCHN_CALLBACK \
  	xen_hvm_callback_vector xen_evtchn_do_upcall
-@@ -1361,16 +1734,31 @@ ENTRY(paranoid_exit)
+@@ -1404,16 +1777,31 @@ ENTRY(paranoid_exit)
  	TRACE_IRQS_OFF
  	testl %ebx,%ebx				/* swapgs needed? */
  	jnz paranoid_restore
@@ -16433,7 +16498,7 @@ index 1333d98..b340ca2 100644
  	jmp irq_return
  paranoid_userspace:
  	GET_THREAD_INFO(%rcx)
-@@ -1399,7 +1787,7 @@ paranoid_schedule:
+@@ -1442,7 +1830,7 @@ paranoid_schedule:
  	TRACE_IRQS_OFF
  	jmp paranoid_userspace
  	CFI_ENDPROC
@@ -16442,7 +16507,7 @@ index 1333d98..b340ca2 100644
  
  /*
   * Exception entry point. This expects an error code/orig_rax on the stack.
-@@ -1426,12 +1814,13 @@ ENTRY(error_entry)
+@@ -1469,12 +1857,13 @@ ENTRY(error_entry)
  	movq_cfi r14, R14+8
  	movq_cfi r15, R15+8
  	xorl %ebx,%ebx
@@ -16457,7 +16522,7 @@ index 1333d98..b340ca2 100644
  	ret
  
  /*
-@@ -1458,7 +1847,7 @@ bstep_iret:
+@@ -1501,7 +1890,7 @@ bstep_iret:
  	movq %rcx,RIP+8(%rsp)
  	jmp error_swapgs
  	CFI_ENDPROC
@@ -16466,7 +16531,7 @@ index 1333d98..b340ca2 100644
  
  
  /* ebx:	no swapgs flag (1: don't need swapgs, 0: need it) */
-@@ -1478,7 +1867,7 @@ ENTRY(error_exit)
+@@ -1521,7 +1910,7 @@ ENTRY(error_exit)
  	jnz retint_careful
  	jmp retint_swapgs
  	CFI_ENDPROC
@@ -16475,7 +16540,7 @@ index 1333d98..b340ca2 100644
  
  /*
   * Test if a given stack is an NMI stack or not.
-@@ -1535,9 +1924,11 @@ ENTRY(nmi)
+@@ -1579,9 +1968,11 @@ ENTRY(nmi)
  	 * If %cs was not the kernel segment, then the NMI triggered in user
  	 * space, which means it is definitely not nested.
  	 */
@@ -16488,7 +16553,7 @@ index 1333d98..b340ca2 100644
  	/*
  	 * Check the special variable on the stack to see if NMIs are
  	 * executing.
-@@ -1659,6 +2050,16 @@ restart_nmi:
+@@ -1728,6 +2119,16 @@ end_repeat_nmi:
  	 */
  	call save_paranoid
  	DEFAULT_FRAME 0
@@ -16505,7 +16570,7 @@ index 1333d98..b340ca2 100644
  	/* paranoidentry do_nmi, 0; without TRACE_IRQS_OFF */
  	movq %rsp,%rdi
  	movq $-1,%rsi
-@@ -1666,14 +2067,25 @@ restart_nmi:
+@@ -1735,21 +2136,32 @@ end_repeat_nmi:
  	testl %ebx,%ebx				/* swapgs needed? */
  	jnz nmi_restore
  nmi_swapgs:
@@ -16530,9 +16595,8 @@ index 1333d98..b340ca2 100644
 -END(nmi)
 +ENDPROC(nmi)
  
- 	/*
- 	 * If an NMI hit an iret because of an exception or breakpoint,
-@@ -1700,7 +2112,7 @@ ENTRY(ignore_sysret)
+ ENTRY(ignore_sysret)
+ 	CFI_STARTPROC
  	mov $-ENOSYS,%eax
  	sysret
  	CFI_ENDPROC
@@ -17385,11 +17449,24 @@ index 9c3bd4a..e1d9b35 100644
 +#ifdef CONFIG_PAX_KERNEXEC
 +EXPORT_SYMBOL(__LOAD_PHYSICAL_ADDR);
 +#endif
+diff --git a/arch/x86/kernel/i387.c b/arch/x86/kernel/i387.c
+index 2d6e649..df6e1af 100644
+--- a/arch/x86/kernel/i387.c
++++ b/arch/x86/kernel/i387.c
+@@ -59,7 +59,7 @@ static inline bool interrupted_kernel_fpu_idle(void)
+ static inline bool interrupted_user_mode(void)
+ {
+ 	struct pt_regs *regs = get_irq_regs();
+-	return regs && user_mode_vm(regs);
++	return regs && user_mode(regs);
+ }
+ 
+ /*
 diff --git a/arch/x86/kernel/i8259.c b/arch/x86/kernel/i8259.c
-index 6104852..6114160 100644
+index 36d1853..bf25736 100644
 --- a/arch/x86/kernel/i8259.c
 +++ b/arch/x86/kernel/i8259.c
-@@ -210,7 +210,7 @@ spurious_8259A_irq:
+@@ -209,7 +209,7 @@ spurious_8259A_irq:
  			       "spurious 8259A interrupt: IRQ%d.\n", irq);
  			spurious_irq_mask |= irqmask;
  		}
@@ -17468,7 +17545,7 @@ index 8c96897..be66bfa 100644
  			return -EPERM;
  	}
 diff --git a/arch/x86/kernel/irq.c b/arch/x86/kernel/irq.c
-index 7943e0c..dd32c5c 100644
+index 3dafc60..aa8e9c4 100644
 --- a/arch/x86/kernel/irq.c
 +++ b/arch/x86/kernel/irq.c
 @@ -18,7 +18,7 @@
@@ -17506,7 +17583,7 @@ index 7943e0c..dd32c5c 100644
  	return sum;
  }
 diff --git a/arch/x86/kernel/irq_32.c b/arch/x86/kernel/irq_32.c
-index 40fc861..9b8739b 100644
+index 58b7f27..e112d08 100644
 --- a/arch/x86/kernel/irq_32.c
 +++ b/arch/x86/kernel/irq_32.c
 @@ -39,7 +39,7 @@ static int check_stack_overflow(void)
@@ -17541,7 +17618,7 @@ index 40fc861..9b8739b 100644
  	irqctx = __this_cpu_read(hardirq_ctx);
  
  	/*
-@@ -92,21 +91,16 @@ execute_on_irq_stack(int overflow, struct irq_desc *desc, int irq)
+@@ -92,16 +91,16 @@ execute_on_irq_stack(int overflow, struct irq_desc *desc, int irq)
  	 * handler) we can't do that and just have to keep using the
  	 * current stack (which is the irq stack already after all)
  	 */
@@ -17556,20 +17633,15 @@ index 40fc861..9b8739b 100644
 +	isp = (u32 *) ((char *)irqctx + sizeof(*irqctx) - 8);
 +	irqctx->previous_esp = current_stack_pointer;
  
--	/*
--	 * Copy the softirq bits in preempt_count so that the
--	 * softirq checks work in the hardirq context.
--	 */
--	irqctx->tinfo.preempt_count =
--		(irqctx->tinfo.preempt_count & ~SOFTIRQ_MASK) |
--		(curctx->tinfo.preempt_count & SOFTIRQ_MASK);
+-	/* Copy the preempt_count so that the [soft]irq checks work. */
+-	irqctx->tinfo.preempt_count = curctx->tinfo.preempt_count;
 +#ifdef CONFIG_PAX_MEMORY_UDEREF
 +	__set_fs(MAKE_MM_SEG(0));
 +#endif
  
  	if (unlikely(overflow))
  		call_on_stack(print_stack_overflow, isp);
-@@ -118,6 +112,11 @@ execute_on_irq_stack(int overflow, struct irq_desc *desc, int irq)
+@@ -113,6 +112,11 @@ execute_on_irq_stack(int overflow, struct irq_desc *desc, int irq)
  		     :  "0" (irq),   "1" (desc),  "2" (isp),
  			"D" (desc->handle_irq)
  		     : "memory", "cc", "ecx");
@@ -17581,7 +17653,7 @@ index 40fc861..9b8739b 100644
  	return 1;
  }
  
-@@ -126,29 +125,11 @@ execute_on_irq_stack(int overflow, struct irq_desc *desc, int irq)
+@@ -121,29 +125,11 @@ execute_on_irq_stack(int overflow, struct irq_desc *desc, int irq)
   */
  void __cpuinit irq_ctx_init(int cpu)
  {
@@ -17613,7 +17685,7 @@ index 40fc861..9b8739b 100644
  
  	printk(KERN_DEBUG "CPU %u irqstacks, hard=%p soft=%p\n",
  	       cpu, per_cpu(hardirq_ctx, cpu),  per_cpu(softirq_ctx, cpu));
-@@ -157,7 +138,6 @@ void __cpuinit irq_ctx_init(int cpu)
+@@ -152,7 +138,6 @@ void __cpuinit irq_ctx_init(int cpu)
  asmlinkage void do_softirq(void)
  {
  	unsigned long flags;
@@ -17621,7 +17693,7 @@ index 40fc861..9b8739b 100644
  	union irq_ctx *irqctx;
  	u32 *isp;
  
-@@ -167,15 +147,22 @@ asmlinkage void do_softirq(void)
+@@ -162,15 +147,22 @@ asmlinkage void do_softirq(void)
  	local_irq_save(flags);
  
  	if (local_softirq_pending()) {
@@ -17648,6 +17720,15 @@ index 40fc861..9b8739b 100644
  		/*
  		 * Shouldn't happen, we returned above if in_interrupt():
  		 */
+@@ -191,7 +183,7 @@ bool handle_irq(unsigned irq, struct pt_regs *regs)
+ 	if (unlikely(!desc))
+ 		return false;
+ 
+-	if (user_mode_vm(regs) || !execute_on_irq_stack(overflow, desc, irq)) {
++	if (user_mode(regs) || !execute_on_irq_stack(overflow, desc, irq)) {
+ 		if (unlikely(overflow))
+ 			print_stack_overflow();
+ 		desc->handle_irq(irq, desc);
 diff --git a/arch/x86/kernel/irq_64.c b/arch/x86/kernel/irq_64.c
 index d04d3ec..ea4b374 100644
 --- a/arch/x86/kernel/irq_64.c
@@ -17662,7 +17743,7 @@ index d04d3ec..ea4b374 100644
  
  	if (regs->sp >= curbase + sizeof(struct thread_info) +
 diff --git a/arch/x86/kernel/kdebugfs.c b/arch/x86/kernel/kdebugfs.c
-index 90fcf62..e682cdd 100644
+index 1d5d31e..ab846ed 100644
 --- a/arch/x86/kernel/kdebugfs.c
 +++ b/arch/x86/kernel/kdebugfs.c
 @@ -28,6 +28,8 @@ struct setup_data_node {
@@ -17675,10 +17756,10 @@ index 90fcf62..e682cdd 100644
  {
  	struct setup_data_node *node = file->private_data;
 diff --git a/arch/x86/kernel/kgdb.c b/arch/x86/kernel/kgdb.c
-index 2f45c4c..d95504f 100644
+index 8bfb614..2b3b35f 100644
 --- a/arch/x86/kernel/kgdb.c
 +++ b/arch/x86/kernel/kgdb.c
-@@ -126,11 +126,11 @@ char *dbg_get_reg(int regno, void *mem, struct pt_regs *regs)
+@@ -127,11 +127,11 @@ char *dbg_get_reg(int regno, void *mem, struct pt_regs *regs)
  #ifdef CONFIG_X86_32
  	switch (regno) {
  	case GDB_SS:
@@ -17692,7 +17773,7 @@ index 2f45c4c..d95504f 100644
  			*(unsigned long *)mem = kernel_stack_pointer(regs);
  		break;
  	case GDB_GS:
-@@ -475,12 +475,12 @@ int kgdb_arch_handle_exception(int e_vector, int signo, int err_code,
+@@ -476,12 +476,12 @@ int kgdb_arch_handle_exception(int e_vector, int signo, int err_code,
  	case 'k':
  		/* clear the trace bit */
  		linux_regs->flags &= ~X86_EFLAGS_TF;
@@ -17707,7 +17788,7 @@ index 2f45c4c..d95504f 100644
  				   raw_smp_processor_id());
  		}
  
-@@ -545,7 +545,7 @@ static int __kgdb_notify(struct die_args *args, unsigned long cmd)
+@@ -546,7 +546,7 @@ static int __kgdb_notify(struct die_args *args, unsigned long cmd)
  
  	switch (cmd) {
  	case DIE_DEBUG:
@@ -17716,11 +17797,47 @@ index 2f45c4c..d95504f 100644
  			if (user_mode(regs))
  				return single_step_cont(regs, args);
  			break;
+diff --git a/arch/x86/kernel/kprobes-opt.c b/arch/x86/kernel/kprobes-opt.c
+index c5e410e..da6aaf9 100644
+--- a/arch/x86/kernel/kprobes-opt.c
++++ b/arch/x86/kernel/kprobes-opt.c
+@@ -338,7 +338,7 @@ int __kprobes arch_prepare_optimized_kprobe(struct optimized_kprobe *op)
+ 	 * Verify if the address gap is in 2GB range, because this uses
+ 	 * a relative jump.
+ 	 */
+-	rel = (long)op->optinsn.insn - (long)op->kp.addr + RELATIVEJUMP_SIZE;
++	rel = (long)op->optinsn.insn - ktla_ktva((long)op->kp.addr) + RELATIVEJUMP_SIZE;
+ 	if (abs(rel) > 0x7fffffff)
+ 		return -ERANGE;
+ 
+@@ -359,11 +359,11 @@ int __kprobes arch_prepare_optimized_kprobe(struct optimized_kprobe *op)
+ 	synthesize_set_arg1(buf + TMPL_MOVE_IDX, (unsigned long)op);
+ 
+ 	/* Set probe function call */
+-	synthesize_relcall(buf + TMPL_CALL_IDX, optimized_callback);
++	synthesize_relcall(buf + TMPL_CALL_IDX, ktla_ktva(optimized_callback));
+ 
+ 	/* Set returning jmp instruction at the tail of out-of-line buffer */
+ 	synthesize_reljump(buf + TMPL_END_IDX + op->optinsn.size,
+-			   (u8 *)op->kp.addr + op->optinsn.size);
++			   (u8 *)ktla_ktva(op->kp.addr) + op->optinsn.size);
+ 
+ 	flush_icache_range((unsigned long) buf,
+ 			   (unsigned long) buf + TMPL_END_IDX +
+@@ -385,7 +385,7 @@ static void __kprobes setup_optimize_kprobe(struct text_poke_param *tprm,
+ 			((long)op->kp.addr + RELATIVEJUMP_SIZE));
+ 
+ 	/* Backup instructions which will be replaced by jump address */
+-	memcpy(op->optinsn.copied_insn, op->kp.addr + INT3_SIZE,
++	memcpy(op->optinsn.copied_insn, ktla_ktva(op->kp.addr) + INT3_SIZE,
+ 	       RELATIVE_ADDR_SIZE);
+ 
+ 	insn_buf[0] = RELATIVEJUMP_OPCODE;
 diff --git a/arch/x86/kernel/kprobes.c b/arch/x86/kernel/kprobes.c
-index 7da647d..56fe348 100644
+index e213fc8..d783ba4 100644
 --- a/arch/x86/kernel/kprobes.c
 +++ b/arch/x86/kernel/kprobes.c
-@@ -118,8 +118,11 @@ static void __kprobes __synthesize_relative_insn(void *from, void *to, u8 op)
+@@ -120,8 +120,11 @@ static void __kprobes __synthesize_relative_insn(void *from, void *to, u8 op)
  	} __attribute__((packed)) *insn;
  
  	insn = (struct __arch_relative_insn *)from;
@@ -17732,7 +17849,7 @@ index 7da647d..56fe348 100644
  }
  
  /* Insert a jump instruction at address 'from', which jumps to address 'to'.*/
-@@ -156,7 +159,7 @@ static int __kprobes can_boost(kprobe_opcode_t *opcodes)
+@@ -164,7 +167,7 @@ int __kprobes can_boost(kprobe_opcode_t *opcodes)
  	kprobe_opcode_t opcode;
  	kprobe_opcode_t *orig_opcodes = opcodes;
  
@@ -17741,18 +17858,18 @@ index 7da647d..56fe348 100644
  		return 0;	/* Page fault may occur on this address. */
  
  retry:
-@@ -317,7 +320,9 @@ static int __kprobes __copy_instruction(u8 *dest, u8 *src, int recover)
- 		}
- 	}
- 	insn_get_length(&insn);
+@@ -332,7 +335,9 @@ int __kprobes __copy_instruction(u8 *dest, u8 *src)
+ 	/* Another subsystem puts a breakpoint, failed to recover */
+ 	if (insn.opcode.bytes[0] == BREAKPOINT_INSTRUCTION)
+ 		return 0;
 +	pax_open_kernel();
  	memcpy(dest, insn.kaddr, insn.length);
 +	pax_close_kernel();
  
  #ifdef CONFIG_X86_64
  	if (insn_rip_relative(&insn)) {
-@@ -341,7 +346,9 @@ static int __kprobes __copy_instruction(u8 *dest, u8 *src, int recover)
- 			  (u8 *) dest;
+@@ -355,7 +360,9 @@ int __kprobes __copy_instruction(u8 *dest, u8 *src)
+ 		newdisp = (u8 *) src + (s64) insn.displacement.value - (u8 *) dest;
  		BUG_ON((s64) (s32) newdisp != newdisp); /* Sanity check.  */
  		disp = (u8 *) dest + insn_offset_displacement(&insn);
 +		pax_open_kernel();
@@ -17761,22 +17878,7 @@ index 7da647d..56fe348 100644
  	}
  #endif
  	return insn.length;
-@@ -355,12 +362,12 @@ static void __kprobes arch_copy_kprobe(struct kprobe *p)
- 	 */
- 	__copy_instruction(p->ainsn.insn, p->addr, 0);
- 
--	if (can_boost(p->addr))
-+	if (can_boost(ktla_ktva(p->addr)))
- 		p->ainsn.boostable = 0;
- 	else
- 		p->ainsn.boostable = -1;
- 
--	p->opcode = *p->addr;
-+	p->opcode = *(ktla_ktva(p->addr));
- }
- 
- int __kprobes arch_prepare_kprobe(struct kprobe *p)
-@@ -477,7 +484,7 @@ static void __kprobes setup_singlestep(struct kprobe *p, struct pt_regs *regs,
+@@ -485,7 +492,7 @@ setup_singlestep(struct kprobe *p, struct pt_regs *regs, struct kprobe_ctlblk *k
  		 * nor set current_kprobe, because it doesn't use single
  		 * stepping.
  		 */
@@ -17785,7 +17887,7 @@ index 7da647d..56fe348 100644
  		preempt_enable_no_resched();
  		return;
  	}
-@@ -496,7 +503,7 @@ static void __kprobes setup_singlestep(struct kprobe *p, struct pt_regs *regs,
+@@ -504,7 +511,7 @@ setup_singlestep(struct kprobe *p, struct pt_regs *regs, struct kprobe_ctlblk *k
  	if (p->opcode == BREAKPOINT_INSTRUCTION)
  		regs->ip = (unsigned long)p->addr;
  	else
@@ -17794,7 +17896,7 @@ index 7da647d..56fe348 100644
  }
  
  /*
-@@ -575,7 +582,7 @@ static int __kprobes kprobe_handler(struct pt_regs *regs)
+@@ -583,7 +590,7 @@ static int __kprobes kprobe_handler(struct pt_regs *regs)
  				setup_singlestep(p, regs, kcb, 0);
  			return 1;
  		}
@@ -17803,7 +17905,7 @@ index 7da647d..56fe348 100644
  		/*
  		 * The breakpoint instruction was removed right
  		 * after we hit it.  Another cpu has removed
-@@ -683,6 +690,9 @@ static void __used __kprobes kretprobe_trampoline_holder(void)
+@@ -628,6 +635,9 @@ static void __used __kprobes kretprobe_trampoline_holder(void)
  			"	movq %rax, 152(%rsp)\n"
  			RESTORE_REGS_STRING
  			"	popfq\n"
@@ -17813,8 +17915,8 @@ index 7da647d..56fe348 100644
  #else
  			"	pushf\n"
  			SAVE_REGS_STRING
-@@ -820,7 +830,7 @@ static void __kprobes resume_execution(struct kprobe *p,
- 		struct pt_regs *regs, struct kprobe_ctlblk *kcb)
+@@ -765,7 +775,7 @@ static void __kprobes
+ resume_execution(struct kprobe *p, struct pt_regs *regs, struct kprobe_ctlblk *kcb)
  {
  	unsigned long *tos = stack_addr(regs);
 -	unsigned long copy_ip = (unsigned long)p->ainsn.insn;
@@ -17822,7 +17924,7 @@ index 7da647d..56fe348 100644
  	unsigned long orig_ip = (unsigned long)p->addr;
  	kprobe_opcode_t *insn = p->ainsn.insn;
  
-@@ -1002,7 +1012,7 @@ int __kprobes kprobe_exceptions_notify(struct notifier_block *self,
+@@ -947,7 +957,7 @@ kprobe_exceptions_notify(struct notifier_block *self, unsigned long val, void *d
  	struct die_args *args = data;
  	int ret = NOTIFY_DONE;
  
@@ -17831,43 +17933,11 @@ index 7da647d..56fe348 100644
  		return ret;
  
  	switch (val) {
-@@ -1384,7 +1394,7 @@ int __kprobes arch_prepare_optimized_kprobe(struct optimized_kprobe *op)
- 	 * Verify if the address gap is in 2GB range, because this uses
- 	 * a relative jump.
- 	 */
--	rel = (long)op->optinsn.insn - (long)op->kp.addr + RELATIVEJUMP_SIZE;
-+	rel = (long)op->optinsn.insn - ktla_ktva((long)op->kp.addr) + RELATIVEJUMP_SIZE;
- 	if (abs(rel) > 0x7fffffff)
- 		return -ERANGE;
- 
-@@ -1405,11 +1415,11 @@ int __kprobes arch_prepare_optimized_kprobe(struct optimized_kprobe *op)
- 	synthesize_set_arg1(buf + TMPL_MOVE_IDX, (unsigned long)op);
- 
- 	/* Set probe function call */
--	synthesize_relcall(buf + TMPL_CALL_IDX, optimized_callback);
-+	synthesize_relcall(buf + TMPL_CALL_IDX, ktla_ktva(optimized_callback));
- 
- 	/* Set returning jmp instruction at the tail of out-of-line buffer */
- 	synthesize_reljump(buf + TMPL_END_IDX + op->optinsn.size,
--			   (u8 *)op->kp.addr + op->optinsn.size);
-+			   (u8 *)ktla_ktva(op->kp.addr) + op->optinsn.size);
- 
- 	flush_icache_range((unsigned long) buf,
- 			   (unsigned long) buf + TMPL_END_IDX +
-@@ -1431,7 +1441,7 @@ static void __kprobes setup_optimize_kprobe(struct text_poke_param *tprm,
- 			((long)op->kp.addr + RELATIVEJUMP_SIZE));
- 
- 	/* Backup instructions which will be replaced by jump address */
--	memcpy(op->optinsn.copied_insn, op->kp.addr + INT3_SIZE,
-+	memcpy(op->optinsn.copied_insn, ktla_ktva(op->kp.addr) + INT3_SIZE,
- 	       RELATIVE_ADDR_SIZE);
- 
- 	insn_buf[0] = RELATIVEJUMP_OPCODE;
 diff --git a/arch/x86/kernel/ldt.c b/arch/x86/kernel/ldt.c
-index ea69726..604d066 100644
+index ebc9873..1b9724b 100644
 --- a/arch/x86/kernel/ldt.c
 +++ b/arch/x86/kernel/ldt.c
-@@ -67,13 +67,13 @@ static int alloc_ldt(mm_context_t *pc, int mincount, int reload)
+@@ -66,13 +66,13 @@ static int alloc_ldt(mm_context_t *pc, int mincount, int reload)
  	if (reload) {
  #ifdef CONFIG_SMP
  		preempt_disable();
@@ -17883,7 +17953,7 @@ index ea69726..604d066 100644
  #endif
  	}
  	if (oldsize) {
-@@ -95,7 +95,7 @@ static inline int copy_ldt(mm_context_t *new, mm_context_t *old)
+@@ -94,7 +94,7 @@ static inline int copy_ldt(mm_context_t *new, mm_context_t *old)
  		return err;
  
  	for (i = 0; i < old->size; i++)
@@ -17892,7 +17962,7 @@ index ea69726..604d066 100644
  	return 0;
  }
  
-@@ -116,6 +116,24 @@ int init_new_context(struct task_struct *tsk, struct mm_struct *mm)
+@@ -115,6 +115,24 @@ int init_new_context(struct task_struct *tsk, struct mm_struct *mm)
  		retval = copy_ldt(&mm->context, &old_mm->context);
  		mutex_unlock(&old_mm->context.lock);
  	}
@@ -17917,7 +17987,7 @@ index ea69726..604d066 100644
  	return retval;
  }
  
-@@ -230,6 +248,13 @@ static int write_ldt(void __user *ptr, unsigned long bytecount, int oldmode)
+@@ -229,6 +247,13 @@ static int write_ldt(void __user *ptr, unsigned long bytecount, int oldmode)
  		}
  	}
  
@@ -17932,10 +18002,10 @@ index ea69726..604d066 100644
  	if (oldmode)
  		ldt.avl = 0;
 diff --git a/arch/x86/kernel/machine_kexec_32.c b/arch/x86/kernel/machine_kexec_32.c
-index a3fa43b..8966f4c 100644
+index 5b19e4d..6476a76 100644
 --- a/arch/x86/kernel/machine_kexec_32.c
 +++ b/arch/x86/kernel/machine_kexec_32.c
-@@ -27,7 +27,7 @@
+@@ -26,7 +26,7 @@
  #include <asm/cacheflush.h>
  #include <asm/debugreg.h>
  
@@ -17944,7 +18014,7 @@ index a3fa43b..8966f4c 100644
  {
  	struct desc_ptr curidt;
  
-@@ -39,7 +39,7 @@ static void set_idt(void *newidt, __u16 limit)
+@@ -38,7 +38,7 @@ static void set_idt(void *newidt, __u16 limit)
  }
  
  
@@ -17953,7 +18023,7 @@ index a3fa43b..8966f4c 100644
  {
  	struct desc_ptr curgdt;
  
-@@ -217,7 +217,7 @@ void machine_kexec(struct kimage *image)
+@@ -216,7 +216,7 @@ void machine_kexec(struct kimage *image)
  	}
  
  	control_page = page_address(image->control_code_page);
@@ -17963,10 +18033,10 @@ index a3fa43b..8966f4c 100644
  	relocate_kernel_ptr = control_page;
  	page_list[PA_CONTROL_PAGE] = __pa(control_page);
 diff --git a/arch/x86/kernel/microcode_intel.c b/arch/x86/kernel/microcode_intel.c
-index 3ca42d0..7cff8cc 100644
+index 0327e2b..e43737b 100644
 --- a/arch/x86/kernel/microcode_intel.c
 +++ b/arch/x86/kernel/microcode_intel.c
-@@ -436,13 +436,13 @@ static enum ucode_state request_microcode_fw(int cpu, struct device *device)
+@@ -430,13 +430,13 @@ static enum ucode_state request_microcode_fw(int cpu, struct device *device)
  
  static int get_ucode_user(void *to, const void *from, size_t n)
  {
@@ -17983,10 +18053,10 @@ index 3ca42d0..7cff8cc 100644
  
  static void microcode_fini_cpu(int cpu)
 diff --git a/arch/x86/kernel/module.c b/arch/x86/kernel/module.c
-index 925179f..267ac7a 100644
+index f21fd94..61565cd 100644
 --- a/arch/x86/kernel/module.c
 +++ b/arch/x86/kernel/module.c
-@@ -36,15 +36,60 @@
+@@ -35,15 +35,60 @@
  #define DEBUGP(fmt...)
  #endif
  
@@ -18050,7 +18120,7 @@ index 925179f..267ac7a 100644
  #ifdef CONFIG_X86_32
  int apply_relocate(Elf32_Shdr *sechdrs,
  		   const char *strtab,
-@@ -55,14 +100,16 @@ int apply_relocate(Elf32_Shdr *sechdrs,
+@@ -54,14 +99,16 @@ int apply_relocate(Elf32_Shdr *sechdrs,
  	unsigned int i;
  	Elf32_Rel *rel = (void *)sechdrs[relsec].sh_addr;
  	Elf32_Sym *sym;
@@ -18070,7 +18140,7 @@ index 925179f..267ac7a 100644
  		/* This is the symbol it is referring to.  Note that all
  		   undefined symbols have been resolved.  */
  		sym = (Elf32_Sym *)sechdrs[symindex].sh_addr
-@@ -71,11 +118,15 @@ int apply_relocate(Elf32_Shdr *sechdrs,
+@@ -70,11 +117,15 @@ int apply_relocate(Elf32_Shdr *sechdrs,
  		switch (ELF32_R_TYPE(rel[i].r_info)) {
  		case R_386_32:
  			/* We add the value into the location given */
@@ -18088,7 +18158,7 @@ index 925179f..267ac7a 100644
  			break;
  		default:
  			printk(KERN_ERR "module %s: Unknown relocation: %u\n",
-@@ -120,21 +171,30 @@ int apply_relocate_add(Elf64_Shdr *sechdrs,
+@@ -119,21 +170,30 @@ int apply_relocate_add(Elf64_Shdr *sechdrs,
  		case R_X86_64_NONE:
  			break;
  		case R_X86_64_64:
@@ -18155,10 +18225,10 @@ index 676b8c7..870ba04 100644
  	.spin_is_locked = __ticket_spin_is_locked,
  	.spin_is_contended = __ticket_spin_is_contended,
 diff --git a/arch/x86/kernel/paravirt.c b/arch/x86/kernel/paravirt.c
-index d90272e..6bb013b 100644
+index ab13760..01218e0 100644
 --- a/arch/x86/kernel/paravirt.c
 +++ b/arch/x86/kernel/paravirt.c
-@@ -53,6 +53,9 @@ u64 _paravirt_ident_64(u64 x)
+@@ -55,6 +55,9 @@ u64 _paravirt_ident_64(u64 x)
  {
  	return x;
  }
@@ -18168,7 +18238,7 @@ index d90272e..6bb013b 100644
  
  void __init default_banner(void)
  {
-@@ -145,15 +148,19 @@ unsigned paravirt_patch_default(u8 type, u16 clobbers, void *insnbuf,
+@@ -147,15 +150,19 @@ unsigned paravirt_patch_default(u8 type, u16 clobbers, void *insnbuf,
  	if (opfunc == NULL)
  		/* If there's no function, patch it with a ud2a (BUG) */
  		ret = paravirt_patch_insns(insnbuf, len, ud2a, ud2a+sizeof(ud2a));
@@ -18191,7 +18261,7 @@ index d90272e..6bb013b 100644
  
  	else if (type == PARAVIRT_PATCH(pv_cpu_ops.iret) ||
  		 type == PARAVIRT_PATCH(pv_cpu_ops.irq_enable_sysexit) ||
-@@ -178,7 +185,7 @@ unsigned paravirt_patch_insns(void *insnbuf, unsigned len,
+@@ -180,7 +187,7 @@ unsigned paravirt_patch_insns(void *insnbuf, unsigned len,
  	if (insn_len > len || start == NULL)
  		insn_len = len;
  	else
@@ -18200,7 +18270,7 @@ index d90272e..6bb013b 100644
  
  	return insn_len;
  }
-@@ -302,7 +309,7 @@ void arch_flush_lazy_mmu_mode(void)
+@@ -304,7 +311,7 @@ void arch_flush_lazy_mmu_mode(void)
  	preempt_enable();
  }
  
@@ -18209,7 +18279,7 @@ index d90272e..6bb013b 100644
  	.name = "bare hardware",
  	.paravirt_enabled = 0,
  	.kernel_rpl = 0,
-@@ -313,16 +320,16 @@ struct pv_info pv_info = {
+@@ -315,16 +322,16 @@ struct pv_info pv_info = {
  #endif
  };
  
@@ -18229,7 +18299,7 @@ index d90272e..6bb013b 100644
  	.save_fl = __PV_IS_CALLEE_SAVE(native_save_fl),
  	.restore_fl = __PV_IS_CALLEE_SAVE(native_restore_fl),
  	.irq_disable = __PV_IS_CALLEE_SAVE(native_irq_disable),
-@@ -334,7 +341,7 @@ struct pv_irq_ops pv_irq_ops = {
+@@ -336,7 +343,7 @@ struct pv_irq_ops pv_irq_ops = {
  #endif
  };
  
@@ -18238,7 +18308,7 @@ index d90272e..6bb013b 100644
  	.cpuid = native_cpuid,
  	.get_debugreg = native_get_debugreg,
  	.set_debugreg = native_set_debugreg,
-@@ -395,21 +402,26 @@ struct pv_cpu_ops pv_cpu_ops = {
+@@ -397,21 +404,26 @@ struct pv_cpu_ops pv_cpu_ops = {
  	.end_context_switch = paravirt_nop,
  };
  
@@ -18268,7 +18338,7 @@ index d90272e..6bb013b 100644
  
  	.read_cr2 = native_read_cr2,
  	.write_cr2 = native_write_cr2,
-@@ -459,6 +471,7 @@ struct pv_mmu_ops pv_mmu_ops = {
+@@ -461,6 +473,7 @@ struct pv_mmu_ops pv_mmu_ops = {
  	.make_pud = PTE_IDENT,
  
  	.set_pgd = native_set_pgd,
@@ -18276,7 +18346,7 @@ index d90272e..6bb013b 100644
  #endif
  #endif /* PAGETABLE_LEVELS >= 3 */
  
-@@ -478,6 +491,12 @@ struct pv_mmu_ops pv_mmu_ops = {
+@@ -480,6 +493,12 @@ struct pv_mmu_ops pv_mmu_ops = {
  	},
  
  	.set_fixmap = native_set_fixmap,
@@ -18303,10 +18373,10 @@ index 35ccf75..7a15747 100644
  #define DEBUG 1
  
 diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c
-index 15763af..da59ada 100644
+index 1d92a5a..7bc8c29 100644
 --- a/arch/x86/kernel/process.c
 +++ b/arch/x86/kernel/process.c
-@@ -48,16 +48,33 @@ void free_thread_xstate(struct task_struct *tsk)
+@@ -69,16 +69,33 @@ void free_thread_xstate(struct task_struct *tsk)
  
  void free_thread_info(struct thread_info *ti)
  {
@@ -18344,7 +18414,7 @@ index 15763af..da59ada 100644
  }
  
  /*
-@@ -70,7 +87,7 @@ void exit_thread(void)
+@@ -91,7 +108,7 @@ void exit_thread(void)
  	unsigned long *bp = t->io_bitmap_ptr;
  
  	if (bp) {
@@ -18353,7 +18423,7 @@ index 15763af..da59ada 100644
  
  		t->io_bitmap_ptr = NULL;
  		clear_thread_flag(TIF_IO_BITMAP);
-@@ -106,7 +123,7 @@ void show_regs_common(void)
+@@ -127,7 +144,7 @@ void show_regs_common(void)
  
  	printk(KERN_CONT "\n");
  	printk(KERN_DEFAULT "Pid: %d, comm: %.20s %s %s %.*s",
@@ -18362,7 +18432,7 @@ index 15763af..da59ada 100644
  		init_utsname()->release,
  		(int)strcspn(init_utsname()->version, " "),
  		init_utsname()->version);
-@@ -120,6 +137,9 @@ void flush_thread(void)
+@@ -141,6 +158,9 @@ void flush_thread(void)
  {
  	struct task_struct *tsk = current;
  
@@ -18372,7 +18442,7 @@ index 15763af..da59ada 100644
  	flush_ptrace_hw_breakpoint(tsk);
  	memset(tsk->thread.tls_array, 0, sizeof(tsk->thread.tls_array));
  	/*
-@@ -282,10 +302,10 @@ int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
+@@ -303,10 +323,10 @@ int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags)
  	regs.di = (unsigned long) arg;
  
  #ifdef CONFIG_X86_32
@@ -18386,7 +18456,16 @@ index 15763af..da59ada 100644
  #else
  	regs.ss = __KERNEL_DS;
  #endif
-@@ -411,7 +431,7 @@ bool set_pm_idle_to_default(void)
+@@ -392,7 +412,7 @@ static void __exit_idle(void)
+ void exit_idle(void)
+ {
+ 	/* idle loop has pid 0 */
+-	if (current->pid)
++	if (task_pid_nr(current))
+ 		return;
+ 	__exit_idle();
+ }
+@@ -501,7 +521,7 @@ bool set_pm_idle_to_default(void)
  
  	return ret;
  }
@@ -18395,7 +18474,7 @@ index 15763af..da59ada 100644
  {
  	local_irq_disable();
  	/*
-@@ -653,16 +673,37 @@ static int __init idle_setup(char *str)
+@@ -743,16 +763,37 @@ static int __init idle_setup(char *str)
  }
  early_param("idle", idle_setup);
  
@@ -18444,18 +18523,18 @@ index 15763af..da59ada 100644
 +}
 +#endif
 diff --git a/arch/x86/kernel/process_32.c b/arch/x86/kernel/process_32.c
-index c08d1ff..6ae1c81 100644
+index ae68473..7b0bb71 100644
 --- a/arch/x86/kernel/process_32.c
 +++ b/arch/x86/kernel/process_32.c
-@@ -67,6 +67,7 @@ asmlinkage void ret_from_fork(void) __asm__("ret_from_fork");
+@@ -64,6 +64,7 @@ asmlinkage void ret_from_fork(void) __asm__("ret_from_fork");
  unsigned long thread_saved_pc(struct task_struct *tsk)
  {
  	return ((unsigned long *)tsk->thread.sp)[3];
 +//XXX	return tsk->thread.eip;
  }
  
- #ifndef CONFIG_SMP
-@@ -132,15 +133,14 @@ void __show_regs(struct pt_regs *regs, int all)
+ void __show_regs(struct pt_regs *regs, int all)
+@@ -73,15 +74,14 @@ void __show_regs(struct pt_regs *regs, int all)
  	unsigned long sp;
  	unsigned short ss, gs;
  
@@ -18473,7 +18552,7 @@ index c08d1ff..6ae1c81 100644
  
  	show_regs_common();
  
-@@ -202,13 +202,14 @@ int copy_thread(unsigned long clone_flags, unsigned long sp,
+@@ -143,13 +143,14 @@ int copy_thread(unsigned long clone_flags, unsigned long sp,
  	struct task_struct *tsk;
  	int err;
  
@@ -18489,7 +18568,7 @@ index c08d1ff..6ae1c81 100644
  
  	p->thread.ip = (unsigned long) ret_from_fork;
  
-@@ -299,7 +300,7 @@ __switch_to(struct task_struct *prev_p, struct task_struct *next_p)
+@@ -240,7 +241,7 @@ __switch_to(struct task_struct *prev_p, struct task_struct *next_p)
  	struct thread_struct *prev = &prev_p->thread,
  				 *next = &next_p->thread;
  	int cpu = smp_processor_id();
@@ -18498,7 +18577,7 @@ index c08d1ff..6ae1c81 100644
  	fpu_switch_t fpu;
  
  	/* never put a printk in __switch_to... printk() calls wake_up*() indirectly */
-@@ -323,6 +324,10 @@ __switch_to(struct task_struct *prev_p, struct task_struct *next_p)
+@@ -264,6 +265,10 @@ __switch_to(struct task_struct *prev_p, struct task_struct *next_p)
  	 */
  	lazy_save_gs(prev->gs);
  
@@ -18509,7 +18588,7 @@ index c08d1ff..6ae1c81 100644
  	/*
  	 * Load the per-thread Thread-Local Storage descriptor.
  	 */
-@@ -353,6 +358,9 @@ __switch_to(struct task_struct *prev_p, struct task_struct *next_p)
+@@ -294,6 +299,9 @@ __switch_to(struct task_struct *prev_p, struct task_struct *next_p)
  	 */
  	arch_end_context_switch(next_p);
  
@@ -18519,7 +18598,7 @@ index c08d1ff..6ae1c81 100644
  	/*
  	 * Restore %gs if needed (which is common)
  	 */
-@@ -361,8 +369,6 @@ __switch_to(struct task_struct *prev_p, struct task_struct *next_p)
+@@ -302,8 +310,6 @@ __switch_to(struct task_struct *prev_p, struct task_struct *next_p)
  
  	switch_fpu_finish(next_p, fpu);
  
@@ -18528,25 +18607,16 @@ index c08d1ff..6ae1c81 100644
  	return prev_p;
  }
  
-@@ -392,4 +398,3 @@ unsigned long get_wchan(struct task_struct *p)
+@@ -333,4 +339,3 @@ unsigned long get_wchan(struct task_struct *p)
  	} while (count++ < 16);
  	return 0;
  }
 -
 diff --git a/arch/x86/kernel/process_64.c b/arch/x86/kernel/process_64.c
-index cfa5c90..4facd28 100644
+index 43d8b48..c45d566 100644
 --- a/arch/x86/kernel/process_64.c
 +++ b/arch/x86/kernel/process_64.c
-@@ -89,7 +89,7 @@ static void __exit_idle(void)
- void exit_idle(void)
- {
- 	/* idle loop has pid 0 */
--	if (current->pid)
-+	if (task_pid_nr(current))
- 		return;
- 	__exit_idle();
- }
-@@ -270,8 +270,7 @@ int copy_thread(unsigned long clone_flags, unsigned long sp,
+@@ -162,8 +162,7 @@ int copy_thread(unsigned long clone_flags, unsigned long sp,
  	struct pt_regs *childregs;
  	struct task_struct *me = current;
  
@@ -18556,7 +18626,7 @@ index cfa5c90..4facd28 100644
  	*childregs = *regs;
  
  	childregs->ax = 0;
-@@ -283,6 +282,7 @@ int copy_thread(unsigned long clone_flags, unsigned long sp,
+@@ -175,6 +174,7 @@ int copy_thread(unsigned long clone_flags, unsigned long sp,
  	p->thread.sp = (unsigned long) childregs;
  	p->thread.sp0 = (unsigned long) (childregs+1);
  	p->thread.usersp = me->thread.usersp;
@@ -18564,7 +18634,7 @@ index cfa5c90..4facd28 100644
  
  	set_tsk_thread_flag(p, TIF_FORK);
  
-@@ -385,7 +385,7 @@ __switch_to(struct task_struct *prev_p, struct task_struct *next_p)
+@@ -280,7 +280,7 @@ __switch_to(struct task_struct *prev_p, struct task_struct *next_p)
  	struct thread_struct *prev = &prev_p->thread;
  	struct thread_struct *next = &next_p->thread;
  	int cpu = smp_processor_id();
@@ -18573,7 +18643,7 @@ index cfa5c90..4facd28 100644
  	unsigned fsindex, gsindex;
  	fpu_switch_t fpu;
  
-@@ -467,10 +467,9 @@ __switch_to(struct task_struct *prev_p, struct task_struct *next_p)
+@@ -362,10 +362,9 @@ __switch_to(struct task_struct *prev_p, struct task_struct *next_p)
  	prev->usersp = percpu_read(old_rsp);
  	percpu_write(old_rsp, next->usersp);
  	percpu_write(current_task, next_p);
@@ -18586,7 +18656,7 @@ index cfa5c90..4facd28 100644
  
  	/*
  	 * Now maybe reload the debug registers and handle I/O bitmaps
-@@ -525,12 +524,11 @@ unsigned long get_wchan(struct task_struct *p)
+@@ -434,12 +433,11 @@ unsigned long get_wchan(struct task_struct *p)
  	if (!p || p == current || p->state == TASK_RUNNING)
  		return 0;
  	stack = (unsigned long)task_stack_page(p);
@@ -18602,10 +18672,10 @@ index cfa5c90..4facd28 100644
  		ip = *(u64 *)(fp+8);
  		if (!in_sched_functions(ip))
 diff --git a/arch/x86/kernel/ptrace.c b/arch/x86/kernel/ptrace.c
-index 5026738..c5925c0 100644
+index 685845c..c8ac2fd 100644
 --- a/arch/x86/kernel/ptrace.c
 +++ b/arch/x86/kernel/ptrace.c
-@@ -823,7 +823,7 @@ long arch_ptrace(struct task_struct *child, long request,
+@@ -824,7 +824,7 @@ long arch_ptrace(struct task_struct *child, long request,
  		 unsigned long addr, unsigned long data)
  {
  	int ret;
@@ -18614,7 +18684,7 @@ index 5026738..c5925c0 100644
  
  	switch (request) {
  	/* read the word at location addr in the USER area. */
-@@ -908,14 +908,14 @@ long arch_ptrace(struct task_struct *child, long request,
+@@ -909,14 +909,14 @@ long arch_ptrace(struct task_struct *child, long request,
  		if ((int) addr < 0)
  			return -EIO;
  		ret = do_get_thread_area(child, addr,
@@ -18631,7 +18701,7 @@ index 5026738..c5925c0 100644
  		break;
  #endif
  
-@@ -1332,7 +1332,7 @@ static void fill_sigtrap_info(struct task_struct *tsk,
+@@ -1432,7 +1432,7 @@ static void fill_sigtrap_info(struct task_struct *tsk,
  	memset(info, 0, sizeof(*info));
  	info->si_signo = SIGTRAP;
  	info->si_code = si_code;
@@ -18640,7 +18710,7 @@ index 5026738..c5925c0 100644
  }
  
  void user_single_step_siginfo(struct task_struct *tsk,
-@@ -1361,6 +1361,10 @@ void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs,
+@@ -1461,6 +1461,10 @@ void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs,
  # define IS_IA32	0
  #endif
  
@@ -18651,7 +18721,7 @@ index 5026738..c5925c0 100644
  /*
   * We must return the syscall number to actually look up in the table.
   * This can be -1L to skip running any syscall at all.
-@@ -1369,6 +1373,11 @@ long syscall_trace_enter(struct pt_regs *regs)
+@@ -1469,6 +1473,11 @@ long syscall_trace_enter(struct pt_regs *regs)
  {
  	long ret = 0;
  
@@ -18663,7 +18733,7 @@ index 5026738..c5925c0 100644
  	/*
  	 * If we stepped into a sysenter/syscall insn, it trapped in
  	 * kernel mode; do_debug() cleared TF and set TIF_SINGLESTEP.
-@@ -1412,6 +1421,11 @@ void syscall_trace_leave(struct pt_regs *regs)
+@@ -1512,6 +1521,11 @@ void syscall_trace_leave(struct pt_regs *regs)
  {
  	bool step;
  
@@ -18871,10 +18941,10 @@ index 7a6f3b3..bed145d7 100644
  
  1:
 diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
-index d7d5099..28555d0 100644
+index 1a29015..712f324 100644
 --- a/arch/x86/kernel/setup.c
 +++ b/arch/x86/kernel/setup.c
-@@ -448,7 +448,7 @@ static void __init parse_setup_data(void)
+@@ -447,7 +447,7 @@ static void __init parse_setup_data(void)
  
  		switch (data->type) {
  		case SETUP_E820_EXT:
@@ -18883,7 +18953,7 @@ index d7d5099..28555d0 100644
  			break;
  		case SETUP_DTB:
  			add_dtb(pa_data);
-@@ -649,7 +649,7 @@ static void __init trim_bios_range(void)
+@@ -639,7 +639,7 @@ static void __init trim_bios_range(void)
  	 * area (640->1Mb) as ram even though it is not.
  	 * take them out.
  	 */
@@ -18892,7 +18962,7 @@ index d7d5099..28555d0 100644
  	sanitize_e820_map(e820.map, ARRAY_SIZE(e820.map), &e820.nr_map);
  }
  
-@@ -767,14 +767,14 @@ void __init setup_arch(char **cmdline_p)
+@@ -763,14 +763,14 @@ void __init setup_arch(char **cmdline_p)
  
  	if (!boot_params.hdr.root_flags)
  		root_mountflags &= ~MS_RDONLY;
@@ -18980,10 +19050,10 @@ index 5a98aa2..2f9288d 100644
  		 * Up to this point, the boot CPU has been using .init.data
  		 * area.  Reload any changed state for the boot CPU.
 diff --git a/arch/x86/kernel/signal.c b/arch/x86/kernel/signal.c
-index 46a01bd..2e88e6d 100644
+index 115eac4..c0591d5 100644
 --- a/arch/x86/kernel/signal.c
 +++ b/arch/x86/kernel/signal.c
-@@ -198,7 +198,7 @@ static unsigned long align_sigframe(unsigned long sp)
+@@ -190,7 +190,7 @@ static unsigned long align_sigframe(unsigned long sp)
  	 * Align the stack pointer according to the i386 ABI,
  	 * i.e. so that on function entry ((sp + 4) & 15) == 0.
  	 */
@@ -18992,7 +19062,7 @@ index 46a01bd..2e88e6d 100644
  #else /* !CONFIG_X86_32 */
  	sp = round_down(sp, 16) - 8;
  #endif
-@@ -249,11 +249,11 @@ get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, size_t frame_size,
+@@ -241,11 +241,11 @@ get_sigframe(struct k_sigaction *ka, struct pt_regs *regs, size_t frame_size,
  	 * Return an always-bogus address instead so we will die with SIGSEGV.
  	 */
  	if (onsigstack && !likely(on_sig_stack(sp)))
@@ -19006,7 +19076,7 @@ index 46a01bd..2e88e6d 100644
  
  	return (void __user *)sp;
  }
-@@ -308,9 +308,9 @@ __setup_frame(int sig, struct k_sigaction *ka, sigset_t *set,
+@@ -300,9 +300,9 @@ __setup_frame(int sig, struct k_sigaction *ka, sigset_t *set,
  	}
  
  	if (current->mm->context.vdso)
@@ -19018,7 +19088,7 @@ index 46a01bd..2e88e6d 100644
  	if (ka->sa.sa_flags & SA_RESTORER)
  		restorer = ka->sa.sa_restorer;
  
-@@ -324,7 +324,7 @@ __setup_frame(int sig, struct k_sigaction *ka, sigset_t *set,
+@@ -316,7 +316,7 @@ __setup_frame(int sig, struct k_sigaction *ka, sigset_t *set,
  	 * reasons and because gdb uses it as a signature to notice
  	 * signal handler stack frames.
  	 */
@@ -19027,7 +19097,7 @@ index 46a01bd..2e88e6d 100644
  
  	if (err)
  		return -EFAULT;
-@@ -378,7 +378,10 @@ static int __setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
+@@ -370,7 +370,10 @@ static int __setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
  		err |= __copy_to_user(&frame->uc.uc_sigmask, set, sizeof(*set));
  
  		/* Set up to return from userspace.  */
@@ -19039,7 +19109,7 @@ index 46a01bd..2e88e6d 100644
  		if (ka->sa.sa_flags & SA_RESTORER)
  			restorer = ka->sa.sa_restorer;
  		put_user_ex(restorer, &frame->pretcode);
-@@ -390,7 +393,7 @@ static int __setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
+@@ -382,7 +385,7 @@ static int __setup_rt_frame(int sig, struct k_sigaction *ka, siginfo_t *info,
  		 * reasons and because gdb uses it as a signature to notice
  		 * signal handler stack frames.
  		 */
@@ -19048,7 +19118,7 @@ index 46a01bd..2e88e6d 100644
  	} put_user_catch(err);
  
  	if (err)
-@@ -765,7 +768,7 @@ static void do_signal(struct pt_regs *regs)
+@@ -773,7 +776,7 @@ static void do_signal(struct pt_regs *regs)
  	 * X86_32: vm86 regs switched out by assembly code before reaching
  	 * here, so testing against kernel CS suffices.
  	 */
@@ -19058,10 +19128,10 @@ index 46a01bd..2e88e6d 100644
  
  	signr = get_signal_to_deliver(&info, &ka, regs, NULL);
 diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
-index 66d250c..f1b10bd 100644
+index 6e1e406..edfb7cb 100644
 --- a/arch/x86/kernel/smpboot.c
 +++ b/arch/x86/kernel/smpboot.c
-@@ -715,17 +715,20 @@ static int __cpuinit do_boot_cpu(int apicid, int cpu)
+@@ -699,17 +699,20 @@ static int __cpuinit do_boot_cpu(int apicid, int cpu)
  	set_idle_for_cpu(cpu, c_idle.idle);
  do_rest:
  	per_cpu(current_task, cpu) = c_idle.idle;
@@ -19085,7 +19155,7 @@ index 66d250c..f1b10bd 100644
  	initial_code = (unsigned long)start_secondary;
  	stack_start  = c_idle.idle->thread.sp;
  
-@@ -868,6 +871,12 @@ int __cpuinit native_cpu_up(unsigned int cpu)
+@@ -851,6 +854,12 @@ int __cpuinit native_cpu_up(unsigned int cpu)
  
  	per_cpu(cpu_state, cpu) = CPU_UP_PREPARE;
  
@@ -19377,7 +19447,7 @@ index 0b0cb5f..db6b9ed 100644
 +	return addr;
  }
 diff --git a/arch/x86/kernel/sys_x86_64.c b/arch/x86/kernel/sys_x86_64.c
-index 0514890..3dbebce 100644
+index b4d3c39..82bb73b 100644
 --- a/arch/x86/kernel/sys_x86_64.c
 +++ b/arch/x86/kernel/sys_x86_64.c
 @@ -95,8 +95,8 @@ out:
@@ -19389,7 +19459,7 @@ index 0514890..3dbebce 100644
 +static void find_start_end(struct mm_struct *mm, unsigned long flags,
 +			   unsigned long *begin, unsigned long *end)
  {
- 	if (!test_thread_flag(TIF_IA32) && (flags & MAP_32BIT)) {
+ 	if (!test_thread_flag(TIF_ADDR32) && (flags & MAP_32BIT)) {
  		unsigned long new_begin;
 @@ -115,7 +115,7 @@ static void find_start_end(unsigned long flags, unsigned long *begin,
  				*begin = new_begin;
@@ -19422,7 +19492,7 @@ index 0514890..3dbebce 100644
 +		if (end - len >= addr && check_heap_stack_gap(vma, addr, len))
  			return addr;
  	}
- 	if (((flags & MAP_32BIT) || test_thread_flag(TIF_IA32))
+ 	if (((flags & MAP_32BIT) || test_thread_flag(TIF_ADDR32))
 @@ -172,7 +175,7 @@ full_search:
  			}
  			return -ENOMEM;
@@ -19436,13 +19506,13 @@ index 0514890..3dbebce 100644
  {
  	struct vm_area_struct *vma;
  	struct mm_struct *mm = current->mm;
--	unsigned long addr = addr0;
-+	unsigned long base = mm->mmap_base, addr = addr0;
+-	unsigned long addr = addr0, start_addr;
++	unsigned long base = mm->mmap_base, addr = addr0, start_addr;
  
  	/* requested length too big for entire address space */
  	if (len > TASK_SIZE)
 @@ -208,13 +211,18 @@ arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
- 	if (!test_thread_flag(TIF_IA32) && (flags & MAP_32BIT))
+ 	if (!test_thread_flag(TIF_ADDR32) && (flags & MAP_32BIT))
  		goto bottomup;
  
 +#ifdef CONFIG_PAX_RANDMMAP
@@ -19464,16 +19534,7 @@ index 0514890..3dbebce 100644
  	}
  
  	/* check if free_area_cache is useful for us */
-@@ -232,7 +240,7 @@ arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
- 						    ALIGN_TOPDOWN);
- 
- 		vma = find_vma(mm, tmp_addr);
--		if (!vma || tmp_addr + len <= vma->vm_start)
-+		if (check_heap_stack_gap(vma, tmp_addr, len))
- 			/* remember the address as a hint for next time */
- 			return mm->free_area_cache = tmp_addr;
- 	}
-@@ -251,7 +259,7 @@ arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
+@@ -240,7 +248,7 @@ try_again:
  		 * return with success:
  		 */
  		vma = find_vma(mm, addr);
@@ -19482,7 +19543,7 @@ index 0514890..3dbebce 100644
  			/* remember the address as a hint for next time */
  			return mm->free_area_cache = addr;
  
-@@ -260,8 +268,8 @@ arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
+@@ -249,8 +257,8 @@ try_again:
  			mm->cached_hole_size = vma->vm_start - addr;
  
  		/* try just below the current vma->vm_start */
@@ -19491,7 +19552,7 @@ index 0514890..3dbebce 100644
 +		addr = skip_heap_stack_gap(vma, len);
 +	} while (!IS_ERR_VALUE(addr));
  
- bottomup:
+ fail:
  	/*
 @@ -270,13 +278,21 @@ bottomup:
  	 * can happen with large stack limits and large mmap()
@@ -19518,7 +19579,7 @@ index 0514890..3dbebce 100644
  
  	return addr;
 diff --git a/arch/x86/kernel/tboot.c b/arch/x86/kernel/tboot.c
-index e2410e2..4fe3fbc 100644
+index 6410744..79758f0 100644
 --- a/arch/x86/kernel/tboot.c
 +++ b/arch/x86/kernel/tboot.c
 @@ -219,7 +219,7 @@ static int tboot_setup_sleep(void)
@@ -19539,8 +19600,8 @@ index e2410e2..4fe3fbc 100644
  	shutdown();
  
  	/* should not reach here */
-@@ -298,7 +298,7 @@ void tboot_sleep(u8 sleep_state, u32 pm1a_control, u32 pm1b_control)
- 	tboot_shutdown(acpi_shutdown_map[sleep_state]);
+@@ -299,7 +299,7 @@ static int tboot_sleep(u8 sleep_state, u32 pm1a_control, u32 pm1b_control)
+ 	return 0;
  }
  
 -static atomic_t ap_wfs_count;
@@ -19548,7 +19609,7 @@ index e2410e2..4fe3fbc 100644
  
  static int tboot_wait_for_aps(int num_aps)
  {
-@@ -322,9 +322,9 @@ static int __cpuinit tboot_cpu_callback(struct notifier_block *nfb,
+@@ -323,9 +323,9 @@ static int __cpuinit tboot_cpu_callback(struct notifier_block *nfb,
  {
  	switch (action) {
  	case CPU_DYING:
@@ -19560,17 +19621,17 @@ index e2410e2..4fe3fbc 100644
  				return NOTIFY_BAD;
  		break;
  	}
-@@ -343,7 +343,7 @@ static __init int tboot_late_init(void)
+@@ -344,7 +344,7 @@ static __init int tboot_late_init(void)
  
  	tboot_create_trampoline();
  
 -	atomic_set(&ap_wfs_count, 0);
 +	atomic_set_unchecked(&ap_wfs_count, 0);
  	register_hotcpu_notifier(&tboot_cpu_notifier);
- 	return 0;
- }
+ 
+ 	acpi_os_set_prepare_sleep(&tboot_sleep);
 diff --git a/arch/x86/kernel/time.c b/arch/x86/kernel/time.c
-index dd5fbf4..b7f2232 100644
+index c6eba2b..3303326 100644
 --- a/arch/x86/kernel/time.c
 +++ b/arch/x86/kernel/time.c
 @@ -31,9 +31,9 @@ unsigned long profile_pc(struct pt_regs *regs)
@@ -19604,10 +19665,10 @@ index dd5fbf4..b7f2232 100644
  	return pc;
  }
 diff --git a/arch/x86/kernel/tls.c b/arch/x86/kernel/tls.c
-index bcfec2d..8f88b4a 100644
+index 9d9d2f9..ed344e4 100644
 --- a/arch/x86/kernel/tls.c
 +++ b/arch/x86/kernel/tls.c
-@@ -85,6 +85,11 @@ int do_set_thread_area(struct task_struct *p, int idx,
+@@ -84,6 +84,11 @@ int do_set_thread_area(struct task_struct *p, int idx,
  	if (idx < GDT_ENTRY_TLS_MIN || idx > GDT_ENTRY_TLS_MAX)
  		return -EINVAL;
  
@@ -19668,7 +19729,7 @@ index 09ff517..df19fbff 100644
  	.short 0
  	.quad	0x00cf9b000000ffff	# __KERNEL32_CS
 diff --git a/arch/x86/kernel/traps.c b/arch/x86/kernel/traps.c
-index 4bbe04d..41d0943 100644
+index ff9281f1..30cb4ac 100644
 --- a/arch/x86/kernel/traps.c
 +++ b/arch/x86/kernel/traps.c
 @@ -70,12 +70,6 @@ asmlinkage int system_call(void);
@@ -19721,7 +19782,7 @@ index 4bbe04d..41d0943 100644
 @@ -165,8 +159,20 @@ kernel_trap:
  	if (!fixup_exception(regs)) {
  		tsk->thread.error_code = error_code;
- 		tsk->thread.trap_no = trapnr;
+ 		tsk->thread.trap_nr = trapnr;
 +
 +#if defined(CONFIG_X86_32) && defined(CONFIG_PAX_KERNEXEC)
 +		if (trapnr == 12 && ((regs->cs & 0xFFFF) == __KERNEL_CS || (regs->cs & 0xFFFF) == __KERNEXEC_KERNEL_CS))
@@ -19739,7 +19800,7 @@ index 4bbe04d..41d0943 100644
  	return;
  
  #ifdef CONFIG_X86_32
-@@ -255,14 +261,30 @@ do_general_protection(struct pt_regs *regs, long error_code)
+@@ -259,14 +265,30 @@ do_general_protection(struct pt_regs *regs, long error_code)
  	conditional_sti(regs);
  
  #ifdef CONFIG_X86_32
@@ -19770,11 +19831,11 @@ index 4bbe04d..41d0943 100644
 +#endif
 +
  	tsk->thread.error_code = error_code;
- 	tsk->thread.trap_no = 13;
+ 	tsk->thread.trap_nr = X86_TRAP_GP;
  
-@@ -295,6 +317,13 @@ gp_in_kernel:
- 	if (notify_die(DIE_GPF, "general protection fault", regs,
- 				error_code, 13, SIGSEGV) == NOTIFY_STOP)
+@@ -299,6 +321,13 @@ gp_in_kernel:
+ 	if (notify_die(DIE_GPF, "general protection fault", regs, error_code,
+ 			X86_TRAP_GP, SIGSEGV) == NOTIFY_STOP)
  		return;
 +
 +#if defined(CONFIG_X86_32) && defined(CONFIG_PAX_KERNEXEC)
@@ -19786,16 +19847,16 @@ index 4bbe04d..41d0943 100644
  	die("general protection fault", regs, error_code);
  }
  
-@@ -421,7 +450,7 @@ dotraplinkage void __kprobes do_debug(struct pt_regs *regs, long error_code)
+@@ -425,7 +454,7 @@ dotraplinkage void __kprobes do_debug(struct pt_regs *regs, long error_code)
  	/* It's safe to allow irq's after DR6 has been saved */
  	preempt_conditional_sti(regs);
  
 -	if (regs->flags & X86_VM_MASK) {
 +	if (v8086_mode(regs)) {
- 		handle_vm86_trap((struct kernel_vm86_regs *) regs,
- 				error_code, 1);
+ 		handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code,
+ 					X86_TRAP_DB);
  		preempt_conditional_cli(regs);
-@@ -436,7 +465,7 @@ dotraplinkage void __kprobes do_debug(struct pt_regs *regs, long error_code)
+@@ -440,7 +469,7 @@ dotraplinkage void __kprobes do_debug(struct pt_regs *regs, long error_code)
  	 * We already checked v86 mode above, so we can check for kernel mode
  	 * by just checking the CPL of CS.
  	 */
@@ -19804,7 +19865,7 @@ index 4bbe04d..41d0943 100644
  		tsk->thread.debugreg6 &= ~DR_STEP;
  		set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
  		regs->flags &= ~X86_EFLAGS_TF;
-@@ -466,7 +495,7 @@ void math_error(struct pt_regs *regs, int error_code, int trapnr)
+@@ -471,7 +500,7 @@ void math_error(struct pt_regs *regs, int error_code, int trapnr)
  		return;
  	conditional_sti(regs);
  
@@ -19826,7 +19887,7 @@ index b9242ba..50c5edd 100644
   *	verify_cpu, returns the status of longmode and SSE in register %eax.
   *		0: Success    1: Failure
 diff --git a/arch/x86/kernel/vm86_32.c b/arch/x86/kernel/vm86_32.c
-index 328cb37..56556b4 100644
+index 255f58a..5e91150 100644
 --- a/arch/x86/kernel/vm86_32.c
 +++ b/arch/x86/kernel/vm86_32.c
 @@ -41,6 +41,7 @@
@@ -20158,12 +20219,12 @@ index 0f703f1..9e15f64 100644
  
  #ifdef CONFIG_SMP
 diff --git a/arch/x86/kernel/vsyscall_64.c b/arch/x86/kernel/vsyscall_64.c
-index b07ba93..a212969 100644
+index 7515cf0..331a1a0 100644
 --- a/arch/x86/kernel/vsyscall_64.c
 +++ b/arch/x86/kernel/vsyscall_64.c
-@@ -57,15 +57,13 @@ DEFINE_VVAR(struct vsyscall_gtod_data, vsyscall_gtod_data) =
- 	.lock = __SEQLOCK_UNLOCKED(__vsyscall_gtod_data.lock),
- };
+@@ -54,15 +54,13 @@
+ DEFINE_VVAR(int, vgetcpu_mode);
+ DEFINE_VVAR(struct vsyscall_gtod_data, vsyscall_gtod_data);
  
 -static enum { EMULATE, NATIVE, NONE } vsyscall_mode = EMULATE;
 +static enum { EMULATE, NONE } vsyscall_mode = EMULATE;
@@ -20178,7 +20239,7 @@ index b07ba93..a212969 100644
  		else if (!strcmp("none", str))
  			vsyscall_mode = NONE;
  		else
-@@ -207,7 +205,7 @@ bool emulate_vsyscall(struct pt_regs *regs, unsigned long address)
+@@ -206,7 +204,7 @@ bool emulate_vsyscall(struct pt_regs *regs, unsigned long address)
  
  	tsk = current;
  	if (seccomp_mode(&tsk->seccomp))
@@ -20187,7 +20248,7 @@ index b07ba93..a212969 100644
  
  	/*
  	 * With a real vsyscall, page faults cause SIGSEGV.  We want to
-@@ -279,8 +277,7 @@ bool emulate_vsyscall(struct pt_regs *regs, unsigned long address)
+@@ -278,8 +276,7 @@ bool emulate_vsyscall(struct pt_regs *regs, unsigned long address)
  	return true;
  
  sigsegv:
@@ -20197,7 +20258,7 @@ index b07ba93..a212969 100644
  }
  
  /*
-@@ -333,10 +330,7 @@ void __init map_vsyscall(void)
+@@ -332,10 +329,7 @@ void __init map_vsyscall(void)
  	extern char __vvar_page;
  	unsigned long physaddr_vvar_page = __pa_symbol(&__vvar_page);
  
@@ -20223,10 +20284,10 @@ index 9796c2f..f686fbf 100644
  EXPORT_SYMBOL(copy_page);
  EXPORT_SYMBOL(clear_page);
 diff --git a/arch/x86/kernel/xsave.c b/arch/x86/kernel/xsave.c
-index 7110911..e8cdee5 100644
+index e62728e..5fc3a07 100644
 --- a/arch/x86/kernel/xsave.c
 +++ b/arch/x86/kernel/xsave.c
-@@ -130,7 +130,7 @@ int check_for_xstate(struct i387_fxsave_struct __user *buf,
+@@ -131,7 +131,7 @@ int check_for_xstate(struct i387_fxsave_struct __user *buf,
  	    fx_sw_user->xstate_size > fx_sw_user->extended_size)
  		return -EINVAL;
  
@@ -20235,7 +20296,7 @@ index 7110911..e8cdee5 100644
  					    fx_sw_user->extended_size -
  					    FP_XSTATE_MAGIC2_SIZE));
  	if (err)
-@@ -266,7 +266,7 @@ fx_only:
+@@ -267,7 +267,7 @@ fx_only:
  	 * the other extended state.
  	 */
  	xrstor_state(init_xstate_buf, pcntxt_mask & ~XSTATE_FPSSE);
@@ -20244,7 +20305,7 @@ index 7110911..e8cdee5 100644
  }
  
  /*
-@@ -295,7 +295,7 @@ int restore_i387_xstate(void __user *buf)
+@@ -296,7 +296,7 @@ int restore_i387_xstate(void __user *buf)
  	if (use_xsave())
  		err = restore_user_xstate(buf);
  	else
@@ -20254,7 +20315,7 @@ index 7110911..e8cdee5 100644
  	if (unlikely(err)) {
  		/*
 diff --git a/arch/x86/kvm/cpuid.c b/arch/x86/kvm/cpuid.c
-index 89b02bf..0f6511d 100644
+index 9fed5be..18fd595 100644
 --- a/arch/x86/kvm/cpuid.c
 +++ b/arch/x86/kvm/cpuid.c
 @@ -124,15 +124,20 @@ int kvm_vcpu_ioctl_set_cpuid2(struct kvm_vcpu *vcpu,
@@ -20305,10 +20366,10 @@ index 89b02bf..0f6511d 100644
  
  out:
 diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
-index 0982507..7f6d72f 100644
+index 8375622..b7bca1a 100644
 --- a/arch/x86/kvm/emulate.c
 +++ b/arch/x86/kvm/emulate.c
-@@ -250,6 +250,7 @@ struct gprefix {
+@@ -252,6 +252,7 @@ struct gprefix {
  
  #define ____emulate_2op(ctxt, _op, _x, _y, _suffix, _dsttype)	\
  	do {								\
@@ -20316,7 +20377,7 @@ index 0982507..7f6d72f 100644
  		__asm__ __volatile__ (					\
  			_PRE_EFLAGS("0", "4", "2")			\
  			_op _suffix " %"_x"3,%1; "			\
-@@ -264,8 +265,6 @@ struct gprefix {
+@@ -266,8 +267,6 @@ struct gprefix {
  /* Raw emulation: instruction has two explicit operands. */
  #define __emulate_2op_nobyte(ctxt,_op,_wx,_wy,_lx,_ly,_qx,_qy)		\
  	do {								\
@@ -20325,7 +20386,7 @@ index 0982507..7f6d72f 100644
  		switch ((ctxt)->dst.bytes) {				\
  		case 2:							\
  			____emulate_2op(ctxt,_op,_wx,_wy,"w",u16);	\
-@@ -281,7 +280,6 @@ struct gprefix {
+@@ -283,7 +282,6 @@ struct gprefix {
  
  #define __emulate_2op(ctxt,_op,_bx,_by,_wx,_wy,_lx,_ly,_qx,_qy)		     \
  	do {								     \
@@ -20334,7 +20395,7 @@ index 0982507..7f6d72f 100644
  		case 1:							     \
  			____emulate_2op(ctxt,_op,_bx,_by,"b",u8);	     \
 diff --git a/arch/x86/kvm/lapic.c b/arch/x86/kvm/lapic.c
-index cfdc6e0..ab92e84 100644
+index 8584322..17d5955 100644
 --- a/arch/x86/kvm/lapic.c
 +++ b/arch/x86/kvm/lapic.c
 @@ -54,7 +54,7 @@
@@ -20347,7 +20408,7 @@ index cfdc6e0..ab92e84 100644
  #define APIC_LVT_NUM			6
  /* 14 is the version for Xeon and Pentium 8.4.8*/
 diff --git a/arch/x86/kvm/paging_tmpl.h b/arch/x86/kvm/paging_tmpl.h
-index 1561028..0ed7f14 100644
+index df5a703..63748a7 100644
 --- a/arch/x86/kvm/paging_tmpl.h
 +++ b/arch/x86/kvm/paging_tmpl.h
 @@ -197,7 +197,7 @@ retry_walk:
@@ -20360,10 +20421,10 @@ index 1561028..0ed7f14 100644
  			goto error;
  
 diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c
-index e385214..f8df033 100644
+index e334389..6839087 100644
 --- a/arch/x86/kvm/svm.c
 +++ b/arch/x86/kvm/svm.c
-@@ -3420,7 +3420,11 @@ static void reload_tss(struct kvm_vcpu *vcpu)
+@@ -3509,7 +3509,11 @@ static void reload_tss(struct kvm_vcpu *vcpu)
  	int cpu = raw_smp_processor_id();
  
  	struct svm_cpu_data *sd = per_cpu(svm_data, cpu);
@@ -20375,7 +20436,7 @@ index e385214..f8df033 100644
  	load_TR_desc();
  }
  
-@@ -3798,6 +3802,10 @@ static void svm_vcpu_run(struct kvm_vcpu *vcpu)
+@@ -3887,6 +3891,10 @@ static void svm_vcpu_run(struct kvm_vcpu *vcpu)
  #endif
  #endif
  
@@ -20387,10 +20448,10 @@ index e385214..f8df033 100644
  
  	local_irq_disable();
 diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
-index a7a6f60..04b745a 100644
+index 4ff0ab9..2ff68d3 100644
 --- a/arch/x86/kvm/vmx.c
 +++ b/arch/x86/kvm/vmx.c
-@@ -1306,7 +1306,11 @@ static void reload_tss(void)
+@@ -1303,7 +1303,11 @@ static void reload_tss(void)
  	struct desc_struct *descs;
  
  	descs = (void *)gdt->address;
@@ -20402,7 +20463,7 @@ index a7a6f60..04b745a 100644
  	load_TR_desc();
  }
  
-@@ -2637,8 +2641,11 @@ static __init int hardware_setup(void)
+@@ -2625,8 +2629,11 @@ static __init int hardware_setup(void)
  	if (!cpu_has_vmx_flexpriority())
  		flexpriority_enabled = 0;
  
@@ -20416,7 +20477,7 @@ index a7a6f60..04b745a 100644
  
  	if (enable_ept && !cpu_has_vmx_ept_2m_page())
  		kvm_disable_largepages();
-@@ -3654,7 +3661,7 @@ static void vmx_set_constant_host_state(void)
+@@ -3642,7 +3649,7 @@ static void vmx_set_constant_host_state(void)
  	vmcs_writel(HOST_IDTR_BASE, dt.address);   /* 22.2.4 */
  
  	asm("mov $.Lkvm_vmx_return, %0" : "=r"(tmpl));
@@ -20425,7 +20486,7 @@ index a7a6f60..04b745a 100644
  
  	rdmsr(MSR_IA32_SYSENTER_CS, low32, high32);
  	vmcs_write32(HOST_IA32_SYSENTER_CS, low32);
-@@ -6192,6 +6199,12 @@ static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
+@@ -6180,6 +6187,12 @@ static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
  		"jmp .Lkvm_vmx_return \n\t"
  		".Llaunched: " __ex(ASM_VMX_VMRESUME) "\n\t"
  		".Lkvm_vmx_return: "
@@ -20438,7 +20499,7 @@ index a7a6f60..04b745a 100644
  		/* Save guest registers, load host registers, keep flags */
  		"mov %0, %c[wordsize](%%"R"sp) \n\t"
  		"pop %0 \n\t"
-@@ -6240,6 +6253,11 @@ static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
+@@ -6228,6 +6241,11 @@ static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
  #endif
  		[cr2]"i"(offsetof(struct vcpu_vmx, vcpu.arch.cr2)),
  		[wordsize]"i"(sizeof(ulong))
@@ -20450,7 +20511,7 @@ index a7a6f60..04b745a 100644
  	      : "cc", "memory"
  		, R"ax", R"bx", R"di", R"si"
  #ifdef CONFIG_X86_64
-@@ -6268,7 +6286,16 @@ static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
+@@ -6256,7 +6274,16 @@ static void __noclone vmx_vcpu_run(struct kvm_vcpu *vcpu)
  		}
  	}
  
@@ -20469,10 +20530,10 @@ index a7a6f60..04b745a 100644
  
  	vmx->exit_reason = vmcs_read32(VM_EXIT_REASON);
 diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
-index 8d1c6c6..99c2d5f 100644
+index 185a2b8..866d2a6 100644
 --- a/arch/x86/kvm/x86.c
 +++ b/arch/x86/kvm/x86.c
-@@ -1311,8 +1311,8 @@ static int xen_hvm_config(struct kvm_vcpu *vcpu, u64 data)
+@@ -1357,8 +1357,8 @@ static int xen_hvm_config(struct kvm_vcpu *vcpu, u64 data)
  {
  	struct kvm *kvm = vcpu->kvm;
  	int lm = is_long_mode(vcpu);
@@ -20483,7 +20544,7 @@ index 8d1c6c6..99c2d5f 100644
  	u8 blob_size = lm ? kvm->arch.xen_hvm_config.blob_size_64
  		: kvm->arch.xen_hvm_config.blob_size_32;
  	u32 page_num = data & ~PAGE_MASK;
-@@ -2145,6 +2145,8 @@ long kvm_arch_dev_ioctl(struct file *filp,
+@@ -2213,6 +2213,8 @@ long kvm_arch_dev_ioctl(struct file *filp,
  		if (n < msr_list.nmsrs)
  			goto out;
  		r = -EFAULT;
@@ -20492,7 +20553,7 @@ index 8d1c6c6..99c2d5f 100644
  		if (copy_to_user(user_msr_list->indices, &msrs_to_save,
  				 num_msrs_to_save * sizeof(u32)))
  			goto out;
-@@ -2266,7 +2268,7 @@ static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
+@@ -2338,7 +2340,7 @@ static int kvm_vcpu_ioctl_set_lapic(struct kvm_vcpu *vcpu,
  static int kvm_vcpu_ioctl_interrupt(struct kvm_vcpu *vcpu,
  				    struct kvm_interrupt *irq)
  {
@@ -20501,7 +20562,7 @@ index 8d1c6c6..99c2d5f 100644
  		return -EINVAL;
  	if (irqchip_in_kernel(vcpu->kvm))
  		return -ENXIO;
-@@ -4782,7 +4784,7 @@ static void kvm_set_mmio_spte_mask(void)
+@@ -4860,7 +4862,7 @@ static void kvm_set_mmio_spte_mask(void)
  	kvm_mmu_set_mmio_spte_mask(mask);
  }
  
@@ -20526,90 +20587,8 @@ index 642d880..44e0f3f 100644
  }
  
  /*G:050
-diff --git a/arch/x86/lib/atomic64_32.c b/arch/x86/lib/atomic64_32.c
-index 042f682..c92afb6 100644
---- a/arch/x86/lib/atomic64_32.c
-+++ b/arch/x86/lib/atomic64_32.c
-@@ -8,18 +8,30 @@
- 
- long long atomic64_read_cx8(long long, const atomic64_t *v);
- EXPORT_SYMBOL(atomic64_read_cx8);
-+long long atomic64_read_unchecked_cx8(long long, const atomic64_unchecked_t *v);
-+EXPORT_SYMBOL(atomic64_read_unchecked_cx8);
- long long atomic64_set_cx8(long long, const atomic64_t *v);
- EXPORT_SYMBOL(atomic64_set_cx8);
-+long long atomic64_set_unchecked_cx8(long long, const atomic64_unchecked_t *v);
-+EXPORT_SYMBOL(atomic64_set_unchecked_cx8);
- long long atomic64_xchg_cx8(long long, unsigned high);
- EXPORT_SYMBOL(atomic64_xchg_cx8);
- long long atomic64_add_return_cx8(long long a, atomic64_t *v);
- EXPORT_SYMBOL(atomic64_add_return_cx8);
-+long long atomic64_add_return_unchecked_cx8(long long a, atomic64_unchecked_t *v);
-+EXPORT_SYMBOL(atomic64_add_return_unchecked_cx8);
- long long atomic64_sub_return_cx8(long long a, atomic64_t *v);
- EXPORT_SYMBOL(atomic64_sub_return_cx8);
-+long long atomic64_sub_return_unchecked_cx8(long long a, atomic64_unchecked_t *v);
-+EXPORT_SYMBOL(atomic64_sub_return_unchecked_cx8);
- long long atomic64_inc_return_cx8(long long a, atomic64_t *v);
- EXPORT_SYMBOL(atomic64_inc_return_cx8);
-+long long atomic64_inc_return_unchecked_cx8(long long a, atomic64_unchecked_t *v);
-+EXPORT_SYMBOL(atomic64_inc_return_unchecked_cx8);
- long long atomic64_dec_return_cx8(long long a, atomic64_t *v);
- EXPORT_SYMBOL(atomic64_dec_return_cx8);
-+long long atomic64_dec_return_unchecked_cx8(long long a, atomic64_unchecked_t *v);
-+EXPORT_SYMBOL(atomic64_dec_return_unchecked_cx8);
- long long atomic64_dec_if_positive_cx8(atomic64_t *v);
- EXPORT_SYMBOL(atomic64_dec_if_positive_cx8);
- int atomic64_inc_not_zero_cx8(atomic64_t *v);
-@@ -30,26 +42,46 @@ EXPORT_SYMBOL(atomic64_add_unless_cx8);
- #ifndef CONFIG_X86_CMPXCHG64
- long long atomic64_read_386(long long, const atomic64_t *v);
- EXPORT_SYMBOL(atomic64_read_386);
-+long long atomic64_read_unchecked_386(long long, const atomic64_unchecked_t *v);
-+EXPORT_SYMBOL(atomic64_read_unchecked_386);
- long long atomic64_set_386(long long, const atomic64_t *v);
- EXPORT_SYMBOL(atomic64_set_386);
-+long long atomic64_set_unchecked_386(long long, const atomic64_unchecked_t *v);
-+EXPORT_SYMBOL(atomic64_set_unchecked_386);
- long long atomic64_xchg_386(long long, unsigned high);
- EXPORT_SYMBOL(atomic64_xchg_386);
- long long atomic64_add_return_386(long long a, atomic64_t *v);
- EXPORT_SYMBOL(atomic64_add_return_386);
-+long long atomic64_add_return_unchecked_386(long long a, atomic64_unchecked_t *v);
-+EXPORT_SYMBOL(atomic64_add_return_unchecked_386);
- long long atomic64_sub_return_386(long long a, atomic64_t *v);
- EXPORT_SYMBOL(atomic64_sub_return_386);
-+long long atomic64_sub_return_unchecked_386(long long a, atomic64_unchecked_t *v);
-+EXPORT_SYMBOL(atomic64_sub_return_unchecked_386);
- long long atomic64_inc_return_386(long long a, atomic64_t *v);
- EXPORT_SYMBOL(atomic64_inc_return_386);
-+long long atomic64_inc_return_unchecked_386(long long a, atomic64_unchecked_t *v);
-+EXPORT_SYMBOL(atomic64_inc_return_unchecked_386);
- long long atomic64_dec_return_386(long long a, atomic64_t *v);
- EXPORT_SYMBOL(atomic64_dec_return_386);
-+long long atomic64_dec_return_unchecked_386(long long a, atomic64_unchecked_t *v);
-+EXPORT_SYMBOL(atomic64_dec_return_unchecked_386);
- long long atomic64_add_386(long long a, atomic64_t *v);
- EXPORT_SYMBOL(atomic64_add_386);
-+long long atomic64_add_unchecked_386(long long a, atomic64_unchecked_t *v);
-+EXPORT_SYMBOL(atomic64_add_unchecked_386);
- long long atomic64_sub_386(long long a, atomic64_t *v);
- EXPORT_SYMBOL(atomic64_sub_386);
-+long long atomic64_sub_unchecked_386(long long a, atomic64_unchecked_t *v);
-+EXPORT_SYMBOL(atomic64_sub_unchecked_386);
- long long atomic64_inc_386(long long a, atomic64_t *v);
- EXPORT_SYMBOL(atomic64_inc_386);
-+long long atomic64_inc_unchecked_386(long long a, atomic64_unchecked_t *v);
-+EXPORT_SYMBOL(atomic64_inc_unchecked_386);
- long long atomic64_dec_386(long long a, atomic64_t *v);
- EXPORT_SYMBOL(atomic64_dec_386);
-+long long atomic64_dec_unchecked_386(long long a, atomic64_unchecked_t *v);
-+EXPORT_SYMBOL(atomic64_dec_unchecked_386);
- long long atomic64_dec_if_positive_386(atomic64_t *v);
- EXPORT_SYMBOL(atomic64_dec_if_positive_386);
- int atomic64_inc_not_zero_386(atomic64_t *v);
 diff --git a/arch/x86/lib/atomic64_386_32.S b/arch/x86/lib/atomic64_386_32.S
-index e8e7e0d..56fd1b0 100644
+index 00933d5..3a64af9 100644
 --- a/arch/x86/lib/atomic64_386_32.S
 +++ b/arch/x86/lib/atomic64_386_32.S
 @@ -48,6 +48,10 @@ BEGIN(read)
@@ -20836,7 +20815,7 @@ index e8e7e0d..56fd1b0 100644
 +	_ASM_EXTABLE(1234b, 2f)
 +#endif
 +
- 	cmpl %eax, %esi
+ 	cmpl %eax, %ecx
  	je 3f
  1:
 @@ -168,6 +318,13 @@ BEGIN(inc_not_zero)
@@ -20868,7 +20847,7 @@ index e8e7e0d..56fd1b0 100644
  	movl %eax,  (v)
  	movl %edx, 4(v)
 diff --git a/arch/x86/lib/atomic64_cx8_32.S b/arch/x86/lib/atomic64_cx8_32.S
-index 391a083..3a2cf39 100644
+index f5cc9eb..51fa319 100644
 --- a/arch/x86/lib/atomic64_cx8_32.S
 +++ b/arch/x86/lib/atomic64_cx8_32.S
 @@ -35,10 +35,20 @@ ENTRY(atomic64_read_cx8)
@@ -20918,7 +20897,7 @@ index 391a083..3a2cf39 100644
  ENTRY(atomic64_xchg_cx8)
  	CFI_STARTPROC
  
-@@ -62,12 +87,13 @@ ENTRY(atomic64_xchg_cx8)
+@@ -60,12 +85,13 @@ ENTRY(atomic64_xchg_cx8)
  	cmpxchg8b (%esi)
  	jne 1b
  
@@ -20934,7 +20913,7 @@ index 391a083..3a2cf39 100644
  	CFI_STARTPROC
  	SAVE ebp
  	SAVE ebx
-@@ -84,27 +110,44 @@ ENTRY(atomic64_\func\()_return_cx8)
+@@ -82,27 +108,44 @@ ENTRY(atomic64_\func\()_return_cx8)
  	movl %edx, %ecx
  	\ins\()l %esi, %ebx
  	\insc\()l %edi, %ecx
@@ -20984,7 +20963,7 @@ index 391a083..3a2cf39 100644
  	CFI_STARTPROC
  	SAVE ebx
  
-@@ -114,21 +157,39 @@ ENTRY(atomic64_\func\()_return_cx8)
+@@ -112,21 +155,39 @@ ENTRY(atomic64_\func\()_return_cx8)
  	movl %edx, %ecx
  	\ins\()l $1, %ebx
  	\insc\()l $0, %ecx
@@ -21026,7 +21005,7 @@ index 391a083..3a2cf39 100644
  
  ENTRY(atomic64_dec_if_positive_cx8)
  	CFI_STARTPROC
-@@ -140,6 +201,13 @@ ENTRY(atomic64_dec_if_positive_cx8)
+@@ -138,6 +199,13 @@ ENTRY(atomic64_dec_if_positive_cx8)
  	movl %edx, %ecx
  	subl $1, %ebx
  	sbb $0, %ecx
@@ -21040,7 +21019,7 @@ index 391a083..3a2cf39 100644
  	js 2f
  	LOCK_PREFIX
  	cmpxchg8b (%esi)
-@@ -149,6 +217,7 @@ ENTRY(atomic64_dec_if_positive_cx8)
+@@ -147,6 +215,7 @@ ENTRY(atomic64_dec_if_positive_cx8)
  	movl %ebx, %eax
  	movl %ecx, %edx
  	RESTORE ebx
@@ -21048,9 +21027,9 @@ index 391a083..3a2cf39 100644
  	ret
  	CFI_ENDPROC
  ENDPROC(atomic64_dec_if_positive_cx8)
-@@ -174,6 +243,13 @@ ENTRY(atomic64_add_unless_cx8)
+@@ -171,6 +240,13 @@ ENTRY(atomic64_add_unless_cx8)
  	movl %edx, %ecx
- 	addl %esi, %ebx
+ 	addl %ebp, %ebx
  	adcl %edi, %ecx
 +
 +#ifdef CONFIG_PAX_REFCOUNT
@@ -21060,9 +21039,9 @@ index 391a083..3a2cf39 100644
 +#endif
 +
  	LOCK_PREFIX
- 	cmpxchg8b (%ebp)
+ 	cmpxchg8b (%esi)
  	jne 1b
-@@ -184,6 +260,7 @@ ENTRY(atomic64_add_unless_cx8)
+@@ -181,6 +257,7 @@ ENTRY(atomic64_add_unless_cx8)
  	CFI_ADJUST_CFA_OFFSET -8
  	RESTORE ebx
  	RESTORE ebp
@@ -21070,10 +21049,10 @@ index 391a083..3a2cf39 100644
  	ret
  4:
  	cmpl %edx, 4(%esp)
-@@ -206,6 +283,13 @@ ENTRY(atomic64_inc_not_zero_cx8)
- 	movl %edx, %ecx
+@@ -203,6 +280,13 @@ ENTRY(atomic64_inc_not_zero_cx8)
+ 	xorl %ecx, %ecx
  	addl $1, %ebx
- 	adcl $0, %ecx
+ 	adcl %edx, %ecx
 +
 +#ifdef CONFIG_PAX_REFCOUNT
 +	into
@@ -21084,14 +21063,14 @@ index 391a083..3a2cf39 100644
  	LOCK_PREFIX
  	cmpxchg8b (%esi)
  	jne 1b
-@@ -213,6 +297,7 @@ ENTRY(atomic64_inc_not_zero_cx8)
+@@ -210,6 +294,7 @@ ENTRY(atomic64_inc_not_zero_cx8)
  	movl $1, %eax
  3:
  	RESTORE ebx
 +	pax_force_retaddr
  	ret
- 4:
- 	testl %edx, %edx
+ 	CFI_ENDPROC
+ ENDPROC(atomic64_inc_not_zero_cx8)
 diff --git a/arch/x86/lib/checksum_32.S b/arch/x86/lib/checksum_32.S
 index 78d16a5..fbcf666 100644
 --- a/arch/x86/lib/checksum_32.S
@@ -21396,7 +21375,7 @@ index 1e572c5..2a162cd 100644
  
  CFI_ENDPROC
 diff --git a/arch/x86/lib/copy_page_64.S b/arch/x86/lib/copy_page_64.S
-index 01c805b..dccb07f 100644
+index 6b34d04..dccb07f 100644
 --- a/arch/x86/lib/copy_page_64.S
 +++ b/arch/x86/lib/copy_page_64.S
 @@ -9,6 +9,7 @@ copy_page_c:
@@ -21407,7 +21386,24 @@ index 01c805b..dccb07f 100644
  	ret
  	CFI_ENDPROC
  ENDPROC(copy_page_c)
-@@ -39,7 +40,7 @@ ENTRY(copy_page)
+@@ -20,12 +21,14 @@ ENDPROC(copy_page_c)
+ 
+ ENTRY(copy_page)
+ 	CFI_STARTPROC
+-	subq	$2*8,%rsp
+-	CFI_ADJUST_CFA_OFFSET 2*8
++	subq	$3*8,%rsp
++	CFI_ADJUST_CFA_OFFSET 3*8
+ 	movq	%rbx,(%rsp)
+ 	CFI_REL_OFFSET rbx, 0
+ 	movq	%r12,1*8(%rsp)
+ 	CFI_REL_OFFSET r12, 1*8
++	movq	%r13,2*8(%rsp)
++	CFI_REL_OFFSET r13, 2*8
+ 
+ 	movl	$(4096/64)-5,%ecx
+ 	.p2align 4
+@@ -37,7 +40,7 @@ ENTRY(copy_page)
  	movq     16 (%rsi), %rdx
  	movq     24 (%rsi), %r8
  	movq     32 (%rsi), %r9
@@ -21416,7 +21412,7 @@ index 01c805b..dccb07f 100644
  	movq     48 (%rsi), %r11
  	movq     56 (%rsi), %r12
  
-@@ -50,7 +51,7 @@ ENTRY(copy_page)
+@@ -48,7 +51,7 @@ ENTRY(copy_page)
  	movq     %rdx, 16 (%rdi)
  	movq     %r8,  24 (%rdi)
  	movq     %r9,  32 (%rdi)
@@ -21425,7 +21421,7 @@ index 01c805b..dccb07f 100644
  	movq     %r11, 48 (%rdi)
  	movq     %r12, 56 (%rdi)
  
-@@ -69,7 +70,7 @@ ENTRY(copy_page)
+@@ -67,7 +70,7 @@ ENTRY(copy_page)
  	movq     16 (%rsi), %rdx
  	movq     24 (%rsi), %r8
  	movq     32 (%rsi), %r9
@@ -21434,7 +21430,7 @@ index 01c805b..dccb07f 100644
  	movq     48 (%rsi), %r11
  	movq     56 (%rsi), %r12
  
-@@ -78,7 +79,7 @@ ENTRY(copy_page)
+@@ -76,7 +79,7 @@ ENTRY(copy_page)
  	movq     %rdx, 16 (%rdi)
  	movq     %r8,  24 (%rdi)
  	movq     %r9,  32 (%rdi)
@@ -21443,15 +21439,21 @@ index 01c805b..dccb07f 100644
  	movq     %r11, 48 (%rdi)
  	movq     %r12, 56 (%rdi)
  
-@@ -95,6 +96,7 @@ ENTRY(copy_page)
- 	CFI_RESTORE r13
- 	addq	$3*8,%rsp
- 	CFI_ADJUST_CFA_OFFSET -3*8
+@@ -89,8 +92,11 @@ ENTRY(copy_page)
+ 	CFI_RESTORE rbx
+ 	movq	1*8(%rsp),%r12
+ 	CFI_RESTORE r12
+-	addq	$2*8,%rsp
+-	CFI_ADJUST_CFA_OFFSET -2*8
++	movq	2*8(%rsp),%r13
++	CFI_RESTORE r13
++	addq	$3*8,%rsp
++	CFI_ADJUST_CFA_OFFSET -3*8
 +	pax_force_retaddr
  	ret
  .Lcopy_page_end:
  	CFI_ENDPROC
-@@ -105,7 +107,7 @@ ENDPROC(copy_page)
+@@ -101,7 +107,7 @@ ENDPROC(copy_page)
  
  #include <asm/cpufeature.h>
  
@@ -21829,7 +21831,7 @@ index 51f1504..ddac4c1 100644
  	CFI_ENDPROC
  END(bad_get_user)
 diff --git a/arch/x86/lib/insn.c b/arch/x86/lib/insn.c
-index 5a1f9f3..ba9f577 100644
+index b1e6c4b..21ae8fc 100644
 --- a/arch/x86/lib/insn.c
 +++ b/arch/x86/lib/insn.c
 @@ -21,6 +21,11 @@
@@ -21876,10 +21878,10 @@ index 05a95e7..326f2fa 100644
  	CFI_ENDPROC
  ENDPROC(__iowrite32_copy)
 diff --git a/arch/x86/lib/memcpy_64.S b/arch/x86/lib/memcpy_64.S
-index efbf2a0..8893637 100644
+index 1c273be..da9cc0e 100644
 --- a/arch/x86/lib/memcpy_64.S
 +++ b/arch/x86/lib/memcpy_64.S
-@@ -34,6 +34,7 @@
+@@ -33,6 +33,7 @@
  	rep movsq
  	movl %edx, %ecx
  	rep movsb
@@ -21887,15 +21889,15 @@ index efbf2a0..8893637 100644
  	ret
  .Lmemcpy_e:
  	.previous
-@@ -51,6 +52,7 @@
- 
- 	movl %edx, %ecx
+@@ -49,6 +50,7 @@
+ 	movq %rdi, %rax
+ 	movq %rdx, %rcx
  	rep movsb
 +	pax_force_retaddr
  	ret
  .Lmemcpy_e_e:
  	.previous
-@@ -81,13 +83,13 @@ ENTRY(memcpy)
+@@ -76,13 +78,13 @@ ENTRY(memcpy)
  	 */
  	movq 0*8(%rsi),	%r8
  	movq 1*8(%rsi),	%r9
@@ -21911,7 +21913,7 @@ index efbf2a0..8893637 100644
  	movq %r11,	3*8(%rdi)
  	leaq 4*8(%rdi),	%rdi
  	jae  .Lcopy_forward_loop
-@@ -110,12 +112,12 @@ ENTRY(memcpy)
+@@ -105,12 +107,12 @@ ENTRY(memcpy)
  	subq $0x20,	%rdx
  	movq -1*8(%rsi),	%r8
  	movq -2*8(%rsi),	%r9
@@ -21926,7 +21928,7 @@ index efbf2a0..8893637 100644
  	movq %r11,		-4*8(%rdi)
  	leaq -4*8(%rdi),	%rdi
  	jae  .Lcopy_backward_loop
-@@ -135,12 +137,13 @@ ENTRY(memcpy)
+@@ -130,12 +132,13 @@ ENTRY(memcpy)
  	 */
  	movq 0*8(%rsi), %r8
  	movq 1*8(%rsi),	%r9
@@ -21942,7 +21944,7 @@ index efbf2a0..8893637 100644
  	retq
  	.p2align 4
  .Lless_16bytes:
-@@ -153,6 +156,7 @@ ENTRY(memcpy)
+@@ -148,6 +151,7 @@ ENTRY(memcpy)
  	movq -1*8(%rsi, %rdx),	%r9
  	movq %r8,	0*8(%rdi)
  	movq %r9,	-1*8(%rdi, %rdx)
@@ -21950,7 +21952,7 @@ index efbf2a0..8893637 100644
  	retq
  	.p2align 4
  .Lless_8bytes:
-@@ -166,6 +170,7 @@ ENTRY(memcpy)
+@@ -161,6 +165,7 @@ ENTRY(memcpy)
  	movl -4(%rsi, %rdx), %r8d
  	movl %ecx, (%rdi)
  	movl %r8d, -4(%rdi, %rdx)
@@ -21958,8 +21960,8 @@ index efbf2a0..8893637 100644
  	retq
  	.p2align 4
  .Lless_3bytes:
-@@ -183,6 +188,7 @@ ENTRY(memcpy)
- 	jnz .Lloop_1
+@@ -179,6 +184,7 @@ ENTRY(memcpy)
+ 	movb %cl, (%rdi)
  
  .Lend:
 +	pax_force_retaddr
@@ -22099,46 +22101,40 @@ index ee16461..c39c199 100644
  .Lmemmove_end_forward_efs:
  	.previous
 diff --git a/arch/x86/lib/memset_64.S b/arch/x86/lib/memset_64.S
-index 79bd454..dff325a 100644
+index 2dcb380..963660a 100644
 --- a/arch/x86/lib/memset_64.S
 +++ b/arch/x86/lib/memset_64.S
-@@ -31,6 +31,7 @@
- 	movl %r8d,%ecx
+@@ -30,6 +30,7 @@
+ 	movl %edx,%ecx
  	rep stosb
  	movq %r9,%rax
 +	pax_force_retaddr
  	ret
  .Lmemset_e:
  	.previous
-@@ -53,6 +54,7 @@
- 	movl %edx,%ecx
+@@ -52,6 +53,7 @@
+ 	movq %rdx,%rcx
  	rep stosb
  	movq %r9,%rax
 +	pax_force_retaddr
  	ret
  .Lmemset_e_e:
  	.previous
-@@ -60,13 +62,13 @@
+@@ -59,7 +61,7 @@
  ENTRY(memset)
  ENTRY(__memset)
  	CFI_STARTPROC
 -	movq %rdi,%r10
- 	movq %rdx,%r11
++	movq %rdi,%r11
  
  	/* expand byte value  */
  	movzbl %sil,%ecx
- 	movabs $0x0101010101010101,%rax
- 	mul    %rcx		/* with rax, clobbers rdx */
-+	movq  %rdi,%rdx
- 
- 	/* align dst */
- 	movl  %edi,%r9d
-@@ -120,7 +122,8 @@ ENTRY(__memset)
+@@ -117,7 +119,8 @@ ENTRY(__memset)
  	jnz     .Lloop_1
  
  .Lende:
 -	movq	%r10,%rax
-+	movq	%rdx,%rax
++	movq	%r11,%rax
 +	pax_force_retaddr
  	ret
  
@@ -22783,19 +22779,10 @@ index a63efd6..ccecad8 100644
  	ret
  	CFI_ENDPROC
 diff --git a/arch/x86/lib/usercopy_32.c b/arch/x86/lib/usercopy_32.c
-index e218d5d..a99a1eb 100644
+index ef2a6a5..3b28862 100644
 --- a/arch/x86/lib/usercopy_32.c
 +++ b/arch/x86/lib/usercopy_32.c
-@@ -43,7 +43,7 @@ do {									   \
- 	__asm__ __volatile__(						   \
- 		"	testl %1,%1\n"					   \
- 		"	jz 2f\n"					   \
--		"0:	lodsb\n"					   \
-+		"0:	"__copyuser_seg"lodsb\n"			   \
- 		"	stosb\n"					   \
- 		"	testb %%al,%%al\n"				   \
- 		"	jz 1f\n"					   \
-@@ -128,10 +128,12 @@ do {									\
+@@ -41,10 +41,12 @@ do {									\
  	int __d0;							\
  	might_fault();							\
  	__asm__ __volatile__(						\
@@ -22808,7 +22795,7 @@ index e218d5d..a99a1eb 100644
  		".section .fixup,\"ax\"\n"				\
  		"3:	lea 0(%2,%0,4),%0\n"				\
  		"	jmp 2b\n"					\
-@@ -200,6 +202,7 @@ long strnlen_user(const char __user *s, long n)
+@@ -113,6 +115,7 @@ long strnlen_user(const char __user *s, long n)
  	might_fault();
  
  	__asm__ __volatile__(
@@ -22816,7 +22803,7 @@ index e218d5d..a99a1eb 100644
  		"	testl %0, %0\n"
  		"	jz 3f\n"
  		"	andl %0,%%ecx\n"
-@@ -208,6 +211,7 @@ long strnlen_user(const char __user *s, long n)
+@@ -121,6 +124,7 @@ long strnlen_user(const char __user *s, long n)
  		"	subl %%ecx,%0\n"
  		"	addl %0,%%eax\n"
  		"1:\n"
@@ -22824,7 +22811,7 @@ index e218d5d..a99a1eb 100644
  		".section .fixup,\"ax\"\n"
  		"2:	xorl %%eax,%%eax\n"
  		"	jmp 1b\n"
-@@ -227,7 +231,7 @@ EXPORT_SYMBOL(strnlen_user);
+@@ -140,7 +144,7 @@ EXPORT_SYMBOL(strnlen_user);
  
  #ifdef CONFIG_X86_INTEL_USERCOPY
  static unsigned long
@@ -22833,7 +22820,7 @@ index e218d5d..a99a1eb 100644
  {
  	int d0, d1;
  	__asm__ __volatile__(
-@@ -239,36 +243,36 @@ __copy_user_intel(void __user *to, const void *from, unsigned long size)
+@@ -152,36 +156,36 @@ __copy_user_intel(void __user *to, const void *from, unsigned long size)
  		       "       .align 2,0x90\n"
  		       "3:     movl 0(%4), %%eax\n"
  		       "4:     movl 4(%4), %%edx\n"
@@ -22886,7 +22873,7 @@ index e218d5d..a99a1eb 100644
  		       "       addl $-64, %0\n"
  		       "       addl $64, %4\n"
  		       "       addl $64, %3\n"
-@@ -278,10 +282,12 @@ __copy_user_intel(void __user *to, const void *from, unsigned long size)
+@@ -191,10 +195,12 @@ __copy_user_intel(void __user *to, const void *from, unsigned long size)
  		       "       shrl  $2, %0\n"
  		       "       andl  $3, %%eax\n"
  		       "       cld\n"
@@ -22899,7 +22886,7 @@ index e218d5d..a99a1eb 100644
  		       ".section .fixup,\"ax\"\n"
  		       "101:   lea 0(%%eax,%0,4),%0\n"
  		       "       jmp 100b\n"
-@@ -334,46 +340,155 @@ __copy_user_intel(void __user *to, const void *from, unsigned long size)
+@@ -247,46 +253,155 @@ __copy_user_intel(void __user *to, const void *from, unsigned long size)
  }
  
  static unsigned long
@@ -23073,7 +23060,7 @@ index e218d5d..a99a1eb 100644
  		       "        movl %%eax, 56(%3)\n"
  		       "        movl %%edx, 60(%3)\n"
  		       "        addl $-64, %0\n"
-@@ -385,9 +500,9 @@ __copy_user_zeroing_intel(void *to, const void __user *from, unsigned long size)
+@@ -298,9 +413,9 @@ __copy_user_zeroing_intel(void *to, const void __user *from, unsigned long size)
  		       "        shrl  $2, %0\n"
  		       "        andl $3, %%eax\n"
  		       "        cld\n"
@@ -23085,7 +23072,7 @@ index e218d5d..a99a1eb 100644
  		       "8:\n"
  		       ".section .fixup,\"ax\"\n"
  		       "9:      lea 0(%%eax,%0,4),%0\n"
-@@ -434,47 +549,49 @@ __copy_user_zeroing_intel(void *to, const void __user *from, unsigned long size)
+@@ -347,47 +462,49 @@ __copy_user_zeroing_intel(void *to, const void __user *from, unsigned long size)
   */
  
  static unsigned long __copy_user_zeroing_intel_nocache(void *to,
@@ -23153,7 +23140,7 @@ index e218d5d..a99a1eb 100644
  	       "        movnti %%eax, 56(%3)\n"
  	       "        movnti %%edx, 60(%3)\n"
  	       "        addl $-64, %0\n"
-@@ -487,9 +604,9 @@ static unsigned long __copy_user_zeroing_intel_nocache(void *to,
+@@ -400,9 +517,9 @@ static unsigned long __copy_user_zeroing_intel_nocache(void *to,
  	       "        shrl  $2, %0\n"
  	       "        andl $3, %%eax\n"
  	       "        cld\n"
@@ -23165,7 +23152,7 @@ index e218d5d..a99a1eb 100644
  	       "8:\n"
  	       ".section .fixup,\"ax\"\n"
  	       "9:      lea 0(%%eax,%0,4),%0\n"
-@@ -531,47 +648,49 @@ static unsigned long __copy_user_zeroing_intel_nocache(void *to,
+@@ -444,47 +561,49 @@ static unsigned long __copy_user_zeroing_intel_nocache(void *to,
  }
  
  static unsigned long __copy_user_intel_nocache(void *to,
@@ -23233,7 +23220,7 @@ index e218d5d..a99a1eb 100644
  	       "        movnti %%eax, 56(%3)\n"
  	       "        movnti %%edx, 60(%3)\n"
  	       "        addl $-64, %0\n"
-@@ -584,9 +703,9 @@ static unsigned long __copy_user_intel_nocache(void *to,
+@@ -497,9 +616,9 @@ static unsigned long __copy_user_intel_nocache(void *to,
  	       "        shrl  $2, %0\n"
  	       "        andl $3, %%eax\n"
  	       "        cld\n"
@@ -23245,7 +23232,7 @@ index e218d5d..a99a1eb 100644
  	       "8:\n"
  	       ".section .fixup,\"ax\"\n"
  	       "9:      lea 0(%%eax,%0,4),%0\n"
-@@ -629,32 +748,36 @@ static unsigned long __copy_user_intel_nocache(void *to,
+@@ -542,32 +661,36 @@ static unsigned long __copy_user_intel_nocache(void *to,
   */
  unsigned long __copy_user_zeroing_intel(void *to, const void __user *from,
  					unsigned long size);
@@ -23287,7 +23274,7 @@ index e218d5d..a99a1eb 100644
  		".section .fixup,\"ax\"\n"				\
  		"5:	addl %3,%0\n"					\
  		"	jmp 2b\n"					\
-@@ -682,14 +805,14 @@ do {									\
+@@ -595,14 +718,14 @@ do {									\
  		"	negl %0\n"					\
  		"	andl $7,%0\n"					\
  		"	subl %0,%3\n"					\
@@ -23305,7 +23292,7 @@ index e218d5d..a99a1eb 100644
  		"2:\n"							\
  		".section .fixup,\"ax\"\n"				\
  		"5:	addl %3,%0\n"					\
-@@ -775,9 +898,9 @@ survive:
+@@ -688,9 +811,9 @@ survive:
  	}
  #endif
  	if (movsl_is_ok(to, from, n))
@@ -23317,7 +23304,7 @@ index e218d5d..a99a1eb 100644
  	return n;
  }
  EXPORT_SYMBOL(__copy_to_user_ll);
-@@ -797,10 +920,9 @@ unsigned long __copy_from_user_ll_nozero(void *to, const void __user *from,
+@@ -710,10 +833,9 @@ unsigned long __copy_from_user_ll_nozero(void *to, const void __user *from,
  					 unsigned long n)
  {
  	if (movsl_is_ok(to, from, n))
@@ -23330,7 +23317,7 @@ index e218d5d..a99a1eb 100644
  	return n;
  }
  EXPORT_SYMBOL(__copy_from_user_ll_nozero);
-@@ -827,65 +949,50 @@ unsigned long __copy_from_user_ll_nocache_nozero(void *to, const void __user *fr
+@@ -740,65 +862,50 @@ unsigned long __copy_from_user_ll_nocache_nozero(void *to, const void __user *fr
  	if (n > 64 && cpu_has_xmm2)
  		n = __copy_user_intel_nocache(to, from, n);
  	else
@@ -23433,23 +23420,10 @@ index e218d5d..a99a1eb 100644
 +EXPORT_SYMBOL(set_fs);
 +#endif
 diff --git a/arch/x86/lib/usercopy_64.c b/arch/x86/lib/usercopy_64.c
-index b7c2849..8633ad8 100644
+index 0d0326f..5c5f91e 100644
 --- a/arch/x86/lib/usercopy_64.c
 +++ b/arch/x86/lib/usercopy_64.c
-@@ -42,6 +42,12 @@ long
- __strncpy_from_user(char *dst, const char __user *src, long count)
- {
- 	long res;
-+
-+#ifdef CONFIG_PAX_MEMORY_UDEREF
-+	if ((unsigned long)src < PAX_USER_SHADOW_BASE)
-+		src += PAX_USER_SHADOW_BASE;
-+#endif
-+
- 	__do_strncpy_from_user(dst, src, count, res);
- 	return res;
- }
-@@ -65,6 +71,12 @@ unsigned long __clear_user(void __user *addr, unsigned long size)
+@@ -16,6 +16,12 @@ unsigned long __clear_user(void __user *addr, unsigned long size)
  {
  	long __d0;
  	might_fault();
@@ -23462,7 +23436,7 @@ index b7c2849..8633ad8 100644
  	/* no memory constraint because it doesn't change any memory gcc knows
  	   about */
  	asm volatile(
-@@ -149,12 +161,20 @@ long strlen_user(const char __user *s)
+@@ -100,12 +106,20 @@ long strlen_user(const char __user *s)
  }
  EXPORT_SYMBOL(strlen_user);
  
@@ -23488,7 +23462,7 @@ index b7c2849..8633ad8 100644
  }
  EXPORT_SYMBOL(copy_in_user);
  
-@@ -164,7 +184,7 @@ EXPORT_SYMBOL(copy_in_user);
+@@ -115,7 +129,7 @@ EXPORT_SYMBOL(copy_in_user);
   * it is not necessary to optimize tail handling.
   */
  unsigned long
@@ -23511,7 +23485,7 @@ index 1fb85db..8b3540b 100644
  		extern u32 pnp_bios_is_utter_crap;
  		pnp_bios_is_utter_crap = 1;
 diff --git a/arch/x86/mm/fault.c b/arch/x86/mm/fault.c
-index f0b4caf..d92fd42 100644
+index 3ecfd1a..304d554 100644
 --- a/arch/x86/mm/fault.c
 +++ b/arch/x86/mm/fault.c
 @@ -13,11 +13,18 @@
@@ -23854,7 +23828,7 @@ index f0b4caf..d92fd42 100644
  	if (error_code & PF_WRITE) {
  		/* write, present and write, not present: */
  		if (unlikely(!(vma->vm_flags & VM_WRITE)))
-@@ -1005,18 +1197,32 @@ do_page_fault(struct pt_regs *regs, unsigned long error_code)
+@@ -1005,18 +1197,33 @@ do_page_fault(struct pt_regs *regs, unsigned long error_code)
  {
  	struct vm_area_struct *vma;
  	struct task_struct *tsk;
@@ -23875,6 +23849,7 @@ index f0b4caf..d92fd42 100644
 +#if defined(CONFIG_X86_64) && defined(CONFIG_PAX_MEMORY_UDEREF)
 +	if (!user_mode(regs) && address < 2 * PAX_USER_SHADOW_BASE) {
 +		if (!search_exception_tables(regs->ip)) {
++			printk(KERN_ERR "PAX: please report this to pageexec@freemail.hu\n");
 +			bad_area_nosemaphore(regs, error_code, address);
 +			return;
 +		}
@@ -23892,7 +23867,7 @@ index f0b4caf..d92fd42 100644
  
  	/*
  	 * Detect and handle instructions that would cause a page fault for
-@@ -1077,7 +1283,7 @@ do_page_fault(struct pt_regs *regs, unsigned long error_code)
+@@ -1077,7 +1284,7 @@ do_page_fault(struct pt_regs *regs, unsigned long error_code)
  	 * User-mode registers count as a user access even for any
  	 * potential system fault or CPU buglet:
  	 */
@@ -23901,7 +23876,7 @@ index f0b4caf..d92fd42 100644
  		local_irq_enable();
  		error_code |= PF_USER;
  	} else {
-@@ -1132,6 +1338,11 @@ retry:
+@@ -1132,6 +1339,11 @@ retry:
  		might_sleep();
  	}
  
@@ -23913,7 +23888,7 @@ index f0b4caf..d92fd42 100644
  	vma = find_vma(mm, address);
  	if (unlikely(!vma)) {
  		bad_area(regs, error_code, address);
-@@ -1143,18 +1354,24 @@ retry:
+@@ -1143,18 +1355,24 @@ retry:
  		bad_area(regs, error_code, address);
  		return;
  	}
@@ -23949,7 +23924,7 @@ index f0b4caf..d92fd42 100644
  	if (unlikely(expand_stack(vma, address))) {
  		bad_area(regs, error_code, address);
  		return;
-@@ -1209,3 +1426,292 @@ good_area:
+@@ -1209,3 +1427,292 @@ good_area:
  
  	up_read(&mm->mmap_sem);
  }
@@ -24256,7 +24231,7 @@ index dd74e46..7d26398 100644
  		return 0;
  
 diff --git a/arch/x86/mm/highmem_32.c b/arch/x86/mm/highmem_32.c
-index f4f29b1..5cac4fb 100644
+index 6f31ee5..8ee4164 100644
 --- a/arch/x86/mm/highmem_32.c
 +++ b/arch/x86/mm/highmem_32.c
 @@ -44,7 +44,11 @@ void *kmap_atomic_prot(struct page *page, pgprot_t prot)
@@ -24272,7 +24247,7 @@ index f4f29b1..5cac4fb 100644
  
  	return (void *)vaddr;
 diff --git a/arch/x86/mm/hugetlbpage.c b/arch/x86/mm/hugetlbpage.c
-index 8ecbb4b..a269cab 100644
+index f6679a7..8f795a3 100644
 --- a/arch/x86/mm/hugetlbpage.c
 +++ b/arch/x86/mm/hugetlbpage.c
 @@ -266,13 +266,20 @@ static unsigned long hugetlb_get_unmapped_area_bottomup(struct file *file,
@@ -24335,62 +24310,51 @@ index 8ecbb4b..a269cab 100644
  }
  
  static unsigned long hugetlb_get_unmapped_area_topdown(struct file *file,
-@@ -308,10 +316,9 @@ static unsigned long hugetlb_get_unmapped_area_topdown(struct file *file,
- {
- 	struct hstate *h = hstate_file(file);
+@@ -310,9 +318,8 @@ static unsigned long hugetlb_get_unmapped_area_topdown(struct file *file,
  	struct mm_struct *mm = current->mm;
--	struct vm_area_struct *vma, *prev_vma;
--	unsigned long base = mm->mmap_base, addr = addr0;
-+	struct vm_area_struct *vma;
-+	unsigned long base = mm->mmap_base, addr;
+ 	struct vm_area_struct *vma;
+ 	unsigned long base = mm->mmap_base;
+-	unsigned long addr = addr0;
++	unsigned long addr;
  	unsigned long largest_hole = mm->cached_hole_size;
--	int first_time = 1;
+-	unsigned long start_addr;
  
  	/* don't allow allocations above current base */
  	if (mm->free_area_cache > base)
-@@ -321,14 +328,15 @@ static unsigned long hugetlb_get_unmapped_area_topdown(struct file *file,
+@@ -322,16 +329,15 @@ static unsigned long hugetlb_get_unmapped_area_topdown(struct file *file,
  	        largest_hole = 0;
  		mm->free_area_cache  = base;
  	}
 -try_again:
-+
+-	start_addr = mm->free_area_cache;
+ 
  	/* make sure it can fit in the remaining address space */
  	if (mm->free_area_cache < len)
  		goto fail;
  
  	/* either no address requested or can't fit in requested address hole */
 -	addr = (mm->free_area_cache - len) & huge_page_mask(h);
-+	addr = (mm->free_area_cache - len);
++	addr = mm->free_area_cache - len;
  	do {
 +		addr &= huge_page_mask(h);
  		/*
  		 * Lookup failure means no vma is above this address,
  		 * i.e. return with success:
-@@ -341,46 +349,47 @@ try_again:
- 		 * new region fits between prev_vma->vm_end and
- 		 * vma->vm_start, use it:
- 		 */
--		prev_vma = vma->vm_prev;
--		if (addr + len <= vma->vm_start &&
--		            (!prev_vma || (addr >= prev_vma->vm_end))) {
+@@ -340,10 +346,10 @@ try_again:
+ 		if (!vma)
+ 			return addr;
+ 
+-		if (addr + len <= vma->vm_start) {
 +		if (check_heap_stack_gap(vma, addr, len)) {
  			/* remember the address as a hint for next time */
 -		        mm->cached_hole_size = largest_hole;
 -		        return (mm->free_area_cache = addr);
--		} else {
--			/* pull free_area_cache down to the first hole */
--		        if (mm->free_area_cache == vma->vm_end) {
--				mm->free_area_cache = vma->vm_start;
--				mm->cached_hole_size = largest_hole;
--			}
 +			mm->cached_hole_size = largest_hole;
 +			return (mm->free_area_cache = addr);
-+		}
-+		/* pull free_area_cache down to the first hole */
-+		if (mm->free_area_cache == vma->vm_end) {
-+			mm->free_area_cache = vma->vm_start;
-+			mm->cached_hole_size = largest_hole;
- 		}
+ 		} else if (mm->free_area_cache == vma->vm_end) {
+ 			/* pull free_area_cache down to the first hole */
+ 			mm->free_area_cache = vma->vm_start;
+@@ -352,29 +358,34 @@ try_again:
  
  		/* remember the largest hole we saw so far */
  		if (addr + largest_hole < vma->vm_start)
@@ -24408,10 +24372,9 @@ index 8ecbb4b..a269cab 100644
 -	 * if hint left us with no space for the requested
 -	 * mapping then try again:
 -	 */
--	if (first_time) {
+-	if (start_addr != base) {
 -		mm->free_area_cache = base;
 -		largest_hole = 0;
--		first_time = 0;
 -		goto try_again;
 -	}
 -	/*
@@ -24439,7 +24402,7 @@ index 8ecbb4b..a269cab 100644
  	mm->cached_hole_size = ~0UL;
  	addr = hugetlb_get_unmapped_area_bottomup(file, addr0,
  			len, pgoff, flags);
-@@ -388,6 +397,7 @@ fail:
+@@ -382,6 +393,7 @@ fail:
  	/*
  	 * Restore the topdown base:
  	 */
@@ -24447,7 +24410,7 @@ index 8ecbb4b..a269cab 100644
  	mm->free_area_cache = base;
  	mm->cached_hole_size = ~0UL;
  
-@@ -401,10 +411,19 @@ hugetlb_get_unmapped_area(struct file *file, unsigned long addr,
+@@ -395,10 +407,19 @@ hugetlb_get_unmapped_area(struct file *file, unsigned long addr,
  	struct hstate *h = hstate_file(file);
  	struct mm_struct *mm = current->mm;
  	struct vm_area_struct *vma;
@@ -24468,7 +24431,7 @@ index 8ecbb4b..a269cab 100644
  		return -ENOMEM;
  
  	if (flags & MAP_FIXED) {
-@@ -416,8 +435,7 @@ hugetlb_get_unmapped_area(struct file *file, unsigned long addr,
+@@ -410,8 +431,7 @@ hugetlb_get_unmapped_area(struct file *file, unsigned long addr,
  	if (addr) {
  		addr = ALIGN(addr, huge_page_size(h));
  		vma = find_vma(mm, addr);
@@ -24479,10 +24442,10 @@ index 8ecbb4b..a269cab 100644
  	}
  	if (mm->get_unmapped_area == arch_get_unmapped_area)
 diff --git a/arch/x86/mm/init.c b/arch/x86/mm/init.c
-index 6cabf65..74565da 100644
+index 4f0cec7..00976ce 100644
 --- a/arch/x86/mm/init.c
 +++ b/arch/x86/mm/init.c
-@@ -17,6 +17,8 @@
+@@ -16,6 +16,8 @@
  #include <asm/tlb.h>
  #include <asm/proto.h>
  #include <asm/dma.h>		/* for MAX_DMA_PFN */
@@ -24491,7 +24454,7 @@ index 6cabf65..74565da 100644
  
  unsigned long __initdata pgt_buf_start;
  unsigned long __meminitdata pgt_buf_end;
-@@ -33,7 +35,7 @@ int direct_gbpages
+@@ -32,7 +34,7 @@ int direct_gbpages
  static void __init find_early_table_space(unsigned long end, int use_pse,
  					  int use_gbpages)
  {
@@ -24500,7 +24463,7 @@ index 6cabf65..74565da 100644
  	phys_addr_t base;
  
  	puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
-@@ -312,10 +314,37 @@ unsigned long __init_refok init_memory_mapping(unsigned long start,
+@@ -311,10 +313,37 @@ unsigned long __init_refok init_memory_mapping(unsigned long start,
   * Access has to be given to non-kernel-ram areas as well, these contain the PCI
   * mmio resources as well as potential bios/acpi data regions.
   */
@@ -24539,7 +24502,7 @@ index 6cabf65..74565da 100644
  	if (iomem_is_exclusive(pagenr << PAGE_SHIFT))
  		return 0;
  	if (!page_is_ram(pagenr))
-@@ -372,8 +401,116 @@ void free_init_pages(char *what, unsigned long begin, unsigned long end)
+@@ -371,8 +400,116 @@ void free_init_pages(char *what, unsigned long begin, unsigned long end)
  #endif
  }
  
@@ -24657,10 +24620,10 @@ index 6cabf65..74565da 100644
  			(unsigned long)(&__init_begin),
  			(unsigned long)(&__init_end));
 diff --git a/arch/x86/mm/init_32.c b/arch/x86/mm/init_32.c
-index 8663f6c..829ae76 100644
+index 575d86f..4987469 100644
 --- a/arch/x86/mm/init_32.c
 +++ b/arch/x86/mm/init_32.c
-@@ -74,36 +74,6 @@ static __init void *alloc_low_page(void)
+@@ -73,36 +73,6 @@ static __init void *alloc_low_page(void)
  }
  
  /*
@@ -24697,7 +24660,7 @@ index 8663f6c..829ae76 100644
   * Create a page table and place a pointer to it in a middle page
   * directory entry:
   */
-@@ -123,13 +93,28 @@ static pte_t * __init one_page_table_init(pmd_t *pmd)
+@@ -122,13 +92,28 @@ static pte_t * __init one_page_table_init(pmd_t *pmd)
  			page_table = (pte_t *)alloc_low_page();
  
  		paravirt_alloc_pte(&init_mm, __pa(page_table) >> PAGE_SHIFT);
@@ -24726,7 +24689,7 @@ index 8663f6c..829ae76 100644
  pmd_t * __init populate_extra_pmd(unsigned long vaddr)
  {
  	int pgd_idx = pgd_index(vaddr);
-@@ -203,6 +188,7 @@ page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
+@@ -202,6 +187,7 @@ page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
  	int pgd_idx, pmd_idx;
  	unsigned long vaddr;
  	pgd_t *pgd;
@@ -24734,7 +24697,7 @@ index 8663f6c..829ae76 100644
  	pmd_t *pmd;
  	pte_t *pte = NULL;
  
-@@ -212,8 +198,13 @@ page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
+@@ -211,8 +197,13 @@ page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
  	pgd = pgd_base + pgd_idx;
  
  	for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
@@ -24750,7 +24713,7 @@ index 8663f6c..829ae76 100644
  		for (; (pmd_idx < PTRS_PER_PMD) && (vaddr != end);
  							pmd++, pmd_idx++) {
  			pte = page_table_kmap_check(one_page_table_init(pmd),
-@@ -225,11 +216,20 @@ page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
+@@ -224,11 +215,20 @@ page_table_range_init(unsigned long start, unsigned long end, pgd_t *pgd_base)
  	}
  }
  
@@ -24775,7 +24738,7 @@ index 8663f6c..829ae76 100644
  }
  
  /*
-@@ -246,9 +246,10 @@ kernel_physical_mapping_init(unsigned long start,
+@@ -245,9 +245,10 @@ kernel_physical_mapping_init(unsigned long start,
  	unsigned long last_map_addr = end;
  	unsigned long start_pfn, end_pfn;
  	pgd_t *pgd_base = swapper_pg_dir;
@@ -24787,7 +24750,7 @@ index 8663f6c..829ae76 100644
  	pmd_t *pmd;
  	pte_t *pte;
  	unsigned pages_2m, pages_4k;
-@@ -281,8 +282,13 @@ repeat:
+@@ -280,8 +281,13 @@ repeat:
  	pfn = start_pfn;
  	pgd_idx = pgd_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
  	pgd = pgd_base + pgd_idx;
@@ -24803,7 +24766,7 @@ index 8663f6c..829ae76 100644
  
  		if (pfn >= end_pfn)
  			continue;
-@@ -294,14 +300,13 @@ repeat:
+@@ -293,14 +299,13 @@ repeat:
  #endif
  		for (; pmd_idx < PTRS_PER_PMD && pfn < end_pfn;
  		     pmd++, pmd_idx++) {
@@ -24819,7 +24782,7 @@ index 8663f6c..829ae76 100644
  				pgprot_t prot = PAGE_KERNEL_LARGE;
  				/*
  				 * first pass will use the same initial
-@@ -311,11 +316,7 @@ repeat:
+@@ -310,11 +315,7 @@ repeat:
  					__pgprot(PTE_IDENT_ATTR |
  						 _PAGE_PSE);
  
@@ -24832,7 +24795,7 @@ index 8663f6c..829ae76 100644
  					prot = PAGE_KERNEL_LARGE_EXEC;
  
  				pages_2m++;
-@@ -332,7 +333,7 @@ repeat:
+@@ -331,7 +332,7 @@ repeat:
  			pte_ofs = pte_index((pfn<<PAGE_SHIFT) + PAGE_OFFSET);
  			pte += pte_ofs;
  			for (; pte_ofs < PTRS_PER_PTE && pfn < end_pfn;
@@ -24841,7 +24804,7 @@ index 8663f6c..829ae76 100644
  				pgprot_t prot = PAGE_KERNEL;
  				/*
  				 * first pass will use the same initial
-@@ -340,7 +341,7 @@ repeat:
+@@ -339,7 +340,7 @@ repeat:
  				 */
  				pgprot_t init_prot = __pgprot(PTE_IDENT_ATTR);
  
@@ -24850,7 +24813,7 @@ index 8663f6c..829ae76 100644
  					prot = PAGE_KERNEL_EXEC;
  
  				pages_4k++;
-@@ -466,7 +467,7 @@ void __init native_pagetable_setup_start(pgd_t *base)
+@@ -465,7 +466,7 @@ void __init native_pagetable_setup_start(pgd_t *base)
  
  		pud = pud_offset(pgd, va);
  		pmd = pmd_offset(pud, va);
@@ -24859,7 +24822,7 @@ index 8663f6c..829ae76 100644
  			break;
  
  		pte = pte_offset_kernel(pmd, va);
-@@ -518,12 +519,10 @@ void __init early_ioremap_page_table_range_init(void)
+@@ -517,12 +518,10 @@ void __init early_ioremap_page_table_range_init(void)
  
  static void __init pagetable_init(void)
  {
@@ -24874,7 +24837,7 @@ index 8663f6c..829ae76 100644
  EXPORT_SYMBOL_GPL(__supported_pte_mask);
  
  /* user-defined highmem size */
-@@ -735,6 +734,12 @@ void __init mem_init(void)
+@@ -734,6 +733,12 @@ void __init mem_init(void)
  
  	pci_iommu_alloc();
  
@@ -24887,7 +24850,7 @@ index 8663f6c..829ae76 100644
  #ifdef CONFIG_FLATMEM
  	BUG_ON(!mem_map);
  #endif
-@@ -761,7 +766,7 @@ void __init mem_init(void)
+@@ -760,7 +765,7 @@ void __init mem_init(void)
  			reservedpages++;
  
  	codesize =  (unsigned long) &_etext - (unsigned long) &_text;
@@ -24896,7 +24859,7 @@ index 8663f6c..829ae76 100644
  	initsize =  (unsigned long) &__init_end - (unsigned long) &__init_begin;
  
  	printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, "
-@@ -802,10 +807,10 @@ void __init mem_init(void)
+@@ -801,10 +806,10 @@ void __init mem_init(void)
  		((unsigned long)&__init_end -
  		 (unsigned long)&__init_begin) >> 10,
  
@@ -24910,7 +24873,7 @@ index 8663f6c..829ae76 100644
  		((unsigned long)&_etext - (unsigned long)&_text) >> 10);
  
  	/*
-@@ -883,6 +888,7 @@ void set_kernel_text_rw(void)
+@@ -882,6 +887,7 @@ void set_kernel_text_rw(void)
  	if (!kernel_set_to_readonly)
  		return;
  
@@ -24918,7 +24881,7 @@ index 8663f6c..829ae76 100644
  	pr_debug("Set kernel text: %lx - %lx for read write\n",
  		 start, start+size);
  
-@@ -897,6 +903,7 @@ void set_kernel_text_ro(void)
+@@ -896,6 +902,7 @@ void set_kernel_text_ro(void)
  	if (!kernel_set_to_readonly)
  		return;
  
@@ -24926,7 +24889,7 @@ index 8663f6c..829ae76 100644
  	pr_debug("Set kernel text: %lx - %lx for read only\n",
  		 start, start+size);
  
-@@ -925,6 +932,7 @@ void mark_rodata_ro(void)
+@@ -924,6 +931,7 @@ void mark_rodata_ro(void)
  	unsigned long start = PFN_ALIGN(_text);
  	unsigned long size = PFN_ALIGN(_etext) - start;
  
@@ -24935,10 +24898,10 @@ index 8663f6c..829ae76 100644
  	printk(KERN_INFO "Write protecting the kernel text: %luk\n",
  		size >> 10);
 diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c
-index 436a030..4f97ffc 100644
+index fc18be0..e539653 100644
 --- a/arch/x86/mm/init_64.c
 +++ b/arch/x86/mm/init_64.c
-@@ -75,7 +75,7 @@ early_param("gbpages", parse_direct_gbpages_on);
+@@ -74,7 +74,7 @@ early_param("gbpages", parse_direct_gbpages_on);
   * around without checking the pgd every time.
   */
  
@@ -24947,7 +24910,7 @@ index 436a030..4f97ffc 100644
  EXPORT_SYMBOL_GPL(__supported_pte_mask);
  
  int force_personality32;
-@@ -108,12 +108,22 @@ void sync_global_pgds(unsigned long start, unsigned long end)
+@@ -107,12 +107,22 @@ void sync_global_pgds(unsigned long start, unsigned long end)
  
  	for (address = start; address <= end; address += PGDIR_SIZE) {
  		const pgd_t *pgd_ref = pgd_offset_k(address);
@@ -24970,7 +24933,7 @@ index 436a030..4f97ffc 100644
  		list_for_each_entry(page, &pgd_list, lru) {
  			pgd_t *pgd;
  			spinlock_t *pgt_lock;
-@@ -122,6 +132,7 @@ void sync_global_pgds(unsigned long start, unsigned long end)
+@@ -121,6 +131,7 @@ void sync_global_pgds(unsigned long start, unsigned long end)
  			/* the pgt_lock only for Xen */
  			pgt_lock = &pgd_page_get_mm(page)->page_table_lock;
  			spin_lock(pgt_lock);
@@ -24978,7 +24941,7 @@ index 436a030..4f97ffc 100644
  
  			if (pgd_none(*pgd))
  				set_pgd(pgd, *pgd_ref);
-@@ -129,7 +140,10 @@ void sync_global_pgds(unsigned long start, unsigned long end)
+@@ -128,7 +139,10 @@ void sync_global_pgds(unsigned long start, unsigned long end)
  				BUG_ON(pgd_page_vaddr(*pgd)
  				       != pgd_page_vaddr(*pgd_ref));
  
@@ -24989,7 +24952,7 @@ index 436a030..4f97ffc 100644
  		}
  		spin_unlock(&pgd_lock);
  	}
-@@ -162,7 +176,7 @@ static pud_t *fill_pud(pgd_t *pgd, unsigned long vaddr)
+@@ -161,7 +175,7 @@ static pud_t *fill_pud(pgd_t *pgd, unsigned long vaddr)
  {
  	if (pgd_none(*pgd)) {
  		pud_t *pud = (pud_t *)spp_getpage();
@@ -24998,7 +24961,7 @@ index 436a030..4f97ffc 100644
  		if (pud != pud_offset(pgd, 0))
  			printk(KERN_ERR "PAGETABLE BUG #00! %p <-> %p\n",
  			       pud, pud_offset(pgd, 0));
-@@ -174,7 +188,7 @@ static pmd_t *fill_pmd(pud_t *pud, unsigned long vaddr)
+@@ -173,7 +187,7 @@ static pmd_t *fill_pmd(pud_t *pud, unsigned long vaddr)
  {
  	if (pud_none(*pud)) {
  		pmd_t *pmd = (pmd_t *) spp_getpage();
@@ -25007,7 +24970,7 @@ index 436a030..4f97ffc 100644
  		if (pmd != pmd_offset(pud, 0))
  			printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
  			       pmd, pmd_offset(pud, 0));
-@@ -203,7 +217,9 @@ void set_pte_vaddr_pud(pud_t *pud_page, unsigned long vaddr, pte_t new_pte)
+@@ -202,7 +216,9 @@ void set_pte_vaddr_pud(pud_t *pud_page, unsigned long vaddr, pte_t new_pte)
  	pmd = fill_pmd(pud, vaddr);
  	pte = fill_pte(pmd, vaddr);
  
@@ -25017,7 +24980,7 @@ index 436a030..4f97ffc 100644
  
  	/*
  	 * It's enough to flush this one mapping.
-@@ -262,14 +278,12 @@ static void __init __init_extra_mapping(unsigned long phys, unsigned long size,
+@@ -261,14 +277,12 @@ static void __init __init_extra_mapping(unsigned long phys, unsigned long size,
  		pgd = pgd_offset_k((unsigned long)__va(phys));
  		if (pgd_none(*pgd)) {
  			pud = (pud_t *) spp_getpage();
@@ -25034,7 +24997,7 @@ index 436a030..4f97ffc 100644
  		}
  		pmd = pmd_offset(pud, phys);
  		BUG_ON(!pmd_none(*pmd));
-@@ -330,7 +344,7 @@ static __ref void *alloc_low_page(unsigned long *phys)
+@@ -329,7 +343,7 @@ static __ref void *alloc_low_page(unsigned long *phys)
  	if (pfn >= pgt_buf_top)
  		panic("alloc_low_page: ran out of memory");
  
@@ -25043,7 +25006,7 @@ index 436a030..4f97ffc 100644
  	clear_page(adr);
  	*phys  = pfn * PAGE_SIZE;
  	return adr;
-@@ -346,7 +360,7 @@ static __ref void *map_low_page(void *virt)
+@@ -345,7 +359,7 @@ static __ref void *map_low_page(void *virt)
  
  	phys = __pa(virt);
  	left = phys & (PAGE_SIZE - 1);
@@ -25052,7 +25015,7 @@ index 436a030..4f97ffc 100644
  	adr = (void *)(((unsigned long)adr) | left);
  
  	return adr;
-@@ -546,7 +560,7 @@ phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end,
+@@ -545,7 +559,7 @@ phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end,
  		unmap_low_page(pmd);
  
  		spin_lock(&init_mm.page_table_lock);
@@ -25061,7 +25024,7 @@ index 436a030..4f97ffc 100644
  		spin_unlock(&init_mm.page_table_lock);
  	}
  	__flush_tlb_all();
-@@ -592,7 +606,7 @@ kernel_physical_mapping_init(unsigned long start,
+@@ -591,7 +605,7 @@ kernel_physical_mapping_init(unsigned long start,
  		unmap_low_page(pud);
  
  		spin_lock(&init_mm.page_table_lock);
@@ -25070,7 +25033,7 @@ index 436a030..4f97ffc 100644
  		spin_unlock(&init_mm.page_table_lock);
  		pgd_changed = true;
  	}
-@@ -684,6 +698,12 @@ void __init mem_init(void)
+@@ -683,6 +697,12 @@ void __init mem_init(void)
  
  	pci_iommu_alloc();
  
@@ -25083,7 +25046,7 @@ index 436a030..4f97ffc 100644
  	/* clear_bss() already clear the empty_zero_page */
  
  	reservedpages = 0;
-@@ -844,8 +864,8 @@ int kern_addr_valid(unsigned long addr)
+@@ -843,8 +863,8 @@ int kern_addr_valid(unsigned long addr)
  static struct vm_area_struct gate_vma = {
  	.vm_start	= VSYSCALL_START,
  	.vm_end		= VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
@@ -25094,7 +25057,7 @@ index 436a030..4f97ffc 100644
  };
  
  struct vm_area_struct *get_gate_vma(struct mm_struct *mm)
-@@ -879,7 +899,7 @@ int in_gate_area_no_mm(unsigned long addr)
+@@ -878,7 +898,7 @@ int in_gate_area_no_mm(unsigned long addr)
  
  const char *arch_vma_name(struct vm_area_struct *vma)
  {
@@ -25756,10 +25719,10 @@ index 8573b83..4f3ed7e 100644
  	paravirt_pgd_free(mm, pgd);
  	free_page((unsigned long)pgd);
 diff --git a/arch/x86/mm/pgtable_32.c b/arch/x86/mm/pgtable_32.c
-index cac7184..09a39fa 100644
+index a69bcb8..19068ab 100644
 --- a/arch/x86/mm/pgtable_32.c
 +++ b/arch/x86/mm/pgtable_32.c
-@@ -48,10 +48,13 @@ void set_pte_vaddr(unsigned long vaddr, pte_t pteval)
+@@ -47,10 +47,13 @@ void set_pte_vaddr(unsigned long vaddr, pte_t pteval)
  		return;
  	}
  	pte = pte_offset_kernel(pmd, vaddr);
@@ -25823,7 +25786,7 @@ index d6c0418..06a0ad5 100644
  EXPORT_SYMBOL_GPL(leave_mm);
  
 diff --git a/arch/x86/net/bpf_jit.S b/arch/x86/net/bpf_jit.S
-index 6687022..ceabcfa 100644
+index 877b9a1..a8ecf42 100644
 --- a/arch/x86/net/bpf_jit.S
 +++ b/arch/x86/net/bpf_jit.S
 @@ -9,6 +9,7 @@
@@ -25834,23 +25797,23 @@ index 6687022..ceabcfa 100644
  
  /*
   * Calling convention :
-@@ -35,6 +36,7 @@ sk_load_word:
+@@ -35,6 +36,7 @@ sk_load_word_positive_offset:
  	jle	bpf_slow_path_word
  	mov     (SKBDATA,%rsi),%eax
  	bswap   %eax  			/* ntohl() */
 +	pax_force_retaddr
  	ret
  
- 
-@@ -53,6 +55,7 @@ sk_load_half:
+ sk_load_half:
+@@ -52,6 +54,7 @@ sk_load_half_positive_offset:
  	jle	bpf_slow_path_half
  	movzwl	(SKBDATA,%rsi),%eax
  	rol	$8,%ax			# ntohs()
 +	pax_force_retaddr
  	ret
  
- sk_load_byte_ind:
-@@ -66,6 +69,7 @@ sk_load_byte:
+ sk_load_byte:
+@@ -66,6 +69,7 @@ sk_load_byte_positive_offset:
  	cmp	%esi,%r9d   /* if (offset >= hlen) goto bpf_slow_path_byte */
  	jle	bpf_slow_path_byte
  	movzbl	(SKBDATA,%rsi),%eax
@@ -25858,23 +25821,15 @@ index 6687022..ceabcfa 100644
  	ret
  
  /**
-@@ -82,6 +86,7 @@ ENTRY(sk_load_byte_msh)
+@@ -87,6 +91,7 @@ sk_load_byte_msh_positive_offset:
  	movzbl	(SKBDATA,%rsi),%ebx
  	and	$15,%bl
  	shl	$2,%bl
 +	pax_force_retaddr
  	ret
- 	CFI_ENDPROC
- ENDPROC(sk_load_byte_msh)
-@@ -91,6 +96,7 @@ bpf_error:
- 	xor		%eax,%eax
- 	mov		-8(%rbp),%rbx
- 	leaveq
-+	pax_force_retaddr
- 	ret
  
  /* rsi contains offset and can be scratched */
-@@ -113,6 +119,7 @@ bpf_slow_path_word:
+@@ -109,6 +114,7 @@ bpf_slow_path_word:
  	js	bpf_error
  	mov	-12(%rbp),%eax
  	bswap	%eax
@@ -25882,7 +25837,7 @@ index 6687022..ceabcfa 100644
  	ret
  
  bpf_slow_path_half:
-@@ -121,12 +128,14 @@ bpf_slow_path_half:
+@@ -117,12 +123,14 @@ bpf_slow_path_half:
  	mov	-12(%rbp),%ax
  	rol	$8,%ax
  	movzwl	%ax,%eax
@@ -25897,17 +25852,57 @@ index 6687022..ceabcfa 100644
  	ret
  
  bpf_slow_path_byte_msh:
-@@ -137,4 +146,5 @@ bpf_slow_path_byte_msh:
+@@ -133,6 +141,7 @@ bpf_slow_path_byte_msh:
  	and	$15,%al
  	shl	$2,%al
  	xchg	%eax,%ebx
 +	pax_force_retaddr
  	ret
+ 
+ #define sk_negative_common(SIZE)				\
+@@ -157,6 +166,7 @@ sk_load_word_negative_offset:
+ 	sk_negative_common(4)
+ 	mov	(%rax), %eax
+ 	bswap	%eax
++	pax_force_retaddr
+ 	ret
+ 
+ bpf_slow_path_half_neg:
+@@ -168,6 +178,7 @@ sk_load_half_negative_offset:
+ 	mov	(%rax),%ax
+ 	rol	$8,%ax
+ 	movzwl	%ax,%eax
++	pax_force_retaddr
+ 	ret
+ 
+ bpf_slow_path_byte_neg:
+@@ -177,6 +188,7 @@ sk_load_byte_negative_offset:
+ 	.globl	sk_load_byte_negative_offset
+ 	sk_negative_common(1)
+ 	movzbl	(%rax), %eax
++	pax_force_retaddr
+ 	ret
+ 
+ bpf_slow_path_byte_msh_neg:
+@@ -190,6 +202,7 @@ sk_load_byte_msh_negative_offset:
+ 	and	$15,%al
+ 	shl	$2,%al
+ 	xchg	%eax,%ebx
++	pax_force_retaddr
+ 	ret
+ 
+ bpf_error:
+@@ -197,4 +210,5 @@ bpf_error:
+ 	xor		%eax,%eax
+ 	mov		-8(%rbp),%rbx
+ 	leaveq
++	pax_force_retaddr
+ 	ret
 diff --git a/arch/x86/net/bpf_jit_comp.c b/arch/x86/net/bpf_jit_comp.c
-index 5a5b6e4..201d42e 100644
+index 0597f95..a12c36e 100644
 --- a/arch/x86/net/bpf_jit_comp.c
 +++ b/arch/x86/net/bpf_jit_comp.c
-@@ -117,6 +117,10 @@ static inline void bpf_flush_icache(void *start, void *end)
+@@ -120,6 +120,11 @@ static inline void bpf_flush_icache(void *start, void *end)
  	set_fs(old_fs);
  }
  
@@ -25915,10 +25910,11 @@ index 5a5b6e4..201d42e 100644
 +	struct work_struct work;
 +	void *image;
 +};
++
+ #define CHOOSE_LOAD_FUNC(K, func) \
+ 	((int)K < 0 ? ((int)K >= SKF_LL_OFF ? func##_negative_offset : func) : func##_positive_offset)
  
- void bpf_jit_compile(struct sk_filter *fp)
- {
-@@ -141,6 +145,10 @@ void bpf_jit_compile(struct sk_filter *fp)
+@@ -146,6 +151,10 @@ void bpf_jit_compile(struct sk_filter *fp)
  	if (addrs == NULL)
  		return;
  
@@ -25929,25 +25925,7 @@ index 5a5b6e4..201d42e 100644
  	/* Before first pass, make a rough estimation of addrs[]
  	 * each bpf instruction is translated to less than 64 bytes
  	 */
-@@ -477,7 +485,7 @@ void bpf_jit_compile(struct sk_filter *fp)
- common_load:			seen |= SEEN_DATAREF;
- 				if ((int)K < 0) {
- 					/* Abort the JIT because __load_pointer() is needed. */
--					goto out;
-+					goto error;
- 				}
- 				t_offset = func - (image + addrs[i]);
- 				EMIT1_off32(0xbe, K); /* mov imm32,%esi */
-@@ -492,7 +500,7 @@ common_load:			seen |= SEEN_DATAREF;
- 			case BPF_S_LDX_B_MSH:
- 				if ((int)K < 0) {
- 					/* Abort the JIT because __load_pointer() is needed. */
--					goto out;
-+					goto error;
- 				}
- 				seen |= SEEN_DATAREF | SEEN_XREG;
- 				t_offset = sk_load_byte_msh - (image + addrs[i]);
-@@ -582,17 +590,18 @@ cond_branch:			f_offset = addrs[i + filter[i].jf] - addrs[i];
+@@ -589,17 +598,18 @@ cond_branch:			f_offset = addrs[i + filter[i].jf] - addrs[i];
  				break;
  			default:
  				/* hmm, too complex filter, give up with jit compiler */
@@ -25970,7 +25948,7 @@ index 5a5b6e4..201d42e 100644
  			}
  			proglen += ilen;
  			addrs[i] = proglen;
-@@ -613,11 +622,9 @@ cond_branch:			f_offset = addrs[i + filter[i].jf] - addrs[i];
+@@ -620,11 +630,9 @@ cond_branch:			f_offset = addrs[i + filter[i].jf] - addrs[i];
  			break;
  		}
  		if (proglen == oldproglen) {
@@ -25984,7 +25962,7 @@ index 5a5b6e4..201d42e 100644
  		}
  		oldproglen = proglen;
  	}
-@@ -633,7 +640,10 @@ cond_branch:			f_offset = addrs[i + filter[i].jf] - addrs[i];
+@@ -640,7 +648,10 @@ cond_branch:			f_offset = addrs[i + filter[i].jf] - addrs[i];
  		bpf_flush_icache(image, image + proglen);
  
  		fp->bpf_func = (void *)image;
@@ -25996,7 +25974,7 @@ index 5a5b6e4..201d42e 100644
  out:
  	kfree(addrs);
  	return;
-@@ -641,18 +651,20 @@ out:
+@@ -648,18 +659,20 @@ out:
  
  static void jit_free_defer(struct work_struct *arg)
  {
@@ -26021,7 +25999,7 @@ index 5a5b6e4..201d42e 100644
  	}
  }
 diff --git a/arch/x86/oprofile/backtrace.c b/arch/x86/oprofile/backtrace.c
-index bff89df..377758a 100644
+index d6aa6e8..266395a 100644
 --- a/arch/x86/oprofile/backtrace.c
 +++ b/arch/x86/oprofile/backtrace.c
 @@ -46,11 +46,11 @@ dump_user_backtrace_32(struct stack_frame_ia32 *head)
@@ -26057,20 +26035,20 @@ index bff89df..377758a 100644
  		if (depth)
  			dump_trace(NULL, regs, (unsigned long *)stack, 0,
 diff --git a/arch/x86/pci/mrst.c b/arch/x86/pci/mrst.c
-index cb29191..036766d 100644
+index 140942f..8a5cc55 100644
 --- a/arch/x86/pci/mrst.c
 +++ b/arch/x86/pci/mrst.c
-@@ -234,7 +234,9 @@ int __init pci_mrst_init(void)
- 	printk(KERN_INFO "Moorestown platform detected, using MRST PCI ops\n");
+@@ -238,7 +238,9 @@ int __init pci_mrst_init(void)
+ 	printk(KERN_INFO "Intel MID platform detected, using MID PCI ops\n");
  	pci_mmcfg_late_init();
  	pcibios_enable_irq = mrst_pci_irq_enable;
 -	pci_root_ops = pci_mrst_ops;
 +	pax_open_kernel();
 +	memcpy((void *)&pci_root_ops, &pci_mrst_ops, sizeof(pci_mrst_ops));
 +	pax_close_kernel();
+ 	pci_soc_mode = 1;
  	/* Continue with standard init */
  	return 1;
- }
 diff --git a/arch/x86/pci/pcbios.c b/arch/x86/pci/pcbios.c
 index da8fe05..7ee6704 100644
 --- a/arch/x86/pci/pcbios.c
@@ -26601,37 +26579,32 @@ index 4c07cca..2c8427d 100644
  	ret
  ENDPROC(efi_call6)
 diff --git a/arch/x86/platform/mrst/mrst.c b/arch/x86/platform/mrst/mrst.c
-index 475e2cd..1b8e708 100644
+index e31bcd8..f12dc46 100644
 --- a/arch/x86/platform/mrst/mrst.c
 +++ b/arch/x86/platform/mrst/mrst.c
-@@ -76,18 +76,20 @@ struct sfi_rtc_table_entry sfi_mrtc_array[SFI_MRTC_MAX];
+@@ -78,13 +78,15 @@ struct sfi_rtc_table_entry sfi_mrtc_array[SFI_MRTC_MAX];
  EXPORT_SYMBOL_GPL(sfi_mrtc_array);
  int sfi_mrtc_num;
  
 -static void mrst_power_off(void)
 +static __noreturn void mrst_power_off(void)
  {
- 	if (__mrst_cpu_chip == MRST_CPU_CHIP_LINCROFT)
- 		intel_scu_ipc_simple_command(IPCMSG_COLD_RESET, 1);
 +	BUG();
  }
  
 -static void mrst_reboot(void)
 +static __noreturn void mrst_reboot(void)
  {
- 	if (__mrst_cpu_chip == MRST_CPU_CHIP_LINCROFT)
- 		intel_scu_ipc_simple_command(IPCMSG_COLD_RESET, 0);
- 	else
- 		intel_scu_ipc_simple_command(IPCMSG_COLD_BOOT, 0);
+ 	intel_scu_ipc_simple_command(IPCMSG_COLD_BOOT, 0);
 +	BUG();
  }
  
  /* parse all the mtimer info to a static mtimer array */
 diff --git a/arch/x86/power/cpu.c b/arch/x86/power/cpu.c
-index f10c0af..3ec1f95 100644
+index 218cdb1..fd55c08 100644
 --- a/arch/x86/power/cpu.c
 +++ b/arch/x86/power/cpu.c
-@@ -131,7 +131,7 @@ static void do_fpu_end(void)
+@@ -132,7 +132,7 @@ static void do_fpu_end(void)
  static void fix_processor_context(void)
  {
  	int cpu = smp_processor_id();
@@ -26640,7 +26613,7 @@ index f10c0af..3ec1f95 100644
  
  	set_tss_desc(cpu, t);	/*
  				 * This just modifies memory; should not be
-@@ -141,7 +141,9 @@ static void fix_processor_context(void)
+@@ -142,7 +142,9 @@ static void fix_processor_context(void)
  				 */
  
  #ifdef CONFIG_X86_64
@@ -26651,27 +26624,24 @@ index f10c0af..3ec1f95 100644
  	syscall_init();				/* This sets MSR_*STAR and related */
  #endif
 diff --git a/arch/x86/tools/relocs.c b/arch/x86/tools/relocs.c
-index b685296..5cdc8ad 100644
+index b685296..0180fa9 100644
 --- a/arch/x86/tools/relocs.c
 +++ b/arch/x86/tools/relocs.c
-@@ -14,8 +14,16 @@
- 
- static void die(char *fmt, ...);
+@@ -12,10 +12,13 @@
+ #include <regex.h>
+ #include <tools/le_byteshift.h>
  
 +#include "../../../include/generated/autoconf.h"
-+#ifdef CONFIG_X86_32
-+#define __PAGE_OFFSET CONFIG_PAGE_OFFSET
-+#else
-+#define __PAGE_OFFSET 0
-+#endif
 +
+ static void die(char *fmt, ...);
+ 
  #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
  static Elf32_Ehdr ehdr;
 +static Elf32_Phdr *phdr;
  static unsigned long reloc_count, reloc_idx;
  static unsigned long *relocs;
  static unsigned long reloc16_count, reloc16_idx;
-@@ -323,9 +331,39 @@ static void read_ehdr(FILE *fp)
+@@ -323,9 +326,39 @@ static void read_ehdr(FILE *fp)
  	}
  }
  
@@ -26712,7 +26682,7 @@ index b685296..5cdc8ad 100644
  	Elf32_Shdr shdr;
  
  	secs = calloc(ehdr.e_shnum, sizeof(struct section));
-@@ -360,7 +398,7 @@ static void read_shdrs(FILE *fp)
+@@ -360,7 +393,7 @@ static void read_shdrs(FILE *fp)
  
  static void read_strtabs(FILE *fp)
  {
@@ -26721,7 +26691,7 @@ index b685296..5cdc8ad 100644
  	for (i = 0; i < ehdr.e_shnum; i++) {
  		struct section *sec = &secs[i];
  		if (sec->shdr.sh_type != SHT_STRTAB) {
-@@ -385,7 +423,7 @@ static void read_strtabs(FILE *fp)
+@@ -385,7 +418,7 @@ static void read_strtabs(FILE *fp)
  
  static void read_symtabs(FILE *fp)
  {
@@ -26730,7 +26700,7 @@ index b685296..5cdc8ad 100644
  	for (i = 0; i < ehdr.e_shnum; i++) {
  		struct section *sec = &secs[i];
  		if (sec->shdr.sh_type != SHT_SYMTAB) {
-@@ -418,7 +456,9 @@ static void read_symtabs(FILE *fp)
+@@ -418,7 +451,9 @@ static void read_symtabs(FILE *fp)
  
  static void read_relocs(FILE *fp)
  {
@@ -26741,19 +26711,23 @@ index b685296..5cdc8ad 100644
  	for (i = 0; i < ehdr.e_shnum; i++) {
  		struct section *sec = &secs[i];
  		if (sec->shdr.sh_type != SHT_REL) {
-@@ -438,9 +478,18 @@ static void read_relocs(FILE *fp)
+@@ -438,9 +473,22 @@ static void read_relocs(FILE *fp)
  			die("Cannot read symbol table: %s\n",
  				strerror(errno));
  		}
 +		base = 0;
++
++#if defined(CONFIG_PAX_KERNEXEC) && defined(CONFIG_X86_32)
 +		for (j = 0; j < ehdr.e_phnum; j++) {
 +			if (phdr[j].p_type != PT_LOAD )
 +				continue;
 +			if (secs[sec->shdr.sh_info].shdr.sh_offset < phdr[j].p_offset || secs[sec->shdr.sh_info].shdr.sh_offset >= phdr[j].p_offset + phdr[j].p_filesz)
 +				continue;
-+			base = __PAGE_OFFSET + phdr[j].p_paddr - phdr[j].p_vaddr;
++			base = CONFIG_PAGE_OFFSET + phdr[j].p_paddr - phdr[j].p_vaddr;
 +			break;
 +		}
++#endif
++
  		for (j = 0; j < sec->shdr.sh_size/sizeof(Elf32_Rel); j++) {
  			Elf32_Rel *rel = &sec->reltab[j];
 -			rel->r_offset = elf32_to_cpu(rel->r_offset);
@@ -26761,7 +26735,7 @@ index b685296..5cdc8ad 100644
  			rel->r_info   = elf32_to_cpu(rel->r_info);
  		}
  	}
-@@ -449,13 +498,13 @@ static void read_relocs(FILE *fp)
+@@ -449,13 +497,13 @@ static void read_relocs(FILE *fp)
  
  static void print_absolute_symbols(void)
  {
@@ -26777,7 +26751,7 @@ index b685296..5cdc8ad 100644
  
  		if (sec->shdr.sh_type != SHT_SYMTAB) {
  			continue;
-@@ -482,14 +531,14 @@ static void print_absolute_symbols(void)
+@@ -482,7 +530,7 @@ static void print_absolute_symbols(void)
  
  static void print_absolute_relocs(void)
  {
@@ -26786,15 +26760,7 @@ index b685296..5cdc8ad 100644
  
  	for (i = 0; i < ehdr.e_shnum; i++) {
  		struct section *sec = &secs[i];
- 		struct section *sec_applies, *sec_symtab;
- 		char *sym_strtab;
- 		Elf32_Sym *sh_symtab;
--		int j;
-+		unsigned int j;
- 		if (sec->shdr.sh_type != SHT_REL) {
- 			continue;
- 		}
-@@ -551,13 +600,13 @@ static void print_absolute_relocs(void)
+@@ -551,7 +599,7 @@ static void print_absolute_relocs(void)
  static void walk_relocs(void (*visit)(Elf32_Rel *rel, Elf32_Sym *sym),
  			int use_real_mode)
  {
@@ -26803,16 +26769,9 @@ index b685296..5cdc8ad 100644
  	/* Walk through the relocations */
  	for (i = 0; i < ehdr.e_shnum; i++) {
  		char *sym_strtab;
- 		Elf32_Sym *sh_symtab;
- 		struct section *sec_applies, *sec_symtab;
--		int j;
-+		unsigned int j;
- 		struct section *sec = &secs[i];
- 
- 		if (sec->shdr.sh_type != SHT_REL) {
-@@ -583,6 +632,22 @@ static void walk_relocs(void (*visit)(Elf32_Rel *rel, Elf32_Sym *sym),
- 
- 			shn_abs = sym->st_shndx == SHN_ABS;
+@@ -581,6 +629,22 @@ static void walk_relocs(void (*visit)(Elf32_Rel *rel, Elf32_Sym *sym),
+ 			sym = &sh_symtab[ELF32_R_SYM(rel->r_info)];
+ 			r_type = ELF32_R_TYPE(rel->r_info);
  
 +			/* Don't relocate actual per-cpu variables, they are absolute indices, not addresses */
 +			if (!strcmp(sec_name(sym->st_shndx), ".data..percpu") && strcmp(sym_name(sym_strtab, sym), "__per_cpu_load"))
@@ -26830,10 +26789,10 @@ index b685296..5cdc8ad 100644
 +				continue;
 +#endif
 +
+ 			shn_abs = sym->st_shndx == SHN_ABS;
+ 
  			switch (r_type) {
- 			case R_386_NONE:
- 			case R_386_PC32:
-@@ -674,7 +739,7 @@ static int write32(unsigned int v, FILE *f)
+@@ -674,7 +738,7 @@ static int write32(unsigned int v, FILE *f)
  
  static void emit_relocs(int as_text, int use_real_mode)
  {
@@ -26842,7 +26801,7 @@ index b685296..5cdc8ad 100644
  	/* Count how many relocations I have and allocate space for them. */
  	reloc_count = 0;
  	walk_relocs(count_reloc, use_real_mode);
-@@ -801,6 +866,7 @@ int main(int argc, char **argv)
+@@ -801,6 +865,7 @@ int main(int argc, char **argv)
  			fname, strerror(errno));
  	}
  	read_ehdr(fp);
@@ -26851,10 +26810,10 @@ index b685296..5cdc8ad 100644
  	read_strtabs(fp);
  	read_symtabs(fp);
 diff --git a/arch/x86/vdso/Makefile b/arch/x86/vdso/Makefile
-index 5d17950..2253fc9 100644
+index fd14be1..e3c79c0 100644
 --- a/arch/x86/vdso/Makefile
 +++ b/arch/x86/vdso/Makefile
-@@ -137,7 +137,7 @@ quiet_cmd_vdso = VDSO    $@
+@@ -181,7 +181,7 @@ quiet_cmd_vdso = VDSO    $@
  		       -Wl,-T,$(filter %.lds,$^) $(filter %.o,$^) && \
  		 sh $(srctree)/$(src)/checkundef.sh '$(NM)' '$@'
  
@@ -26864,7 +26823,7 @@ index 5d17950..2253fc9 100644
  
  #
 diff --git a/arch/x86/vdso/vdso32-setup.c b/arch/x86/vdso/vdso32-setup.c
-index 468d591..8e80a0a 100644
+index 66e6d93..587f435 100644
 --- a/arch/x86/vdso/vdso32-setup.c
 +++ b/arch/x86/vdso/vdso32-setup.c
 @@ -25,6 +25,7 @@
@@ -26890,10 +26849,10 @@ index 468d591..8e80a0a 100644
  	gate_vma.vm_flags = VM_READ | VM_MAYREAD | VM_EXEC | VM_MAYEXEC;
 -	gate_vma.vm_page_prot = __P101;
 +	gate_vma.vm_page_prot = vm_get_page_prot(gate_vma.vm_flags);
- 	/*
- 	 * Make sure the vDSO gets into every core dump.
- 	 * Dumping its contents makes post-mortem fully interpretable later
-@@ -331,14 +332,14 @@ int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
+ 
+ 	return 0;
+ }
+@@ -330,14 +331,14 @@ int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
  	if (compat)
  		addr = VDSO_HIGH_BASE;
  	else {
@@ -26910,7 +26869,7 @@ index 468d591..8e80a0a 100644
  
  	if (compat_uses_vma || !compat) {
  		/*
-@@ -361,11 +362,11 @@ int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
+@@ -353,11 +354,11 @@ int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
  	}
  
  	current_thread_info()->sysenter_return =
@@ -26924,7 +26883,7 @@ index 468d591..8e80a0a 100644
  
  	up_write(&mm->mmap_sem);
  
-@@ -412,8 +413,14 @@ __initcall(ia32_binfmt_init);
+@@ -404,8 +405,14 @@ __initcall(ia32_binfmt_init);
  
  const char *arch_vma_name(struct vm_area_struct *vma)
  {
@@ -26940,7 +26899,7 @@ index 468d591..8e80a0a 100644
  	return NULL;
  }
  
-@@ -423,7 +430,7 @@ struct vm_area_struct *get_gate_vma(struct mm_struct *mm)
+@@ -415,7 +422,7 @@ struct vm_area_struct *get_gate_vma(struct mm_struct *mm)
  	 * Check to see if the corresponding task was created in compat vdso
  	 * mode.
  	 */
@@ -26950,7 +26909,7 @@ index 468d591..8e80a0a 100644
  	return NULL;
  }
 diff --git a/arch/x86/vdso/vma.c b/arch/x86/vdso/vma.c
-index 153407c..611cba9 100644
+index 00aaf04..4a26505 100644
 --- a/arch/x86/vdso/vma.c
 +++ b/arch/x86/vdso/vma.c
 @@ -16,8 +16,6 @@
@@ -26962,7 +26921,7 @@ index 153407c..611cba9 100644
  extern char vdso_start[], vdso_end[];
  extern unsigned short vdso_sync_cpuid;
  
-@@ -96,7 +94,6 @@ static unsigned long vdso_addr(unsigned long start, unsigned len)
+@@ -141,7 +139,6 @@ static unsigned long vdso_addr(unsigned long start, unsigned len)
  	 * unaligned here as a result of stack start randomization.
  	 */
  	addr = PAGE_ALIGN(addr);
@@ -26970,8 +26929,8 @@ index 153407c..611cba9 100644
  
  	return addr;
  }
-@@ -106,40 +103,35 @@ static unsigned long vdso_addr(unsigned long start, unsigned len)
- int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
+@@ -154,30 +151,31 @@ static int setup_additional_pages(struct linux_binprm *bprm,
+ 				  unsigned size)
  {
  	struct mm_struct *mm = current->mm;
 -	unsigned long addr;
@@ -26987,9 +26946,9 @@ index 153407c..611cba9 100644
 +	if (!(mm->pax_flags & MF_PAX_RANDMMAP))
 +#endif
 +
- 	addr = vdso_addr(mm->start_stack, vdso_size);
+ 	addr = vdso_addr(mm->start_stack, size);
 +	addr = align_addr(addr, NULL, ALIGN_VDSO);
- 	addr = get_unmapped_area(NULL, addr, vdso_size, 0, 0);
+ 	addr = get_unmapped_area(NULL, addr, size, 0, 0);
  	if (IS_ERR_VALUE(addr)) {
  		ret = addr;
  		goto up_fail;
@@ -26998,23 +26957,23 @@ index 153407c..611cba9 100644
 -	current->mm->context.vdso = (void *)addr;
 +	mm->context.vdso = addr;
  
- 	ret = install_special_mapping(mm, addr, vdso_size,
+ 	ret = install_special_mapping(mm, addr, size,
  				      VM_READ|VM_EXEC|
- 				      VM_MAYREAD|VM_MAYWRITE|VM_MAYEXEC|
- 				      VM_ALWAYSDUMP,
- 				      vdso_pages);
+ 				      VM_MAYREAD|VM_MAYWRITE|VM_MAYEXEC,
+ 				      pages);
 -	if (ret) {
 -		current->mm->context.vdso = NULL;
 -		goto up_fail;
 -	}
-+
 +	if (ret)
 +		mm->context.vdso = 0;
  
  up_fail:
  	up_write(&mm->mmap_sem);
- 	return ret;
+@@ -197,10 +195,3 @@ int x32_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
+ 				      vdsox32_size);
  }
+ #endif
 -
 -static __init int vdso_setup(char *s)
 -{
@@ -27023,10 +26982,10 @@ index 153407c..611cba9 100644
 -}
 -__setup("vdso=", vdso_setup);
 diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
-index 4e517d4..8426127 100644
+index 95dccce..de96944 100644
 --- a/arch/x86/xen/enlighten.c
 +++ b/arch/x86/xen/enlighten.c
-@@ -86,8 +86,6 @@ EXPORT_SYMBOL_GPL(xen_start_info);
+@@ -95,8 +95,6 @@ EXPORT_SYMBOL_GPL(xen_start_info);
  
  struct shared_info xen_dummy_shared_info;
  
@@ -27035,7 +26994,7 @@ index 4e517d4..8426127 100644
  RESERVE_BRK(shared_info_page_brk, PAGE_SIZE);
  __read_mostly int xen_have_vector_callback;
  EXPORT_SYMBOL_GPL(xen_have_vector_callback);
-@@ -982,7 +980,10 @@ static const struct pv_cpu_ops xen_cpu_ops __initconst = {
+@@ -1106,7 +1104,10 @@ static const struct pv_cpu_ops xen_cpu_ops __initconst = {
  	.wbinvd = native_wbinvd,
  
  	.read_msr = native_read_msr_safe,
@@ -27046,7 +27005,7 @@ index 4e517d4..8426127 100644
  	.read_tsc = native_read_tsc,
  	.read_pmc = native_read_pmc,
  
-@@ -1030,30 +1031,30 @@ static const struct pv_apic_ops xen_apic_ops __initconst = {
+@@ -1154,30 +1155,30 @@ static const struct pv_apic_ops xen_apic_ops __initconst = {
  #endif
  };
  
@@ -27084,7 +27043,7 @@ index 4e517d4..8426127 100644
  {
  	if (pm_power_off)
  		pm_power_off();
-@@ -1156,7 +1157,17 @@ asmlinkage void __init xen_start_kernel(void)
+@@ -1280,7 +1281,17 @@ asmlinkage void __init xen_start_kernel(void)
  	__userpte_alloc_gfp &= ~__GFP_HIGHMEM;
  
  	/* Work out if we support NX */
@@ -27103,7 +27062,7 @@ index 4e517d4..8426127 100644
  
  	xen_setup_features();
  
-@@ -1187,13 +1198,6 @@ asmlinkage void __init xen_start_kernel(void)
+@@ -1311,13 +1322,6 @@ asmlinkage void __init xen_start_kernel(void)
  
  	machine_ops = xen_machine_ops;
  
@@ -27118,7 +27077,7 @@ index 4e517d4..8426127 100644
  
  #ifdef CONFIG_ACPI_NUMA
 diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c
-index dc19347..1b07a2c 100644
+index 69f5857..0699dc5 100644
 --- a/arch/x86/xen/mmu.c
 +++ b/arch/x86/xen/mmu.c
 @@ -1738,6 +1738,9 @@ pgd_t * __init xen_setup_kernel_pagetable(pgd_t *pgd,
@@ -27143,7 +27102,7 @@ index dc19347..1b07a2c 100644
  	set_page_prot(level2_kernel_pgt, PAGE_KERNEL_RO);
  	set_page_prot(level2_fixmap_pgt, PAGE_KERNEL_RO);
  
-@@ -1963,6 +1970,7 @@ static void __init xen_post_allocator_init(void)
+@@ -1964,6 +1971,7 @@ static void __init xen_post_allocator_init(void)
  	pv_mmu_ops.set_pud = xen_set_pud;
  #if PAGETABLE_LEVELS == 4
  	pv_mmu_ops.set_pgd = xen_set_pgd;
@@ -27151,7 +27110,7 @@ index dc19347..1b07a2c 100644
  #endif
  
  	/* This will work as long as patching hasn't happened yet
-@@ -2044,6 +2052,7 @@ static const struct pv_mmu_ops xen_mmu_ops __initconst = {
+@@ -2045,6 +2053,7 @@ static const struct pv_mmu_ops xen_mmu_ops __initconst = {
  	.pud_val = PV_CALLEE_SAVE(xen_pud_val),
  	.make_pud = PV_CALLEE_SAVE(xen_make_pud),
  	.set_pgd = xen_set_pgd_hyper,
@@ -27160,10 +27119,10 @@ index dc19347..1b07a2c 100644
  	.alloc_pud = xen_alloc_pmd_init,
  	.release_pud = xen_release_pmd_init,
 diff --git a/arch/x86/xen/smp.c b/arch/x86/xen/smp.c
-index f2ce60a..14e08dc 100644
+index 0503c0c..ceb2d16 100644
 --- a/arch/x86/xen/smp.c
 +++ b/arch/x86/xen/smp.c
-@@ -209,11 +209,6 @@ static void __init xen_smp_prepare_boot_cpu(void)
+@@ -215,11 +215,6 @@ static void __init xen_smp_prepare_boot_cpu(void)
  {
  	BUG_ON(smp_processor_id() != 0);
  	native_smp_prepare_boot_cpu();
@@ -27175,7 +27134,7 @@ index f2ce60a..14e08dc 100644
  	xen_filter_cpu_maps();
  	xen_setup_vcpu_info_placement();
  }
-@@ -290,12 +285,12 @@ cpu_initialize_context(unsigned int cpu, struct task_struct *idle)
+@@ -296,12 +291,12 @@ cpu_initialize_context(unsigned int cpu, struct task_struct *idle)
  	gdt = get_cpu_gdt_table(cpu);
  
  	ctxt->flags = VGCF_IN_KERNEL;
@@ -27191,7 +27150,7 @@ index f2ce60a..14e08dc 100644
  #else
  	ctxt->gs_base_kernel = per_cpu_offset(cpu);
  #endif
-@@ -346,13 +341,12 @@ static int __cpuinit xen_cpu_up(unsigned int cpu)
+@@ -352,13 +347,12 @@ static int __cpuinit xen_cpu_up(unsigned int cpu)
  	int rc;
  
  	per_cpu(current_task, cpu) = idle;
@@ -27355,10 +27314,10 @@ index 623e1cd..ca1e109 100644
  		bio = bio_copy_kern(q, kbuf, len, gfp_mask, reading);
  	else
 diff --git a/block/blk-softirq.c b/block/blk-softirq.c
-index 1366a89..e17f54b 100644
+index 467c8de..4bddc6d 100644
 --- a/block/blk-softirq.c
 +++ b/block/blk-softirq.c
-@@ -17,7 +17,7 @@ static DEFINE_PER_CPU(struct list_head, blk_cpu_done);
+@@ -18,7 +18,7 @@ static DEFINE_PER_CPU(struct list_head, blk_cpu_done);
   * Softirq action handler - move entries to local list and loop over them
   * while passing them to the queue registered handler.
   */
@@ -27514,7 +27473,7 @@ index 671d4d6..5f24030 100644
  static void cryptd_queue_worker(struct work_struct *work);
  
 diff --git a/drivers/acpi/apei/cper.c b/drivers/acpi/apei/cper.c
-index 5d41894..22021e4 100644
+index e6defd8..c26a225 100644
 --- a/drivers/acpi/apei/cper.c
 +++ b/drivers/acpi/apei/cper.c
 @@ -38,12 +38,12 @@
@@ -27535,7 +27494,7 @@ index 5d41894..22021e4 100644
  EXPORT_SYMBOL_GPL(cper_next_record_id);
  
 diff --git a/drivers/acpi/ec_sys.c b/drivers/acpi/ec_sys.c
-index b258cab..3fb7da7 100644
+index 7586544..636a2f0 100644
 --- a/drivers/acpi/ec_sys.c
 +++ b/drivers/acpi/ec_sys.c
 @@ -12,6 +12,7 @@
@@ -27546,7 +27505,7 @@ index b258cab..3fb7da7 100644
  #include "internal.h"
  
  MODULE_AUTHOR("Thomas Renninger <trenn@suse.de>");
-@@ -40,7 +41,7 @@ static ssize_t acpi_ec_read_io(struct file *f, char __user *buf,
+@@ -34,7 +35,7 @@ static ssize_t acpi_ec_read_io(struct file *f, char __user *buf,
  	 * struct acpi_ec *ec = ((struct seq_file *)f->private_data)->private;
  	 */
  	unsigned int size = EC_SPACE_SIZE;
@@ -27555,7 +27514,7 @@ index b258cab..3fb7da7 100644
  	loff_t init_off = *off;
  	int err = 0;
  
-@@ -53,9 +54,11 @@ static ssize_t acpi_ec_read_io(struct file *f, char __user *buf,
+@@ -47,9 +48,11 @@ static ssize_t acpi_ec_read_io(struct file *f, char __user *buf,
  		size = count;
  
  	while (size) {
@@ -27568,7 +27527,7 @@ index b258cab..3fb7da7 100644
  		*off += 1;
  		size--;
  	}
-@@ -71,7 +74,6 @@ static ssize_t acpi_ec_write_io(struct file *f, const char __user *buf,
+@@ -65,7 +68,6 @@ static ssize_t acpi_ec_write_io(struct file *f, const char __user *buf,
  
  	unsigned int size = count;
  	loff_t init_off = *off;
@@ -27576,7 +27535,7 @@ index b258cab..3fb7da7 100644
  	int err = 0;
  
  	if (*off >= EC_SPACE_SIZE)
-@@ -82,7 +84,9 @@ static ssize_t acpi_ec_write_io(struct file *f, const char __user *buf,
+@@ -76,7 +78,9 @@ static ssize_t acpi_ec_write_io(struct file *f, const char __user *buf,
  	}
  
  	while (size) {
@@ -27626,10 +27585,10 @@ index 251c7b62..000462d 100644
  				bool enable = !device_may_wakeup(&dev->dev);
  				device_set_wakeup_enable(&dev->dev, enable);
 diff --git a/drivers/acpi/processor_driver.c b/drivers/acpi/processor_driver.c
-index 8ae05ce..7dbbed9 100644
+index 0734086..3ad3e4c 100644
 --- a/drivers/acpi/processor_driver.c
 +++ b/drivers/acpi/processor_driver.c
-@@ -555,7 +555,7 @@ static int __cpuinit acpi_processor_add(struct acpi_device *device)
+@@ -556,7 +556,7 @@ static int __cpuinit acpi_processor_add(struct acpi_device *device)
  		return 0;
  #endif
  
@@ -27639,7 +27598,7 @@ index 8ae05ce..7dbbed9 100644
  	/*
  	 * Buggy BIOS check
 diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
-index c06e0ec..a2c06ba 100644
+index 23763a1..6375e67 100644
 --- a/drivers/ata/libata-core.c
 +++ b/drivers/ata/libata-core.c
 @@ -4736,7 +4736,7 @@ void ata_qc_free(struct ata_queued_cmd *qc)
@@ -27680,7 +27639,7 @@ index c06e0ec..a2c06ba 100644
  }
  
 diff --git a/drivers/ata/pata_arasan_cf.c b/drivers/ata/pata_arasan_cf.c
-index 048589f..4002b98 100644
+index 3239517..343b5f6 100644
 --- a/drivers/ata/pata_arasan_cf.c
 +++ b/drivers/ata/pata_arasan_cf.c
 @@ -862,7 +862,9 @@ static int __devinit arasan_cf_probe(struct platform_device *pdev)
@@ -27801,10 +27760,10 @@ index b22d71c..d6e1049 100644
  	if (vcc->pop) vcc->pop(vcc,skb);
  	else dev_kfree_skb(skb);
 diff --git a/drivers/atm/eni.c b/drivers/atm/eni.c
-index 956e9ac..133516d 100644
+index 2059ee4..faf51c7 100644
 --- a/drivers/atm/eni.c
 +++ b/drivers/atm/eni.c
-@@ -526,7 +526,7 @@ static int rx_aal0(struct atm_vcc *vcc)
+@@ -522,7 +522,7 @@ static int rx_aal0(struct atm_vcc *vcc)
  		DPRINTK(DEV_LABEL "(itf %d): trashing empty cell\n",
  		    vcc->dev->number);
  		length = 0;
@@ -27813,7 +27772,7 @@ index 956e9ac..133516d 100644
  	}
  	else {
  		length = ATM_CELL_SIZE-1; /* no HEC */
-@@ -581,7 +581,7 @@ static int rx_aal5(struct atm_vcc *vcc)
+@@ -577,7 +577,7 @@ static int rx_aal5(struct atm_vcc *vcc)
  			    size);
  		}
  		eff = length = 0;
@@ -27822,7 +27781,7 @@ index 956e9ac..133516d 100644
  	}
  	else {
  		size = (descr & MID_RED_COUNT)*(ATM_CELL_PAYLOAD >> 2);
-@@ -598,7 +598,7 @@ static int rx_aal5(struct atm_vcc *vcc)
+@@ -594,7 +594,7 @@ static int rx_aal5(struct atm_vcc *vcc)
  			    "(VCI=%d,length=%ld,size=%ld (descr 0x%lx))\n",
  			    vcc->dev->number,vcc->vci,length,size << 2,descr);
  			length = eff = 0;
@@ -27831,7 +27790,7 @@ index 956e9ac..133516d 100644
  		}
  	}
  	skb = eff ? atm_alloc_charge(vcc,eff << 2,GFP_ATOMIC) : NULL;
-@@ -771,7 +771,7 @@ rx_dequeued++;
+@@ -767,7 +767,7 @@ rx_dequeued++;
  			vcc->push(vcc,skb);
  			pushed++;
  		}
@@ -27840,7 +27799,7 @@ index 956e9ac..133516d 100644
  	}
  	wake_up(&eni_dev->rx_wait);
  }
-@@ -1229,7 +1229,7 @@ static void dequeue_tx(struct atm_dev *dev)
+@@ -1227,7 +1227,7 @@ static void dequeue_tx(struct atm_dev *dev)
  		    PCI_DMA_TODEVICE);
  		if (vcc->pop) vcc->pop(vcc,skb);
  		else dev_kfree_skb_irq(skb);
@@ -27849,7 +27808,7 @@ index 956e9ac..133516d 100644
  		wake_up(&eni_dev->tx_wait);
  dma_complete++;
  	}
-@@ -1569,7 +1569,7 @@ tx_complete++;
+@@ -1567,7 +1567,7 @@ tx_complete++;
  /*--------------------------------- entries ---------------------------------*/
  
  
@@ -27859,10 +27818,10 @@ index 956e9ac..133516d 100644
      "UTP", "05?", "06?", "07?", /*  4- 7 */
      "TAXI","09?", "10?", "11?", /*  8-11 */
 diff --git a/drivers/atm/firestream.c b/drivers/atm/firestream.c
-index 5072f8a..fa52520d 100644
+index 86fed1b..6dc4721 100644
 --- a/drivers/atm/firestream.c
 +++ b/drivers/atm/firestream.c
-@@ -750,7 +750,7 @@ static void process_txdone_queue (struct fs_dev *dev, struct queue *q)
+@@ -749,7 +749,7 @@ static void process_txdone_queue (struct fs_dev *dev, struct queue *q)
  				}
  			}
  
@@ -27871,7 +27830,7 @@ index 5072f8a..fa52520d 100644
  
  			fs_dprintk (FS_DEBUG_TXMEM, "i");
  			fs_dprintk (FS_DEBUG_ALLOC, "Free t-skb: %p\n", skb);
-@@ -817,7 +817,7 @@ static void process_incoming (struct fs_dev *dev, struct queue *q)
+@@ -816,7 +816,7 @@ static void process_incoming (struct fs_dev *dev, struct queue *q)
  #endif
  				skb_put (skb, qe->p1 & 0xffff); 
  				ATM_SKB(skb)->vcc = atm_vcc;
@@ -27880,7 +27839,7 @@ index 5072f8a..fa52520d 100644
  				__net_timestamp(skb);
  				fs_dprintk (FS_DEBUG_ALLOC, "Free rec-skb: %p (pushed)\n", skb);
  				atm_vcc->push (atm_vcc, skb);
-@@ -838,12 +838,12 @@ static void process_incoming (struct fs_dev *dev, struct queue *q)
+@@ -837,12 +837,12 @@ static void process_incoming (struct fs_dev *dev, struct queue *q)
  				kfree (pe);
  			}
  			if (atm_vcc)
@@ -28041,10 +28000,10 @@ index b182c2f..1c6fa8a 100644
  	return 0;
  }
 diff --git a/drivers/atm/horizon.c b/drivers/atm/horizon.c
-index b812103..e391a49 100644
+index 75fd691..2d20b14 100644
 --- a/drivers/atm/horizon.c
 +++ b/drivers/atm/horizon.c
-@@ -1035,7 +1035,7 @@ static void rx_schedule (hrz_dev * dev, int irq) {
+@@ -1034,7 +1034,7 @@ static void rx_schedule (hrz_dev * dev, int irq) {
  	{
  	  struct atm_vcc * vcc = ATM_SKB(skb)->vcc;
  	  // VC layer stats
@@ -28053,7 +28012,7 @@ index b812103..e391a49 100644
  	  __net_timestamp(skb);
  	  // end of our responsibility
  	  vcc->push (vcc, skb);
-@@ -1187,7 +1187,7 @@ static void tx_schedule (hrz_dev * const dev, int irq) {
+@@ -1186,7 +1186,7 @@ static void tx_schedule (hrz_dev * const dev, int irq) {
  	dev->tx_iovec = NULL;
  	
  	// VC layer stats
@@ -28221,10 +28180,10 @@ index 1c05212..c28e200 100644
  	}
  	atomic_add(skb->truesize, &sk_atm(vcc)->sk_wmem_alloc);
 diff --git a/drivers/atm/iphase.c b/drivers/atm/iphase.c
-index 9e373ba..cf93727 100644
+index d438601..8b98495 100644
 --- a/drivers/atm/iphase.c
 +++ b/drivers/atm/iphase.c
-@@ -1146,7 +1146,7 @@ static int rx_pkt(struct atm_dev *dev)
+@@ -1145,7 +1145,7 @@ static int rx_pkt(struct atm_dev *dev)
  	status = (u_short) (buf_desc_ptr->desc_mode);  
  	if (status & (RX_CER | RX_PTE | RX_OFL))  
  	{  
@@ -28233,7 +28192,7 @@ index 9e373ba..cf93727 100644
  		IF_ERR(printk("IA: bad packet, dropping it");)  
                  if (status & RX_CER) { 
                      IF_ERR(printk(" cause: packet CRC error\n");)
-@@ -1169,7 +1169,7 @@ static int rx_pkt(struct atm_dev *dev)
+@@ -1168,7 +1168,7 @@ static int rx_pkt(struct atm_dev *dev)
  	len = dma_addr - buf_addr;  
          if (len > iadev->rx_buf_sz) {
             printk("Over %d bytes sdu received, dropped!!!\n", iadev->rx_buf_sz);
@@ -28242,7 +28201,7 @@ index 9e373ba..cf93727 100644
  	   goto out_free_desc;
          }
  		  
-@@ -1319,7 +1319,7 @@ static void rx_dle_intr(struct atm_dev *dev)
+@@ -1318,7 +1318,7 @@ static void rx_dle_intr(struct atm_dev *dev)
            ia_vcc = INPH_IA_VCC(vcc);
            if (ia_vcc == NULL)
            {
@@ -28251,7 +28210,7 @@ index 9e373ba..cf93727 100644
               atm_return(vcc, skb->truesize);
               dev_kfree_skb_any(skb);
               goto INCR_DLE;
-@@ -1331,7 +1331,7 @@ static void rx_dle_intr(struct atm_dev *dev)
+@@ -1330,7 +1330,7 @@ static void rx_dle_intr(struct atm_dev *dev)
            if ((length > iadev->rx_buf_sz) || (length > 
                                (skb->len - sizeof(struct cpcs_trailer))))
            {
@@ -28260,7 +28219,7 @@ index 9e373ba..cf93727 100644
               IF_ERR(printk("rx_dle_intr: Bad  AAL5 trailer %d (skb len %d)", 
                                                              length, skb->len);)
               atm_return(vcc, skb->truesize);
-@@ -1347,7 +1347,7 @@ static void rx_dle_intr(struct atm_dev *dev)
+@@ -1346,7 +1346,7 @@ static void rx_dle_intr(struct atm_dev *dev)
  
  	  IF_RX(printk("rx_dle_intr: skb push");)  
  	  vcc->push(vcc,skb);  
@@ -28269,7 +28228,7 @@ index 9e373ba..cf93727 100644
            iadev->rx_pkt_cnt++;
        }  
  INCR_DLE:
-@@ -2827,15 +2827,15 @@ static int ia_ioctl(struct atm_dev *dev, unsigned int cmd, void __user *arg)
+@@ -2826,15 +2826,15 @@ static int ia_ioctl(struct atm_dev *dev, unsigned int cmd, void __user *arg)
           {
               struct k_sonet_stats *stats;
               stats = &PRIV(_ia_dev[board])->sonet_stats;
@@ -28294,7 +28253,7 @@ index 9e373ba..cf93727 100644
           }
              ia_cmds.status = 0;
              break;
-@@ -2940,7 +2940,7 @@ static int ia_pkt_tx (struct atm_vcc *vcc, struct sk_buff *skb) {
+@@ -2939,7 +2939,7 @@ static int ia_pkt_tx (struct atm_vcc *vcc, struct sk_buff *skb) {
  	if ((desc == 0) || (desc > iadev->num_tx_desc))  
  	{  
  		IF_ERR(printk(DEV_LABEL "invalid desc for send: %d\n", desc);) 
@@ -28303,7 +28262,7 @@ index 9e373ba..cf93727 100644
  		if (vcc->pop)   
  		    vcc->pop(vcc, skb);   
  		else  
-@@ -3045,14 +3045,14 @@ static int ia_pkt_tx (struct atm_vcc *vcc, struct sk_buff *skb) {
+@@ -3044,14 +3044,14 @@ static int ia_pkt_tx (struct atm_vcc *vcc, struct sk_buff *skb) {
          ATM_DESC(skb) = vcc->vci;
          skb_queue_tail(&iadev->tx_dma_q, skb);
  
@@ -28321,7 +28280,7 @@ index 9e373ba..cf93727 100644
               vcc->tx_quota =  vcc->tx_quota * 3 / 4;
              printk("Tx1:  vcc->tx_quota = %d \n", (u32)vcc->tx_quota );
 diff --git a/drivers/atm/lanai.c b/drivers/atm/lanai.c
-index f556969..0da15eb 100644
+index 68c7588..7036683 100644
 --- a/drivers/atm/lanai.c
 +++ b/drivers/atm/lanai.c
 @@ -1303,7 +1303,7 @@ static void lanai_send_one_aal5(struct lanai_dev *lanai,
@@ -28606,10 +28565,10 @@ index e8cd652..bbbd1fc 100644
  			} else
  				dev_kfree_skb_irq(oldskb);
 diff --git a/drivers/atm/suni.c b/drivers/atm/suni.c
-index 90f1ccc..04c4a1e 100644
+index 0215934..ce9f5b1 100644
 --- a/drivers/atm/suni.c
 +++ b/drivers/atm/suni.c
-@@ -50,8 +50,8 @@ static DEFINE_SPINLOCK(sunis_lock);
+@@ -49,8 +49,8 @@ static DEFINE_SPINLOCK(sunis_lock);
  
  
  #define ADD_LIMITED(s,v) \
@@ -28669,10 +28628,10 @@ index 5120a96..e2572bd 100644
  }
  
 diff --git a/drivers/atm/zatm.c b/drivers/atm/zatm.c
-index d889f56..17eb71e 100644
+index abe4e20..83c4727 100644
 --- a/drivers/atm/zatm.c
 +++ b/drivers/atm/zatm.c
-@@ -460,7 +460,7 @@ printk("dummy: 0x%08lx, 0x%08lx\n",dummy[0],dummy[1]);
+@@ -459,7 +459,7 @@ printk("dummy: 0x%08lx, 0x%08lx\n",dummy[0],dummy[1]);
  		}
  		if (!size) {
  			dev_kfree_skb_irq(skb);
@@ -28681,7 +28640,7 @@ index d889f56..17eb71e 100644
  			continue;
  		}
  		if (!atm_charge(vcc,skb->truesize)) {
-@@ -470,7 +470,7 @@ printk("dummy: 0x%08lx, 0x%08lx\n",dummy[0],dummy[1]);
+@@ -469,7 +469,7 @@ printk("dummy: 0x%08lx, 0x%08lx\n",dummy[0],dummy[1]);
  		skb->len = size;
  		ATM_SKB(skb)->vcc = vcc;
  		vcc->push(vcc,skb);
@@ -28690,7 +28649,7 @@ index d889f56..17eb71e 100644
  	}
  	zout(pos & 0xffff,MTA(mbx));
  #if 0 /* probably a stupid idea */
-@@ -734,7 +734,7 @@ if (*ZATM_PRV_DSC(skb) != (uPD98401_TXPD_V | uPD98401_TXPD_DP |
+@@ -733,7 +733,7 @@ if (*ZATM_PRV_DSC(skb) != (uPD98401_TXPD_V | uPD98401_TXPD_DP |
  			skb_queue_head(&zatm_vcc->backlog,skb);
  			break;
  		}
@@ -28732,7 +28691,7 @@ index 90aa2a1..af1a177 100644
  }
  
 diff --git a/drivers/base/power/wakeup.c b/drivers/base/power/wakeup.c
-index caf995f..6f76697 100644
+index 2a3e581..3d6a73f 100644
 --- a/drivers/base/power/wakeup.c
 +++ b/drivers/base/power/wakeup.c
 @@ -30,14 +30,14 @@ bool events_check_enabled;
@@ -28752,7 +28711,7 @@ index caf995f..6f76697 100644
  
  	*cnt = (comb >> IN_PROGRESS_BITS);
  	*inpr = comb & MAX_IN_PROGRESS;
-@@ -353,7 +353,7 @@ static void wakeup_source_activate(struct wakeup_source *ws)
+@@ -379,7 +379,7 @@ static void wakeup_source_activate(struct wakeup_source *ws)
  	ws->last_time = ktime_get();
  
  	/* Increment the counter of events in progress. */
@@ -28761,7 +28720,7 @@ index caf995f..6f76697 100644
  }
  
  /**
-@@ -443,7 +443,7 @@ static void wakeup_source_deactivate(struct wakeup_source *ws)
+@@ -475,7 +475,7 @@ static void wakeup_source_deactivate(struct wakeup_source *ws)
  	 * Increment the counter of registered wakeup events and decrement the
  	 * couter of wakeup events in progress simultaneously.
  	 */
@@ -29147,18 +29106,9 @@ index 211fc44..c5116f1 100644
  	mdev->bm_writ_cnt  =
  	mdev->read_cnt     =
 diff --git a/drivers/block/drbd/drbd_nl.c b/drivers/block/drbd/drbd_nl.c
-index af2a250..0fdeb75 100644
+index 946166e..356b39a 100644
 --- a/drivers/block/drbd/drbd_nl.c
 +++ b/drivers/block/drbd/drbd_nl.c
-@@ -2297,7 +2297,7 @@ static void drbd_connector_callback(struct cn_msg *req, struct netlink_skb_parms
- 		return;
- 	}
- 
--	if (!cap_raised(current_cap(), CAP_SYS_ADMIN)) {
-+	if (!capable(CAP_SYS_ADMIN)) {
- 		retcode = ERR_PERM;
- 		goto fail;
- 	}
 @@ -2359,7 +2359,7 @@ static void drbd_connector_callback(struct cn_msg *req, struct netlink_skb_parms
  	module_put(THIS_MODULE);
  }
@@ -29294,7 +29244,7 @@ index 43beaca..4a5b1dd 100644
  }
  
 diff --git a/drivers/block/loop.c b/drivers/block/loop.c
-index cd50435..ba1ffb5 100644
+index bbca966..65e37dd 100644
 --- a/drivers/block/loop.c
 +++ b/drivers/block/loop.c
 @@ -226,7 +226,7 @@ static int __do_lo_send_write(struct file *file,
@@ -29307,7 +29257,7 @@ index cd50435..ba1ffb5 100644
  	if (likely(bw == len))
  		return 0;
 diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig
-index 4364303..9adf4ee 100644
+index ee94686..3e09ad3 100644
 --- a/drivers/char/Kconfig
 +++ b/drivers/char/Kconfig
 @@ -8,7 +8,8 @@ source "drivers/tty/Kconfig"
@@ -29320,7 +29270,7 @@ index 4364303..9adf4ee 100644
  	help
  	  Say Y here if you want to support the /dev/kmem device. The
  	  /dev/kmem device is rarely used, but can be used for certain
-@@ -596,6 +597,7 @@ config DEVPORT
+@@ -581,6 +582,7 @@ config DEVPORT
  	bool
  	depends on !M68K
  	depends on ISA || PCI
@@ -29341,56 +29291,11 @@ index 2e04433..22afc64 100644
  		return -EFAULT;
  
  	client = agp_find_client_by_pid(reserve.pid);
-diff --git a/drivers/char/briq_panel.c b/drivers/char/briq_panel.c
-index 095ab90..afad0a4 100644
---- a/drivers/char/briq_panel.c
-+++ b/drivers/char/briq_panel.c
-@@ -9,6 +9,7 @@
- #include <linux/types.h>
- #include <linux/errno.h>
- #include <linux/tty.h>
-+#include <linux/mutex.h>
- #include <linux/timer.h>
- #include <linux/kernel.h>
- #include <linux/wait.h>
-@@ -34,6 +35,7 @@ static int		vfd_is_open;
- static unsigned char	vfd[40];
- static int		vfd_cursor;
- static unsigned char	ledpb, led;
-+static DEFINE_MUTEX(vfd_mutex);
- 
- static void update_vfd(void)
- {
-@@ -140,12 +142,15 @@ static ssize_t briq_panel_write(struct file *file, const char __user *buf, size_
- 	if (!vfd_is_open)
- 		return -EBUSY;
- 
-+	mutex_lock(&vfd_mutex);
- 	for (;;) {
- 		char c;
- 		if (!indx)
- 			break;
--		if (get_user(c, buf))
-+		if (get_user(c, buf)) {
-+			mutex_unlock(&vfd_mutex);
- 			return -EFAULT;
-+		}
- 		if (esc) {
- 			set_led(c);
- 			esc = 0;
-@@ -175,6 +180,7 @@ static ssize_t briq_panel_write(struct file *file, const char __user *buf, size_
- 		buf++;
- 	}
- 	update_vfd();
-+	mutex_unlock(&vfd_mutex);
- 
- 	return len;
- }
 diff --git a/drivers/char/genrtc.c b/drivers/char/genrtc.c
-index f773a9d..65cd683 100644
+index 21cb980..f15107c 100644
 --- a/drivers/char/genrtc.c
 +++ b/drivers/char/genrtc.c
-@@ -273,6 +273,7 @@ static int gen_rtc_ioctl(struct file *file,
+@@ -272,6 +272,7 @@ static int gen_rtc_ioctl(struct file *file,
  	switch (cmd) {
  
  	case RTC_PLL_GET:
@@ -29399,10 +29304,10 @@ index f773a9d..65cd683 100644
  	 	    return -EINVAL;
  	    else
 diff --git a/drivers/char/hpet.c b/drivers/char/hpet.c
-index 0833896..cccce52 100644
+index dfd7876..c0b0885 100644
 --- a/drivers/char/hpet.c
 +++ b/drivers/char/hpet.c
-@@ -572,7 +572,7 @@ static inline unsigned long hpet_time_div(struct hpets *hpets,
+@@ -571,7 +571,7 @@ static inline unsigned long hpet_time_div(struct hpets *hpets,
  }
  
  static int
@@ -29412,10 +29317,10 @@ index 0833896..cccce52 100644
  {
  	struct hpet_timer __iomem *timer;
 diff --git a/drivers/char/ipmi/ipmi_msghandler.c b/drivers/char/ipmi/ipmi_msghandler.c
-index 58c0e63..46c16bf 100644
+index 2c29942..604c5ba 100644
 --- a/drivers/char/ipmi/ipmi_msghandler.c
 +++ b/drivers/char/ipmi/ipmi_msghandler.c
-@@ -415,7 +415,7 @@ struct ipmi_smi {
+@@ -420,7 +420,7 @@ struct ipmi_smi {
  	struct proc_dir_entry *proc_dir;
  	char                  proc_dir_name[10];
  
@@ -29424,7 +29329,7 @@ index 58c0e63..46c16bf 100644
  
  	/*
  	 * run_to_completion duplicate of smb_info, smi_info
-@@ -448,9 +448,9 @@ static DEFINE_MUTEX(smi_watchers_mutex);
+@@ -453,9 +453,9 @@ static DEFINE_MUTEX(smi_watchers_mutex);
  
  
  #define ipmi_inc_stat(intf, stat) \
@@ -29436,7 +29341,7 @@ index 58c0e63..46c16bf 100644
  
  static int is_lan_addr(struct ipmi_addr *addr)
  {
-@@ -2868,7 +2868,7 @@ int ipmi_register_smi(struct ipmi_smi_handlers *handlers,
+@@ -2884,7 +2884,7 @@ int ipmi_register_smi(struct ipmi_smi_handlers *handlers,
  	INIT_LIST_HEAD(&intf->cmd_rcvrs);
  	init_waitqueue_head(&intf->waitq);
  	for (i = 0; i < IPMI_NUM_STATS; i++)
@@ -29446,10 +29351,10 @@ index 58c0e63..46c16bf 100644
  	intf->proc_dir = NULL;
  
 diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c
-index 50fcf9c..91b5528 100644
+index 1e638ff..a869ef5 100644
 --- a/drivers/char/ipmi/ipmi_si_intf.c
 +++ b/drivers/char/ipmi/ipmi_si_intf.c
-@@ -277,7 +277,7 @@ struct smi_info {
+@@ -275,7 +275,7 @@ struct smi_info {
  	unsigned char slave_addr;
  
  	/* Counters and things for the proc filesystem. */
@@ -29458,7 +29363,7 @@ index 50fcf9c..91b5528 100644
  
  	struct task_struct *thread;
  
-@@ -286,9 +286,9 @@ struct smi_info {
+@@ -284,9 +284,9 @@ struct smi_info {
  };
  
  #define smi_inc_stat(smi, stat) \
@@ -29470,7 +29375,7 @@ index 50fcf9c..91b5528 100644
  
  #define SI_MAX_PARMS 4
  
-@@ -3230,7 +3230,7 @@ static int try_smi_init(struct smi_info *new_smi)
+@@ -3209,7 +3209,7 @@ static int try_smi_init(struct smi_info *new_smi)
  	atomic_set(&new_smi->req_events, 0);
  	new_smi->run_to_completion = 0;
  	for (i = 0; i < SI_NUM_STATS; i++)
@@ -29480,10 +29385,10 @@ index 50fcf9c..91b5528 100644
  	new_smi->interrupt_disabled = 1;
  	atomic_set(&new_smi->stop_operation, 0);
 diff --git a/drivers/char/mbcs.c b/drivers/char/mbcs.c
-index 1aeaaba..e018570 100644
+index 47ff7e4..0c7d340 100644
 --- a/drivers/char/mbcs.c
 +++ b/drivers/char/mbcs.c
-@@ -800,7 +800,7 @@ static int mbcs_remove(struct cx_dev *dev)
+@@ -799,7 +799,7 @@ static int mbcs_remove(struct cx_dev *dev)
  	return 0;
  }
  
@@ -29629,10 +29534,10 @@ index d6e9d08..4493e89 100644
  
  static int memory_open(struct inode *inode, struct file *filp)
 diff --git a/drivers/char/nvram.c b/drivers/char/nvram.c
-index da3cfee..a5a6606 100644
+index 9df78e2..01ba9ae 100644
 --- a/drivers/char/nvram.c
 +++ b/drivers/char/nvram.c
-@@ -248,7 +248,7 @@ static ssize_t nvram_read(struct file *file, char __user *buf,
+@@ -247,7 +247,7 @@ static ssize_t nvram_read(struct file *file, char __user *buf,
  
  	spin_unlock_irq(&rtc_lock);
  
@@ -29642,7 +29547,7 @@ index da3cfee..a5a6606 100644
  
  	*ppos = i;
 diff --git a/drivers/char/random.c b/drivers/char/random.c
-index 54ca8b2..4a092ed 100644
+index 4ec04a7..4a092ed 100644
 --- a/drivers/char/random.c
 +++ b/drivers/char/random.c
 @@ -261,8 +261,13 @@
@@ -29695,38 +29600,19 @@ index 54ca8b2..4a092ed 100644
  static int max_write_thresh = INPUT_POOL_WORDS * 32;
  static char sysctl_bootid[16];
  
-@@ -1260,10 +1272,15 @@ static int proc_do_uuid(ctl_table *table, int write,
- 	uuid = table->data;
- 	if (!uuid) {
- 		uuid = tmp_uuid;
--		uuid[8] = 0;
--	}
--	if (uuid[8] == 0)
- 		generate_random_uuid(uuid);
-+	} else {
-+		static DEFINE_SPINLOCK(bootid_spinlock);
-+
-+		spin_lock(&bootid_spinlock);
-+		if (!uuid[8])
-+			generate_random_uuid(uuid);
-+		spin_unlock(&bootid_spinlock);
-+	}
- 
- 	sprintf(buf, "%pU", uuid);
- 
 diff --git a/drivers/char/sonypi.c b/drivers/char/sonypi.c
-index 1ee8ce7..b778bef 100644
+index 45713f0..8286d21 100644
 --- a/drivers/char/sonypi.c
 +++ b/drivers/char/sonypi.c
-@@ -55,6 +55,7 @@
+@@ -54,6 +54,7 @@
+ 
  #include <asm/uaccess.h>
  #include <asm/io.h>
- #include <asm/system.h>
 +#include <asm/local.h>
  
  #include <linux/sonypi.h>
  
-@@ -491,7 +492,7 @@ static struct sonypi_device {
+@@ -490,7 +491,7 @@ static struct sonypi_device {
  	spinlock_t fifo_lock;
  	wait_queue_head_t fifo_proc_list;
  	struct fasync_struct *fifo_async;
@@ -29735,7 +29621,7 @@ index 1ee8ce7..b778bef 100644
  	int model;
  	struct input_dev *input_jog_dev;
  	struct input_dev *input_key_dev;
-@@ -898,7 +899,7 @@ static int sonypi_misc_fasync(int fd, struct file *filp, int on)
+@@ -897,7 +898,7 @@ static int sonypi_misc_fasync(int fd, struct file *filp, int on)
  static int sonypi_misc_release(struct inode *inode, struct file *file)
  {
  	mutex_lock(&sonypi_device.lock);
@@ -29744,7 +29630,7 @@ index 1ee8ce7..b778bef 100644
  	mutex_unlock(&sonypi_device.lock);
  	return 0;
  }
-@@ -907,9 +908,9 @@ static int sonypi_misc_open(struct inode *inode, struct file *file)
+@@ -906,9 +907,9 @@ static int sonypi_misc_open(struct inode *inode, struct file *file)
  {
  	mutex_lock(&sonypi_device.lock);
  	/* Flush input queue on first open */
@@ -29817,7 +29703,7 @@ index 0636520..169c1d0 100644
  	acpi_os_unmap_memory(virt, len);
  	return 0;
 diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c
-index 41fc148..0dba6dd 100644
+index cdf2f54..e55c197 100644
 --- a/drivers/char/virtio_console.c
 +++ b/drivers/char/virtio_console.c
 @@ -563,7 +563,7 @@ static ssize_t fill_readbuf(struct port *port, char *out_buf, size_t out_count,
@@ -29838,58 +29724,6 @@ index 41fc148..0dba6dd 100644
  }
  
  static ssize_t port_fops_write(struct file *filp, const char __user *ubuf,
-diff --git a/drivers/edac/amd64_edac.c b/drivers/edac/amd64_edac.c
-index c9eee6d..f9d5280 100644
---- a/drivers/edac/amd64_edac.c
-+++ b/drivers/edac/amd64_edac.c
-@@ -2685,7 +2685,7 @@ static void __devexit amd64_remove_one_instance(struct pci_dev *pdev)
-  * PCI core identifies what devices are on a system during boot, and then
-  * inquiry this table to see if this driver is for a given device found.
-  */
--static const struct pci_device_id amd64_pci_table[] __devinitdata = {
-+static const struct pci_device_id amd64_pci_table[] __devinitconst = {
- 	{
- 		.vendor		= PCI_VENDOR_ID_AMD,
- 		.device		= PCI_DEVICE_ID_AMD_K8_NB_MEMCTL,
-diff --git a/drivers/edac/amd76x_edac.c b/drivers/edac/amd76x_edac.c
-index e47e73b..348e0bd 100644
---- a/drivers/edac/amd76x_edac.c
-+++ b/drivers/edac/amd76x_edac.c
-@@ -321,7 +321,7 @@ static void __devexit amd76x_remove_one(struct pci_dev *pdev)
- 	edac_mc_free(mci);
- }
- 
--static const struct pci_device_id amd76x_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id amd76x_pci_tbl[] __devinitconst = {
- 	{
- 	 PCI_VEND_DEV(AMD, FE_GATE_700C), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
- 	 AMD762},
-diff --git a/drivers/edac/e752x_edac.c b/drivers/edac/e752x_edac.c
-index 1af531a..3a8ff27 100644
---- a/drivers/edac/e752x_edac.c
-+++ b/drivers/edac/e752x_edac.c
-@@ -1380,7 +1380,7 @@ static void __devexit e752x_remove_one(struct pci_dev *pdev)
- 	edac_mc_free(mci);
- }
- 
--static const struct pci_device_id e752x_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id e752x_pci_tbl[] __devinitconst = {
- 	{
- 	 PCI_VEND_DEV(INTEL, 7520_0), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
- 	 E7520},
-diff --git a/drivers/edac/e7xxx_edac.c b/drivers/edac/e7xxx_edac.c
-index 6ffb6d2..383d8d7 100644
---- a/drivers/edac/e7xxx_edac.c
-+++ b/drivers/edac/e7xxx_edac.c
-@@ -525,7 +525,7 @@ static void __devexit e7xxx_remove_one(struct pci_dev *pdev)
- 	edac_mc_free(mci);
- }
- 
--static const struct pci_device_id e7xxx_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id e7xxx_pci_tbl[] __devinitconst = {
- 	{
- 	 PCI_VEND_DEV(INTEL, 7205_0), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
- 	 E7205},
 diff --git a/drivers/edac/edac_pci_sysfs.c b/drivers/edac/edac_pci_sysfs.c
 index 97f5064..202b6e6 100644
 --- a/drivers/edac/edac_pci_sysfs.c
@@ -29977,206 +29811,24 @@ index 97f5064..202b6e6 100644
  			panic("EDAC: PCI Parity Error");
  	}
  }
-diff --git a/drivers/edac/i3000_edac.c b/drivers/edac/i3000_edac.c
-index c0510b3..6e2a954 100644
---- a/drivers/edac/i3000_edac.c
-+++ b/drivers/edac/i3000_edac.c
-@@ -470,7 +470,7 @@ static void __devexit i3000_remove_one(struct pci_dev *pdev)
- 	edac_mc_free(mci);
- }
- 
--static const struct pci_device_id i3000_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id i3000_pci_tbl[] __devinitconst = {
- 	{
- 	 PCI_VEND_DEV(INTEL, 3000_HB), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
- 	 I3000},
-diff --git a/drivers/edac/i3200_edac.c b/drivers/edac/i3200_edac.c
-index 73f55e200..5faaf59 100644
---- a/drivers/edac/i3200_edac.c
-+++ b/drivers/edac/i3200_edac.c
-@@ -445,7 +445,7 @@ static void __devexit i3200_remove_one(struct pci_dev *pdev)
- 	edac_mc_free(mci);
- }
- 
--static const struct pci_device_id i3200_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id i3200_pci_tbl[] __devinitconst = {
- 	{
- 		PCI_VEND_DEV(INTEL, 3200_HB), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
- 		I3200},
-diff --git a/drivers/edac/i5000_edac.c b/drivers/edac/i5000_edac.c
-index 4dc3ac2..67d05a6 100644
---- a/drivers/edac/i5000_edac.c
-+++ b/drivers/edac/i5000_edac.c
-@@ -1516,7 +1516,7 @@ static void __devexit i5000_remove_one(struct pci_dev *pdev)
-  *
-  *	The "E500P" device is the first device supported.
-  */
--static const struct pci_device_id i5000_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id i5000_pci_tbl[] __devinitconst = {
- 	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_I5000_DEV16),
- 	 .driver_data = I5000P},
- 
-diff --git a/drivers/edac/i5100_edac.c b/drivers/edac/i5100_edac.c
-index bcbdeec..9886d16 100644
---- a/drivers/edac/i5100_edac.c
-+++ b/drivers/edac/i5100_edac.c
-@@ -1051,7 +1051,7 @@ static void __devexit i5100_remove_one(struct pci_dev *pdev)
- 	edac_mc_free(mci);
- }
- 
--static const struct pci_device_id i5100_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id i5100_pci_tbl[] __devinitconst = {
- 	/* Device 16, Function 0, Channel 0 Memory Map, Error Flag/Mask, ... */
- 	{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5100_16) },
- 	{ 0, }
-diff --git a/drivers/edac/i5400_edac.c b/drivers/edac/i5400_edac.c
-index 74d6ec34..baff517 100644
---- a/drivers/edac/i5400_edac.c
-+++ b/drivers/edac/i5400_edac.c
-@@ -1383,7 +1383,7 @@ static void __devexit i5400_remove_one(struct pci_dev *pdev)
-  *
-  *	The "E500P" device is the first device supported.
-  */
--static const struct pci_device_id i5400_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id i5400_pci_tbl[] __devinitconst = {
- 	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5400_ERR)},
- 	{0,}			/* 0 terminated list. */
- };
-diff --git a/drivers/edac/i7300_edac.c b/drivers/edac/i7300_edac.c
-index 6104dba..e7ea8e1 100644
---- a/drivers/edac/i7300_edac.c
-+++ b/drivers/edac/i7300_edac.c
-@@ -1192,7 +1192,7 @@ static void __devexit i7300_remove_one(struct pci_dev *pdev)
-  *
-  * Has only 8086:360c PCI ID
-  */
--static const struct pci_device_id i7300_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id i7300_pci_tbl[] __devinitconst = {
- 	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_I7300_MCH_ERR)},
- 	{0,}			/* 0 terminated list. */
- };
-diff --git a/drivers/edac/i7core_edac.c b/drivers/edac/i7core_edac.c
-index 8568d9b..42b2fa8 100644
---- a/drivers/edac/i7core_edac.c
-+++ b/drivers/edac/i7core_edac.c
-@@ -391,7 +391,7 @@ static const struct pci_id_table pci_dev_table[] = {
- /*
-  *	pci_device_id	table for which devices we are looking for
-  */
--static const struct pci_device_id i7core_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id i7core_pci_tbl[] __devinitconst = {
- 	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_X58_HUB_MGMT)},
- 	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNNFIELD_QPI_LINK0)},
- 	{0,}			/* 0 terminated list. */
-diff --git a/drivers/edac/i82443bxgx_edac.c b/drivers/edac/i82443bxgx_edac.c
-index 4329d39..f3022ef 100644
---- a/drivers/edac/i82443bxgx_edac.c
-+++ b/drivers/edac/i82443bxgx_edac.c
-@@ -380,7 +380,7 @@ static void __devexit i82443bxgx_edacmc_remove_one(struct pci_dev *pdev)
- 
- EXPORT_SYMBOL_GPL(i82443bxgx_edacmc_remove_one);
- 
--static const struct pci_device_id i82443bxgx_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id i82443bxgx_pci_tbl[] __devinitconst = {
- 	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82443BX_0)},
- 	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82443BX_2)},
- 	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82443GX_0)},
-diff --git a/drivers/edac/i82860_edac.c b/drivers/edac/i82860_edac.c
-index 931a057..fd28340 100644
---- a/drivers/edac/i82860_edac.c
-+++ b/drivers/edac/i82860_edac.c
-@@ -270,7 +270,7 @@ static void __devexit i82860_remove_one(struct pci_dev *pdev)
- 	edac_mc_free(mci);
- }
- 
--static const struct pci_device_id i82860_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id i82860_pci_tbl[] __devinitconst = {
- 	{
- 	 PCI_VEND_DEV(INTEL, 82860_0), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
- 	 I82860},
-diff --git a/drivers/edac/i82875p_edac.c b/drivers/edac/i82875p_edac.c
-index 33864c6..01edc61 100644
---- a/drivers/edac/i82875p_edac.c
-+++ b/drivers/edac/i82875p_edac.c
-@@ -511,7 +511,7 @@ static void __devexit i82875p_remove_one(struct pci_dev *pdev)
- 	edac_mc_free(mci);
- }
- 
--static const struct pci_device_id i82875p_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id i82875p_pci_tbl[] __devinitconst = {
- 	{
- 	 PCI_VEND_DEV(INTEL, 82875_0), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
- 	 I82875P},
-diff --git a/drivers/edac/i82975x_edac.c b/drivers/edac/i82975x_edac.c
-index 4184e01..dcb2cd3 100644
---- a/drivers/edac/i82975x_edac.c
-+++ b/drivers/edac/i82975x_edac.c
-@@ -612,7 +612,7 @@ static void __devexit i82975x_remove_one(struct pci_dev *pdev)
- 	edac_mc_free(mci);
- }
- 
--static const struct pci_device_id i82975x_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id i82975x_pci_tbl[] __devinitconst = {
- 	{
- 		PCI_VEND_DEV(INTEL, 82975_0), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
- 		I82975X
 diff --git a/drivers/edac/mce_amd.h b/drivers/edac/mce_amd.h
-index 0106747..0b40417 100644
+index c6074c5..88a9e2e 100644
 --- a/drivers/edac/mce_amd.h
 +++ b/drivers/edac/mce_amd.h
-@@ -83,7 +83,7 @@ struct amd_decoder_ops {
+@@ -82,7 +82,7 @@ extern const char * const ii_msgs[];
+ struct amd_decoder_ops {
  	bool (*dc_mce)(u16, u8);
  	bool (*ic_mce)(u16, u8);
- 	bool (*nb_mce)(u16, u8);
 -};
 +} __no_const;
  
  void amd_report_gart_errors(bool);
  void amd_register_ecc_decoder(void (*f)(int, struct mce *));
-diff --git a/drivers/edac/r82600_edac.c b/drivers/edac/r82600_edac.c
-index e294e1b..a41b05b 100644
---- a/drivers/edac/r82600_edac.c
-+++ b/drivers/edac/r82600_edac.c
-@@ -373,7 +373,7 @@ static void __devexit r82600_remove_one(struct pci_dev *pdev)
- 	edac_mc_free(mci);
- }
- 
--static const struct pci_device_id r82600_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id r82600_pci_tbl[] __devinitconst = {
- 	{
- 	 PCI_DEVICE(PCI_VENDOR_ID_RADISYS, R82600_BRIDGE_ID)
- 	 },
-diff --git a/drivers/edac/sb_edac.c b/drivers/edac/sb_edac.c
-index 1dc118d..8c68af9 100644
---- a/drivers/edac/sb_edac.c
-+++ b/drivers/edac/sb_edac.c
-@@ -367,7 +367,7 @@ static const struct pci_id_table pci_dev_descr_sbridge_table[] = {
- /*
-  *	pci_device_id	table for which devices we are looking for
-  */
--static const struct pci_device_id sbridge_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id sbridge_pci_tbl[] __devinitconst = {
- 	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SBRIDGE_IMC_TA)},
- 	{0,}			/* 0 terminated list. */
- };
-diff --git a/drivers/edac/x38_edac.c b/drivers/edac/x38_edac.c
-index b6f47de..c5acf3a 100644
---- a/drivers/edac/x38_edac.c
-+++ b/drivers/edac/x38_edac.c
-@@ -440,7 +440,7 @@ static void __devexit x38_remove_one(struct pci_dev *pdev)
- 	edac_mc_free(mci);
- }
- 
--static const struct pci_device_id x38_pci_tbl[] __devinitdata = {
-+static const struct pci_device_id x38_pci_tbl[] __devinitconst = {
- 	{
- 	 PCI_VEND_DEV(INTEL, X38_HB), PCI_ANY_ID, PCI_ANY_ID, 0, 0,
- 	 X38},
 diff --git a/drivers/firewire/core-card.c b/drivers/firewire/core-card.c
-index 85661b0..c784559a 100644
+index cc595eb..4ec702a 100644
 --- a/drivers/firewire/core-card.c
 +++ b/drivers/firewire/core-card.c
-@@ -657,7 +657,7 @@ void fw_card_release(struct kref *kref)
+@@ -679,7 +679,7 @@ void fw_card_release(struct kref *kref)
  
  void fw_core_remove_card(struct fw_card *card)
  {
@@ -30186,10 +29838,10 @@ index 85661b0..c784559a 100644
  	card->driver->update_phy_reg(card, 4,
  				     PHY_LINK_ACTIVE | PHY_CONTENDER, 0);
 diff --git a/drivers/firewire/core-cdev.c b/drivers/firewire/core-cdev.c
-index 4799393..37bd3ab 100644
+index 2e6b245..c3857d9 100644
 --- a/drivers/firewire/core-cdev.c
 +++ b/drivers/firewire/core-cdev.c
-@@ -1331,8 +1331,7 @@ static int init_iso_resource(struct client *client,
+@@ -1341,8 +1341,7 @@ static int init_iso_resource(struct client *client,
  	int ret;
  
  	if ((request->channels == 0 && request->bandwidth == 0) ||
@@ -30200,7 +29852,7 @@ index 4799393..37bd3ab 100644
  
  	r  = kmalloc(sizeof(*r), GFP_KERNEL);
 diff --git a/drivers/firewire/core-transaction.c b/drivers/firewire/core-transaction.c
-index 855ab3f..11f4bbd 100644
+index dea2dcc..a4fb978 100644
 --- a/drivers/firewire/core-transaction.c
 +++ b/drivers/firewire/core-transaction.c
 @@ -37,6 +37,7 @@
@@ -30212,10 +29864,10 @@ index 855ab3f..11f4bbd 100644
  #include <asm/byteorder.h>
  
 diff --git a/drivers/firewire/core.h b/drivers/firewire/core.h
-index b45be57..5fad18b 100644
+index 9047f55..e47c7ff 100644
 --- a/drivers/firewire/core.h
 +++ b/drivers/firewire/core.h
-@@ -101,6 +101,7 @@ struct fw_card_driver {
+@@ -110,6 +110,7 @@ struct fw_card_driver {
  
  	int (*stop_iso)(struct fw_iso_context *ctx);
  };
@@ -30262,10 +29914,10 @@ index 82d5c20..44a7177 100644
  	return -EINVAL;
  }
 diff --git a/drivers/gpu/drm/drm_crtc_helper.c b/drivers/gpu/drm/drm_crtc_helper.c
-index 84a4a80..ce0306e 100644
+index 8111889..367b253 100644
 --- a/drivers/gpu/drm/drm_crtc_helper.c
 +++ b/drivers/gpu/drm/drm_crtc_helper.c
-@@ -280,7 +280,7 @@ static bool drm_encoder_crtc_ok(struct drm_encoder *encoder,
+@@ -286,7 +286,7 @@ static bool drm_encoder_crtc_ok(struct drm_encoder *encoder,
  	struct drm_crtc *tmp;
  	int crtc_mask = 1;
  
@@ -30275,10 +29927,10 @@ index 84a4a80..ce0306e 100644
  	dev = crtc->dev;
  
 diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c
-index ebf7d3f..d64c436 100644
+index 6116e3b..c29dd16 100644
 --- a/drivers/gpu/drm/drm_drv.c
 +++ b/drivers/gpu/drm/drm_drv.c
-@@ -312,7 +312,7 @@ module_exit(drm_core_exit);
+@@ -316,7 +316,7 @@ module_exit(drm_core_exit);
  /**
   * Copy and IOCTL return string to user space
   */
@@ -30287,9 +29939,9 @@ index ebf7d3f..d64c436 100644
  {
  	int len;
  
-@@ -391,7 +391,7 @@ long drm_ioctl(struct file *filp,
+@@ -399,7 +399,7 @@ long drm_ioctl(struct file *filp,
+ 		return -ENODEV;
  
- 	dev = file_priv->minor->dev;
  	atomic_inc(&dev->ioctl_count);
 -	atomic_inc(&dev->counts[_DRM_STAT_IOCTLS]);
 +	atomic_inc_unchecked(&dev->counts[_DRM_STAT_IOCTLS]);
@@ -30297,7 +29949,7 @@ index ebf7d3f..d64c436 100644
  
  	DRM_DEBUG("pid=%d, cmd=0x%02x, nr=0x%02x, dev 0x%lx, auth=%d\n",
 diff --git a/drivers/gpu/drm/drm_fops.c b/drivers/gpu/drm/drm_fops.c
-index 6263b01..7987f55 100644
+index 123de28..43a0897 100644
 --- a/drivers/gpu/drm/drm_fops.c
 +++ b/drivers/gpu/drm/drm_fops.c
 @@ -71,7 +71,7 @@ static int drm_setup(struct drm_device * dev)
@@ -30309,7 +29961,7 @@ index 6263b01..7987f55 100644
  
  	dev->sigdata.lock = NULL;
  
-@@ -135,8 +135,8 @@ int drm_open(struct inode *inode, struct file *filp)
+@@ -138,8 +138,8 @@ int drm_open(struct inode *inode, struct file *filp)
  
  	retcode = drm_open_helper(inode, filp, dev);
  	if (!retcode) {
@@ -30320,7 +29972,7 @@ index 6263b01..7987f55 100644
  			retcode = drm_setup(dev);
  	}
  	if (!retcode) {
-@@ -473,7 +473,7 @@ int drm_release(struct inode *inode, struct file *filp)
+@@ -482,7 +482,7 @@ int drm_release(struct inode *inode, struct file *filp)
  
  	mutex_lock(&drm_global_mutex);
  
@@ -30329,7 +29981,7 @@ index 6263b01..7987f55 100644
  
  	if (dev->driver->preclose)
  		dev->driver->preclose(dev, file_priv);
-@@ -482,10 +482,10 @@ int drm_release(struct inode *inode, struct file *filp)
+@@ -491,10 +491,10 @@ int drm_release(struct inode *inode, struct file *filp)
  	 * Begin inline drm_release
  	 */
  
@@ -30342,7 +29994,7 @@ index 6263b01..7987f55 100644
  
  	/* Release any auth tokens that might point to this file_priv,
  	   (do that under the drm_global_mutex) */
-@@ -571,8 +571,8 @@ int drm_release(struct inode *inode, struct file *filp)
+@@ -584,8 +584,8 @@ int drm_release(struct inode *inode, struct file *filp)
  	 * End inline drm_release
  	 */
  
@@ -30481,10 +30133,10 @@ index 637fcc3..e890b33 100644
  	if (__put_user(count, &request->count)
  	    || __put_user(list, &request->list))
 diff --git a/drivers/gpu/drm/drm_ioctl.c b/drivers/gpu/drm/drm_ioctl.c
-index 956fd38..e52167a 100644
+index cf85155..f2665cb 100644
 --- a/drivers/gpu/drm/drm_ioctl.c
 +++ b/drivers/gpu/drm/drm_ioctl.c
-@@ -251,7 +251,7 @@ int drm_getstats(struct drm_device *dev, void *data,
+@@ -252,7 +252,7 @@ int drm_getstats(struct drm_device *dev, void *data,
  			stats->data[i].value =
  			    (file_priv->master->lock.hw_lock ? file_priv->master->lock.hw_lock->lock : 0);
  		else
@@ -30515,11 +30167,24 @@ index c79c713..2048588 100644
  
  	if (drm_lock_free(&master->lock, lock->context)) {
  		/* FIXME: Should really bail out here. */
+diff --git a/drivers/gpu/drm/drm_stub.c b/drivers/gpu/drm/drm_stub.c
+index aa454f8..6d38580 100644
+--- a/drivers/gpu/drm/drm_stub.c
++++ b/drivers/gpu/drm/drm_stub.c
+@@ -512,7 +512,7 @@ void drm_unplug_dev(struct drm_device *dev)
+ 
+ 	drm_device_set_unplugged(dev);
+ 
+-	if (dev->open_count == 0) {
++	if (local_read(&dev->open_count) == 0) {
+ 		drm_put_dev(dev);
+ 	}
+ 	mutex_unlock(&drm_global_mutex);
 diff --git a/drivers/gpu/drm/i810/i810_dma.c b/drivers/gpu/drm/i810/i810_dma.c
-index 7f4b4e1..bf4def2 100644
+index f920fb5..001c52d 100644
 --- a/drivers/gpu/drm/i810/i810_dma.c
 +++ b/drivers/gpu/drm/i810/i810_dma.c
-@@ -948,8 +948,8 @@ static int i810_dma_vertex(struct drm_device *dev, void *data,
+@@ -945,8 +945,8 @@ static int i810_dma_vertex(struct drm_device *dev, void *data,
  				 dma->buflist[vertex->idx],
  				 vertex->discard, vertex->used);
  
@@ -30530,7 +30195,7 @@ index 7f4b4e1..bf4def2 100644
  	sarea_priv->last_enqueue = dev_priv->counter - 1;
  	sarea_priv->last_dispatch = (int)hw_status[5];
  
-@@ -1109,8 +1109,8 @@ static int i810_dma_mc(struct drm_device *dev, void *data,
+@@ -1106,8 +1106,8 @@ static int i810_dma_mc(struct drm_device *dev, void *data,
  	i810_dma_dispatch_mc(dev, dma->buflist[mc->idx], mc->used,
  			     mc->last_render);
  
@@ -30557,10 +30222,10 @@ index c9339f4..f5e1b9d 100644
  	int front_offset;
  } drm_i810_private_t;
 diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c
-index deaa657..e0fd296 100644
+index e6162a1..b2ff486 100644
 --- a/drivers/gpu/drm/i915/i915_debugfs.c
 +++ b/drivers/gpu/drm/i915/i915_debugfs.c
-@@ -499,7 +499,7 @@ static int i915_interrupt_info(struct seq_file *m, void *data)
+@@ -500,7 +500,7 @@ static int i915_interrupt_info(struct seq_file *m, void *data)
  			   I915_READ(GTIMR));
  	}
  	seq_printf(m, "Interrupts received: %d\n",
@@ -30569,7 +30234,7 @@ index deaa657..e0fd296 100644
  	for (i = 0; i < I915_NUM_RINGS; i++) {
  		if (IS_GEN6(dev) || IS_GEN7(dev)) {
  			seq_printf(m, "Graphics Interrupt mask (%s):	%08x\n",
-@@ -1321,7 +1321,7 @@ static int i915_opregion(struct seq_file *m, void *unused)
+@@ -1313,7 +1313,7 @@ static int i915_opregion(struct seq_file *m, void *unused)
  		return ret;
  
  	if (opregion->header)
@@ -30579,10 +30244,10 @@ index deaa657..e0fd296 100644
  	mutex_unlock(&dev->struct_mutex);
  
 diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c
-index ddfe3d9..f6e6b21 100644
+index ba60f3c..e2dff7f 100644
 --- a/drivers/gpu/drm/i915/i915_dma.c
 +++ b/drivers/gpu/drm/i915/i915_dma.c
-@@ -1175,7 +1175,7 @@ static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
+@@ -1178,7 +1178,7 @@ static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
  	bool can_switch;
  
  	spin_lock(&dev->count_lock);
@@ -30592,10 +30257,10 @@ index ddfe3d9..f6e6b21 100644
  	return can_switch;
  }
 diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
-index 9689ca3..294f9c1 100644
+index 5fabc6c..0b08aa1 100644
 --- a/drivers/gpu/drm/i915/i915_drv.h
 +++ b/drivers/gpu/drm/i915/i915_drv.h
-@@ -231,7 +231,7 @@ struct drm_i915_display_funcs {
+@@ -240,7 +240,7 @@ struct drm_i915_display_funcs {
  	/* render clock increase/decrease */
  	/* display clock increase/decrease */
  	/* pll clock increase/decrease */
@@ -30604,7 +30269,7 @@ index 9689ca3..294f9c1 100644
  
  struct intel_device_info {
  	u8 gen;
-@@ -320,7 +320,7 @@ typedef struct drm_i915_private {
+@@ -350,7 +350,7 @@ typedef struct drm_i915_private {
  	int current_page;
  	int page_flipping;
  
@@ -30613,7 +30278,7 @@ index 9689ca3..294f9c1 100644
  
  	/* protects the irq masks */
  	spinlock_t irq_lock;
-@@ -896,7 +896,7 @@ struct drm_i915_gem_object {
+@@ -937,7 +937,7 @@ struct drm_i915_gem_object {
  	 * will be page flipped away on the next vblank.  When it
  	 * reaches 0, dev_priv->pending_flip_queue will be woken up.
  	 */
@@ -30622,7 +30287,7 @@ index 9689ca3..294f9c1 100644
  };
  
  #define to_intel_bo(x) container_of(x, struct drm_i915_gem_object, base)
-@@ -1276,7 +1276,7 @@ extern int intel_setup_gmbus(struct drm_device *dev);
+@@ -1359,7 +1359,7 @@ extern int intel_setup_gmbus(struct drm_device *dev);
  extern void intel_teardown_gmbus(struct drm_device *dev);
  extern void intel_gmbus_set_speed(struct i2c_adapter *adapter, int speed);
  extern void intel_gmbus_force_bit(struct i2c_adapter *adapter, bool force_bit);
@@ -30632,7 +30297,7 @@ index 9689ca3..294f9c1 100644
  	return container_of(adapter, struct intel_gmbus, adapter)->force_bit;
  }
 diff --git a/drivers/gpu/drm/i915/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/i915_gem_execbuffer.c
-index e159e33..cdcc663 100644
+index de43194..a14c4cc 100644
 --- a/drivers/gpu/drm/i915/i915_gem_execbuffer.c
 +++ b/drivers/gpu/drm/i915/i915_gem_execbuffer.c
 @@ -189,7 +189,7 @@ i915_gem_object_set_to_gpu_domain(struct drm_i915_gem_object *obj,
@@ -30644,7 +30309,7 @@ index e159e33..cdcc663 100644
  
  	/* The actual obj->write_domain will be updated with
  	 * pending_write_domain after we emit the accumulated flush for all
-@@ -882,9 +882,9 @@ i915_gem_check_execbuffer(struct drm_i915_gem_execbuffer2 *exec)
+@@ -933,9 +933,9 @@ i915_gem_check_execbuffer(struct drm_i915_gem_execbuffer2 *exec)
  
  static int
  validate_exec_list(struct drm_i915_gem_exec_object2 *exec,
@@ -30657,7 +30322,7 @@ index e159e33..cdcc663 100644
  	for (i = 0; i < count; i++) {
  		char __user *ptr = (char __user *)(uintptr_t)exec[i].relocs_ptr;
 diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
-index 307c5e6..a1e4216 100644
+index f57e5cf..c82f79d 100644
 --- a/drivers/gpu/drm/i915/i915_irq.c
 +++ b/drivers/gpu/drm/i915/i915_irq.c
 @@ -472,7 +472,7 @@ static irqreturn_t ivybridge_irq_handler(DRM_IRQ_ARGS)
@@ -30678,7 +30343,7 @@ index 307c5e6..a1e4216 100644
  
  	if (IS_GEN6(dev))
  		bsd_usr_interrupt = GT_GEN6_BSD_USER_INTERRUPT;
-@@ -1228,7 +1228,7 @@ static irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
+@@ -1292,7 +1292,7 @@ static irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS)
  	int ret = IRQ_NONE, pipe;
  	bool blc_event = false;
  
@@ -30687,7 +30352,7 @@ index 307c5e6..a1e4216 100644
  
  	iir = I915_READ(IIR);
  
-@@ -1740,7 +1740,7 @@ static void ironlake_irq_preinstall(struct drm_device *dev)
+@@ -1803,7 +1803,7 @@ static void ironlake_irq_preinstall(struct drm_device *dev)
  {
  	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
  
@@ -30696,7 +30361,7 @@ index 307c5e6..a1e4216 100644
  
  	INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
  	INIT_WORK(&dev_priv->error_work, i915_error_work_func);
-@@ -1929,7 +1929,7 @@ static void i915_driver_irq_preinstall(struct drm_device * dev)
+@@ -1980,7 +1980,7 @@ static void i915_driver_irq_preinstall(struct drm_device * dev)
  	drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
  	int pipe;
  
@@ -30706,19 +30371,19 @@ index 307c5e6..a1e4216 100644
  	INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
  	INIT_WORK(&dev_priv->error_work, i915_error_work_func);
 diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
-index 9ab9b16..e5b1b8d 100644
+index 79a7de1..56f2f3e 100644
 --- a/drivers/gpu/drm/i915/intel_display.c
 +++ b/drivers/gpu/drm/i915/intel_display.c
-@@ -2238,7 +2238,7 @@ intel_pipe_set_base(struct drm_crtc *crtc, int x, int y,
+@@ -2254,7 +2254,7 @@ intel_finish_fb(struct drm_framebuffer *old_fb)
  
- 		wait_event(dev_priv->pending_flip_queue,
- 			   atomic_read(&dev_priv->mm.wedged) ||
--			   atomic_read(&obj->pending_flip) == 0);
-+			   atomic_read_unchecked(&obj->pending_flip) == 0);
+ 	wait_event(dev_priv->pending_flip_queue,
+ 		   atomic_read(&dev_priv->mm.wedged) ||
+-		   atomic_read(&obj->pending_flip) == 0);
++		   atomic_read_unchecked(&obj->pending_flip) == 0);
  
- 		/* Big Hammer, we also need to ensure that any pending
- 		 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
-@@ -2859,7 +2859,7 @@ static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
+ 	/* Big Hammer, we also need to ensure that any pending
+ 	 * MI_WAIT_FOR_EVENT inside a user batch buffer on the
+@@ -2919,7 +2919,7 @@ static void intel_crtc_wait_for_pending_flips(struct drm_crtc *crtc)
  	obj = to_intel_framebuffer(crtc->fb)->obj;
  	dev_priv = crtc->dev->dev_private;
  	wait_event(dev_priv->pending_flip_queue,
@@ -30727,7 +30392,7 @@ index 9ab9b16..e5b1b8d 100644
  }
  
  static bool intel_crtc_driving_pch(struct drm_crtc *crtc)
-@@ -7171,7 +7171,7 @@ static void do_intel_finish_page_flip(struct drm_device *dev,
+@@ -7286,7 +7286,7 @@ static void do_intel_finish_page_flip(struct drm_device *dev,
  
  	atomic_clear_mask(1 << intel_crtc->plane,
  			  &obj->pending_flip.counter);
@@ -30736,22 +30401,7 @@ index 9ab9b16..e5b1b8d 100644
  		wake_up(&dev_priv->pending_flip_queue);
  
  	schedule_work(&work->work);
-@@ -7354,7 +7354,13 @@ static int intel_gen6_queue_flip(struct drm_device *dev,
- 	OUT_RING(fb->pitches[0] | obj->tiling_mode);
- 	OUT_RING(obj->gtt_offset);
- 
--	pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
-+	/* Contrary to the suggestions in the documentation,
-+	 * "Enable Panel Fitter" does not seem to be required when page
-+	 * flipping with a non-native mode, and worse causes a normal
-+	 * modeset to fail.
-+	 * pf = I915_READ(PF_CTL(intel_crtc->pipe)) & PF_ENABLE;
-+	 */
-+	pf = 0;
- 	pipesrc = I915_READ(PIPESRC(intel_crtc->pipe)) & 0x0fff0fff;
- 	OUT_RING(pf | pipesrc);
- 	ADVANCE_LP_RING();
-@@ -7461,7 +7467,7 @@ static int intel_crtc_page_flip(struct drm_crtc *crtc,
+@@ -7582,7 +7582,7 @@ static int intel_crtc_page_flip(struct drm_crtc *crtc,
  	/* Block clients from rendering to the new back buffer until
  	 * the flip occurs and the object is no longer visible.
  	 */
@@ -30760,7 +30410,7 @@ index 9ab9b16..e5b1b8d 100644
  
  	ret = dev_priv->display.queue_flip(dev, crtc, fb, obj);
  	if (ret)
-@@ -7475,7 +7481,7 @@ static int intel_crtc_page_flip(struct drm_crtc *crtc,
+@@ -7596,7 +7596,7 @@ static int intel_crtc_page_flip(struct drm_crtc *crtc,
  	return 0;
  
  cleanup_pending:
@@ -30826,19 +30476,10 @@ index 2581202..f230a8d9 100644
  
  	*sequence = cur_fence;
 diff --git a/drivers/gpu/drm/nouveau/nouveau_bios.c b/drivers/gpu/drm/nouveau/nouveau_bios.c
-index e5cbead..6c354a3 100644
+index 0be4a81..7464804 100644
 --- a/drivers/gpu/drm/nouveau/nouveau_bios.c
 +++ b/drivers/gpu/drm/nouveau/nouveau_bios.c
-@@ -199,7 +199,7 @@ struct methods {
- 	const char desc[8];
- 	void (*loadbios)(struct drm_device *, uint8_t *);
- 	const bool rw;
--};
-+} __do_const;
- 
- static struct methods shadow_methods[] = {
- 	{ "PRAMIN", load_vbios_pramin, true },
-@@ -5290,7 +5290,7 @@ parse_bit_U_tbl_entry(struct drm_device *dev, struct nvbios *bios,
+@@ -5329,7 +5329,7 @@ parse_bit_U_tbl_entry(struct drm_device *dev, struct nvbios *bios,
  struct bit_table {
  	const char id;
  	int (* const parse_fn)(struct drm_device *, struct nvbios *, struct bit_entry *);
@@ -30848,10 +30489,10 @@ index e5cbead..6c354a3 100644
  #define BIT_TABLE(id, funcid) ((struct bit_table){ id, parse_bit_##funcid##_tbl_entry })
  
 diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h
-index b827098..c31a797 100644
+index 3aef353..0ad1322 100644
 --- a/drivers/gpu/drm/nouveau/nouveau_drv.h
 +++ b/drivers/gpu/drm/nouveau/nouveau_drv.h
-@@ -242,7 +242,7 @@ struct nouveau_channel {
+@@ -240,7 +240,7 @@ struct nouveau_channel {
  		struct list_head pending;
  		uint32_t sequence;
  		uint32_t sequence_ack;
@@ -30860,7 +30501,7 @@ index b827098..c31a797 100644
  		struct nouveau_vma vma;
  	} fence;
  
-@@ -323,7 +323,7 @@ struct nouveau_exec_engine {
+@@ -321,7 +321,7 @@ struct nouveau_exec_engine {
  			   u32 handle, u16 class);
  	void (*set_tile_region)(struct drm_device *dev, int i);
  	void (*tlb_flush)(struct drm_device *, int engine);
@@ -30869,7 +30510,7 @@ index b827098..c31a797 100644
  
  struct nouveau_instmem_engine {
  	void	*priv;
-@@ -345,13 +345,13 @@ struct nouveau_instmem_engine {
+@@ -343,13 +343,13 @@ struct nouveau_instmem_engine {
  struct nouveau_mc_engine {
  	int  (*init)(struct drm_device *dev);
  	void (*takedown)(struct drm_device *dev);
@@ -30885,7 +30526,7 @@ index b827098..c31a797 100644
  
  struct nouveau_fb_engine {
  	int num_tiles;
-@@ -566,7 +566,7 @@ struct nouveau_vram_engine {
+@@ -590,7 +590,7 @@ struct nouveau_vram_engine {
  	void (*put)(struct drm_device *, struct nouveau_mem **);
  
  	bool (*flags_valid)(struct drm_device *, u32 tile_flags);
@@ -30894,7 +30535,7 @@ index b827098..c31a797 100644
  
  struct nouveau_engine {
  	struct nouveau_instmem_engine instmem;
-@@ -714,7 +714,7 @@ struct drm_nouveau_private {
+@@ -739,7 +739,7 @@ struct drm_nouveau_private {
  		struct drm_global_reference mem_global_ref;
  		struct ttm_bo_global_ref bo_global_ref;
  		struct ttm_bo_device bdev;
@@ -30904,7 +30545,7 @@ index b827098..c31a797 100644
  
  	struct {
 diff --git a/drivers/gpu/drm/nouveau/nouveau_fence.c b/drivers/gpu/drm/nouveau/nouveau_fence.c
-index 2f6daae..c9d7b9e 100644
+index c1dc20f..4df673c 100644
 --- a/drivers/gpu/drm/nouveau/nouveau_fence.c
 +++ b/drivers/gpu/drm/nouveau/nouveau_fence.c
 @@ -85,7 +85,7 @@ nouveau_fence_update(struct nouveau_channel *chan)
@@ -30916,7 +30557,7 @@ index 2f6daae..c9d7b9e 100644
  
  		if (chan->fence.sequence_ack == sequence)
  			goto out;
-@@ -539,7 +539,7 @@ nouveau_fence_channel_init(struct nouveau_channel *chan)
+@@ -538,7 +538,7 @@ nouveau_fence_channel_init(struct nouveau_channel *chan)
  			return ret;
  	}
  
@@ -30926,7 +30567,7 @@ index 2f6daae..c9d7b9e 100644
  }
  
 diff --git a/drivers/gpu/drm/nouveau/nouveau_gem.c b/drivers/gpu/drm/nouveau/nouveau_gem.c
-index 7ce3fde..cb3ea04 100644
+index ed52a6f..484acdc 100644
 --- a/drivers/gpu/drm/nouveau/nouveau_gem.c
 +++ b/drivers/gpu/drm/nouveau/nouveau_gem.c
 @@ -314,7 +314,7 @@ validate_init(struct nouveau_channel *chan, struct drm_file *file_priv,
@@ -30939,10 +30580,10 @@ index 7ce3fde..cb3ea04 100644
  	if (++trycnt > 100000) {
  		NV_ERROR(dev, "%s failed and gave up.\n", __func__);
 diff --git a/drivers/gpu/drm/nouveau/nouveau_state.c b/drivers/gpu/drm/nouveau/nouveau_state.c
-index f80c5e0..936baa7 100644
+index c2a8511..4b996f9 100644
 --- a/drivers/gpu/drm/nouveau/nouveau_state.c
 +++ b/drivers/gpu/drm/nouveau/nouveau_state.c
-@@ -543,7 +543,7 @@ static bool nouveau_switcheroo_can_switch(struct pci_dev *pdev)
+@@ -588,7 +588,7 @@ static bool nouveau_switcheroo_can_switch(struct pci_dev *pdev)
  	bool can_switch;
  
  	spin_lock(&dev->count_lock);
@@ -30964,6 +30605,32 @@ index dbdea8e..cd6eeeb 100644
  	return 0;
  }
  
+diff --git a/drivers/gpu/drm/nouveau/nv50_sor.c b/drivers/gpu/drm/nouveau/nv50_sor.c
+index 2746402..c8dc4a4 100644
+--- a/drivers/gpu/drm/nouveau/nv50_sor.c
++++ b/drivers/gpu/drm/nouveau/nv50_sor.c
+@@ -304,7 +304,7 @@ nv50_sor_dpms(struct drm_encoder *encoder, int mode)
+ 	}
+ 
+ 	if (nv_encoder->dcb->type == OUTPUT_DP) {
+-		struct dp_train_func func = {
++		static struct dp_train_func func = {
+ 			.link_set = nv50_sor_dp_link_set,
+ 			.train_set = nv50_sor_dp_train_set,
+ 			.train_adj = nv50_sor_dp_train_adj
+diff --git a/drivers/gpu/drm/nouveau/nvd0_display.c b/drivers/gpu/drm/nouveau/nvd0_display.c
+index 0247250..d2f6aaf 100644
+--- a/drivers/gpu/drm/nouveau/nvd0_display.c
++++ b/drivers/gpu/drm/nouveau/nvd0_display.c
+@@ -1366,7 +1366,7 @@ nvd0_sor_dpms(struct drm_encoder *encoder, int mode)
+ 	nv_wait(dev, 0x61c030 + (or * 0x0800), 0x10000000, 0x00000000);
+ 
+ 	if (nv_encoder->dcb->type == OUTPUT_DP) {
+-		struct dp_train_func func = {
++		static struct dp_train_func func = {
+ 			.link_set = nvd0_sor_dp_link_set,
+ 			.train_set = nvd0_sor_dp_train_set,
+ 			.train_adj = nvd0_sor_dp_train_adj
 diff --git a/drivers/gpu/drm/r128/r128_cce.c b/drivers/gpu/drm/r128/r128_cce.c
 index bcac90b..53bfc76 100644
 --- a/drivers/gpu/drm/r128/r128_cce.c
@@ -31059,10 +30726,10 @@ index 5a82b6b..9e69c73 100644
  	if (regcomp
  	    (&mask_rex, "(0x[0-9a-fA-F]*) *([_a-zA-Z0-9]*)", REG_EXTENDED)) {
 diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h
-index 1668ec1..30ebdab 100644
+index 138b952..d74f9cb 100644
 --- a/drivers/gpu/drm/radeon/radeon.h
 +++ b/drivers/gpu/drm/radeon/radeon.h
-@@ -250,7 +250,7 @@ struct radeon_fence_driver {
+@@ -253,7 +253,7 @@ struct radeon_fence_driver {
  	uint32_t			scratch_reg;
  	uint64_t			gpu_addr;
  	volatile uint32_t		*cpu_addr;
@@ -31071,7 +30738,7 @@ index 1668ec1..30ebdab 100644
  	uint32_t			last_seq;
  	unsigned long			last_jiffies;
  	unsigned long			last_timeout;
-@@ -752,7 +752,7 @@ struct r600_blit_cp_primitives {
+@@ -753,7 +753,7 @@ struct r600_blit_cp_primitives {
  			     int x2, int y2);
  	void (*draw_auto)(struct radeon_device *rdev);
  	void (*set_default_state)(struct radeon_device *rdev);
@@ -31080,20 +30747,20 @@ index 1668ec1..30ebdab 100644
  
  struct r600_blit {
  	struct mutex		mutex;
-@@ -1201,7 +1201,7 @@ struct radeon_asic {
- 	void (*pre_page_flip)(struct radeon_device *rdev, int crtc);
- 	u32 (*page_flip)(struct radeon_device *rdev, int crtc, u64 crtc_base);
- 	void (*post_page_flip)(struct radeon_device *rdev, int crtc);
+@@ -1246,7 +1246,7 @@ struct radeon_asic {
+ 		u32 (*page_flip)(struct radeon_device *rdev, int crtc, u64 crtc_base);
+ 		void (*post_page_flip)(struct radeon_device *rdev, int crtc);
+ 	} pflip;
 -};
 +} __no_const;
  
  /*
   * Asic structures
 diff --git a/drivers/gpu/drm/radeon/radeon_device.c b/drivers/gpu/drm/radeon/radeon_device.c
-index 49f7cb7..2fcb48f 100644
+index 5992502..c19c633 100644
 --- a/drivers/gpu/drm/radeon/radeon_device.c
 +++ b/drivers/gpu/drm/radeon/radeon_device.c
-@@ -687,7 +687,7 @@ static bool radeon_switcheroo_can_switch(struct pci_dev *pdev)
+@@ -691,7 +691,7 @@ static bool radeon_switcheroo_can_switch(struct pci_dev *pdev)
  	bool can_switch;
  
  	spin_lock(&dev->count_lock);
@@ -31206,10 +30873,10 @@ index e8422ae..d22d4a8 100644
  	DRM_DEBUG("pid=%d\n", DRM_CURRENTPID);
  
 diff --git a/drivers/gpu/drm/radeon/radeon_ttm.c b/drivers/gpu/drm/radeon/radeon_ttm.c
-index c421e77..e6bf2e8 100644
+index f493c64..524ab6b 100644
 --- a/drivers/gpu/drm/radeon/radeon_ttm.c
 +++ b/drivers/gpu/drm/radeon/radeon_ttm.c
-@@ -842,8 +842,10 @@ int radeon_mmap(struct file *filp, struct vm_area_struct *vma)
+@@ -843,8 +843,10 @@ int radeon_mmap(struct file *filp, struct vm_area_struct *vma)
  	}
  	if (unlikely(ttm_vm_ops == NULL)) {
  		ttm_vm_ops = vma->vm_ops;
@@ -31223,7 +30890,7 @@ index c421e77..e6bf2e8 100644
  	vma->vm_ops = &radeon_ttm_vm_ops;
  	return 0;
 diff --git a/drivers/gpu/drm/radeon/rs690.c b/drivers/gpu/drm/radeon/rs690.c
-index f68dff2..8df955c 100644
+index f2c3b9d..d5a376b 100644
 --- a/drivers/gpu/drm/radeon/rs690.c
 +++ b/drivers/gpu/drm/radeon/rs690.c
 @@ -304,9 +304,11 @@ void rs690_crtc_bandwidth_compute(struct radeon_device *rdev,
@@ -31240,10 +30907,10 @@ index f68dff2..8df955c 100644
  		if (rdev->pm.max_bandwidth.full > rdev->pm.k8_bandwidth.full &&
  			rdev->pm.k8_bandwidth.full)
 diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc.c b/drivers/gpu/drm/ttm/ttm_page_alloc.c
-index 499debd..66fce72 100644
+index ebc6fac..a8313ed 100644
 --- a/drivers/gpu/drm/ttm/ttm_page_alloc.c
 +++ b/drivers/gpu/drm/ttm/ttm_page_alloc.c
-@@ -398,9 +398,9 @@ static int ttm_pool_get_num_unused_pages(void)
+@@ -394,9 +394,9 @@ static int ttm_pool_get_num_unused_pages(void)
  static int ttm_pool_mm_shrink(struct shrinker *shrink,
  			      struct shrink_control *sc)
  {
@@ -31352,10 +31019,10 @@ index d391f48..10c8ca3 100644
  	case VIA_IRQ_ABSOLUTE:
  		break;
 diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h
-index dc27970..f18b008 100644
+index d0f2c07..9ebd9c3 100644
 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h
 +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h
-@@ -260,7 +260,7 @@ struct vmw_private {
+@@ -263,7 +263,7 @@ struct vmw_private {
  	 * Fencing and IRQs.
  	 */
  
@@ -31440,10 +31107,10 @@ index 8a8725c..afed796 100644
  			marker = list_first_entry(&queue->head,
  						 struct vmw_marker, head);
 diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c
-index 75dbe34..f9204a8 100644
+index 4da66b4..e948655 100644
 --- a/drivers/hid/hid-core.c
 +++ b/drivers/hid/hid-core.c
-@@ -2021,7 +2021,7 @@ static bool hid_ignore(struct hid_device *hdev)
+@@ -2063,7 +2063,7 @@ static bool hid_ignore(struct hid_device *hdev)
  
  int hid_add_device(struct hid_device *hdev)
  {
@@ -31452,7 +31119,7 @@ index 75dbe34..f9204a8 100644
  	int ret;
  
  	if (WARN_ON(hdev->status & HID_STAT_ADDED))
-@@ -2036,7 +2036,7 @@ int hid_add_device(struct hid_device *hdev)
+@@ -2078,7 +2078,7 @@ int hid_add_device(struct hid_device *hdev)
  	/* XXX hack, any other cleaner solution after the driver core
  	 * is converted to allow more than 20 bytes as the device name? */
  	dev_set_name(&hdev->dev, "%04X:%04X:%04X.%04X", hdev->bus,
@@ -31462,10 +31129,10 @@ index 75dbe34..f9204a8 100644
  	hid_debug_register(hdev, dev_name(&hdev->dev));
  	ret = device_add(&hdev->dev);
 diff --git a/drivers/hid/hid-wiimote-debug.c b/drivers/hid/hid-wiimote-debug.c
-index 17dabc1..bf248eb 100644
+index eec3291..8ed706b 100644
 --- a/drivers/hid/hid-wiimote-debug.c
 +++ b/drivers/hid/hid-wiimote-debug.c
-@@ -72,7 +72,7 @@ static ssize_t wiidebug_eeprom_read(struct file *f, char __user *u, size_t s,
+@@ -66,7 +66,7 @@ static ssize_t wiidebug_eeprom_read(struct file *f, char __user *u, size_t s,
  	else if (size == 0)
  		return -EIO;
  
@@ -31503,7 +31170,7 @@ index 4065374..10ed7dc 100644
  	ret = create_gpadl_header(kbuffer, size, &msginfo, &msgcount);
  	if (ret)
 diff --git a/drivers/hv/hv.c b/drivers/hv/hv.c
-index 12aa97f..c0679f7 100644
+index 15956bd..ea34398 100644
 --- a/drivers/hv/hv.c
 +++ b/drivers/hv/hv.c
 @@ -132,7 +132,7 @@ static u64 do_hypercall(u64 control, void *input, void *output)
@@ -31516,10 +31183,10 @@ index 12aa97f..c0679f7 100644
  	__asm__ __volatile__ ("call *%8" : "=d"(hv_status_hi),
  			      "=a"(hv_status_lo) : "d" (control_hi),
 diff --git a/drivers/hv/hyperv_vmbus.h b/drivers/hv/hyperv_vmbus.h
-index 6d7d286..92b0873 100644
+index 699f0d8..f4f19250 100644
 --- a/drivers/hv/hyperv_vmbus.h
 +++ b/drivers/hv/hyperv_vmbus.h
-@@ -556,7 +556,7 @@ enum vmbus_connect_state {
+@@ -555,7 +555,7 @@ enum vmbus_connect_state {
  struct vmbus_connection {
  	enum vmbus_connect_state conn_state;
  
@@ -31546,7 +31213,7 @@ index a220e57..428f54d 100644
  	child_device_obj->device.bus = &hv_bus;
  	child_device_obj->device.parent = &hv_acpi_dev->dev;
 diff --git a/drivers/hwmon/acpi_power_meter.c b/drivers/hwmon/acpi_power_meter.c
-index 554f046..f8b4729 100644
+index 9140236..ceaef4e 100644
 --- a/drivers/hwmon/acpi_power_meter.c
 +++ b/drivers/hwmon/acpi_power_meter.c
 @@ -316,8 +316,6 @@ static ssize_t set_trip(struct device *dev, struct device_attribute *devattr,
@@ -31559,7 +31226,7 @@ index 554f046..f8b4729 100644
  	mutex_lock(&resource->lock);
  	resource->trip[attr->index - 7] = temp;
 diff --git a/drivers/hwmon/sht15.c b/drivers/hwmon/sht15.c
-index 91fdd1f..b66a686 100644
+index 8b011d0..3de24a1 100644
 --- a/drivers/hwmon/sht15.c
 +++ b/drivers/hwmon/sht15.c
 @@ -166,7 +166,7 @@ struct sht15_data {
@@ -31603,7 +31270,7 @@ index 91fdd1f..b66a686 100644
 -		atomic_set(&data->interrupt_handled, 0);
 +		atomic_set_unchecked(&data->interrupt_handled, 0);
  		enable_irq(gpio_to_irq(data->pdata->gpio_data));
- 		/* If still not occurred or another handler has been scheduled */
+ 		/* If still not occurred or another handler was scheduled */
  		if (gpio_get_value(data->pdata->gpio_data)
 -		    || atomic_read(&data->interrupt_handled))
 +		    || atomic_read_unchecked(&data->interrupt_handled))
@@ -32562,7 +32229,7 @@ index c438e46..ca30356 100644
  extern u32 int_mod_timer_init;
  extern u32 int_mod_cq_depth_256;
 diff --git a/drivers/infiniband/hw/nes/nes_cm.c b/drivers/infiniband/hw/nes/nes_cm.c
-index a4972ab..1bcfc31 100644
+index 71edfbb..15b62ae 100644
 --- a/drivers/infiniband/hw/nes/nes_cm.c
 +++ b/drivers/infiniband/hw/nes/nes_cm.c
 @@ -68,14 +68,14 @@ u32 cm_packets_dropped;
@@ -32608,7 +32275,7 @@ index a4972ab..1bcfc31 100644
  
  int nes_add_ref_cm_node(struct nes_cm_node *cm_node)
  {
-@@ -1274,7 +1274,7 @@ static int mini_cm_dec_refcnt_listen(struct nes_cm_core *cm_core,
+@@ -1279,7 +1279,7 @@ static int mini_cm_dec_refcnt_listen(struct nes_cm_core *cm_core,
  		kfree(listener);
  		listener = NULL;
  		ret = 0;
@@ -32617,7 +32284,7 @@ index a4972ab..1bcfc31 100644
  	} else {
  		spin_unlock_irqrestore(&cm_core->listen_list_lock, flags);
  	}
-@@ -1473,7 +1473,7 @@ static struct nes_cm_node *make_cm_node(struct nes_cm_core *cm_core,
+@@ -1482,7 +1482,7 @@ static struct nes_cm_node *make_cm_node(struct nes_cm_core *cm_core,
  		  cm_node->rem_mac);
  
  	add_hte_node(cm_core, cm_node);
@@ -32626,7 +32293,7 @@ index a4972ab..1bcfc31 100644
  
  	return cm_node;
  }
-@@ -1531,7 +1531,7 @@ static int rem_ref_cm_node(struct nes_cm_core *cm_core,
+@@ -1540,7 +1540,7 @@ static int rem_ref_cm_node(struct nes_cm_core *cm_core,
  	}
  
  	atomic_dec(&cm_core->node_cnt);
@@ -32635,7 +32302,7 @@ index a4972ab..1bcfc31 100644
  	nesqp = cm_node->nesqp;
  	if (nesqp) {
  		nesqp->cm_node = NULL;
-@@ -1595,7 +1595,7 @@ static int process_options(struct nes_cm_node *cm_node, u8 *optionsloc,
+@@ -1604,7 +1604,7 @@ static int process_options(struct nes_cm_node *cm_node, u8 *optionsloc,
  
  static void drop_packet(struct sk_buff *skb)
  {
@@ -32644,7 +32311,7 @@ index a4972ab..1bcfc31 100644
  	dev_kfree_skb_any(skb);
  }
  
-@@ -1658,7 +1658,7 @@ static void handle_rst_pkt(struct nes_cm_node *cm_node, struct sk_buff *skb,
+@@ -1667,7 +1667,7 @@ static void handle_rst_pkt(struct nes_cm_node *cm_node, struct sk_buff *skb,
  {
  
  	int	reset = 0;	/* whether to send reset in case of err.. */
@@ -32653,7 +32320,7 @@ index a4972ab..1bcfc31 100644
  	nes_debug(NES_DBG_CM, "Received Reset, cm_node = %p, state = %u."
  			" refcnt=%d\n", cm_node, cm_node->state,
  			atomic_read(&cm_node->ref_count));
-@@ -2299,7 +2299,7 @@ static struct nes_cm_node *mini_cm_connect(struct nes_cm_core *cm_core,
+@@ -2308,7 +2308,7 @@ static struct nes_cm_node *mini_cm_connect(struct nes_cm_core *cm_core,
  				rem_ref_cm_node(cm_node->cm_core, cm_node);
  				return NULL;
  			}
@@ -32662,7 +32329,7 @@ index a4972ab..1bcfc31 100644
  			loopbackremotenode->loopbackpartner = cm_node;
  			loopbackremotenode->tcp_cntxt.rcv_wscale =
  				NES_CM_DEFAULT_RCV_WND_SCALE;
-@@ -2574,7 +2574,7 @@ static int mini_cm_recv_pkt(struct nes_cm_core *cm_core,
+@@ -2583,7 +2583,7 @@ static int mini_cm_recv_pkt(struct nes_cm_core *cm_core,
  				nes_queue_mgt_skbs(skb, nesvnic, cm_node->nesqp);
  			else {
  				rem_ref_cm_node(cm_core, cm_node);
@@ -32671,7 +32338,7 @@ index a4972ab..1bcfc31 100644
  				dev_kfree_skb_any(skb);
  			}
  			break;
-@@ -2881,7 +2881,7 @@ static int nes_cm_disconn_true(struct nes_qp *nesqp)
+@@ -2890,7 +2890,7 @@ static int nes_cm_disconn_true(struct nes_qp *nesqp)
  
  	if ((cm_id) && (cm_id->event_handler)) {
  		if (issue_disconn) {
@@ -32680,7 +32347,7 @@ index a4972ab..1bcfc31 100644
  			cm_event.event = IW_CM_EVENT_DISCONNECT;
  			cm_event.status = disconn_status;
  			cm_event.local_addr = cm_id->local_addr;
-@@ -2903,7 +2903,7 @@ static int nes_cm_disconn_true(struct nes_qp *nesqp)
+@@ -2912,7 +2912,7 @@ static int nes_cm_disconn_true(struct nes_qp *nesqp)
  		}
  
  		if (issue_close) {
@@ -32689,7 +32356,7 @@ index a4972ab..1bcfc31 100644
  			nes_disconnect(nesqp, 1);
  
  			cm_id->provider_data = nesqp;
-@@ -3039,7 +3039,7 @@ int nes_accept(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
+@@ -3048,7 +3048,7 @@ int nes_accept(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
  
  	nes_debug(NES_DBG_CM, "QP%u, cm_node=%p, jiffies = %lu listener = %p\n",
  		nesqp->hwqp.qp_id, cm_node, jiffies, cm_node->listener);
@@ -32698,7 +32365,7 @@ index a4972ab..1bcfc31 100644
  
  	nes_debug(NES_DBG_CM, "netdev refcnt = %u.\n",
  			netdev_refcnt_read(nesvnic->netdev));
-@@ -3241,7 +3241,7 @@ int nes_reject(struct iw_cm_id *cm_id, const void *pdata, u8 pdata_len)
+@@ -3250,7 +3250,7 @@ int nes_reject(struct iw_cm_id *cm_id, const void *pdata, u8 pdata_len)
  	struct nes_cm_core *cm_core;
  	u8 *start_buff;
  
@@ -32707,7 +32374,7 @@ index a4972ab..1bcfc31 100644
  	cm_node = (struct nes_cm_node *)cm_id->provider_data;
  	loopback = cm_node->loopbackpartner;
  	cm_core = cm_node->cm_core;
-@@ -3301,7 +3301,7 @@ int nes_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
+@@ -3310,7 +3310,7 @@ int nes_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *conn_param)
  		  ntohl(cm_id->local_addr.sin_addr.s_addr),
  		  ntohs(cm_id->local_addr.sin_port));
  
@@ -32716,7 +32383,7 @@ index a4972ab..1bcfc31 100644
  	nesqp->active_conn = 1;
  
  	/* cache the cm_id in the qp */
-@@ -3407,7 +3407,7 @@ int nes_create_listen(struct iw_cm_id *cm_id, int backlog)
+@@ -3416,7 +3416,7 @@ int nes_create_listen(struct iw_cm_id *cm_id, int backlog)
  			g_cm_core->api->stop_listener(g_cm_core, (void *)cm_node);
  			return err;
  		}
@@ -32725,7 +32392,7 @@ index a4972ab..1bcfc31 100644
  	}
  
  	cm_id->add_ref(cm_id);
-@@ -3508,7 +3508,7 @@ static void cm_event_connected(struct nes_cm_event *event)
+@@ -3517,7 +3517,7 @@ static void cm_event_connected(struct nes_cm_event *event)
  
  	if (nesqp->destroyed)
  		return;
@@ -32734,7 +32401,7 @@ index a4972ab..1bcfc31 100644
  	nes_debug(NES_DBG_CM, "QP%u attempting to connect to  0x%08X:0x%04X on"
  		  " local port 0x%04X. jiffies = %lu.\n",
  		  nesqp->hwqp.qp_id,
-@@ -3695,7 +3695,7 @@ static void cm_event_reset(struct nes_cm_event *event)
+@@ -3704,7 +3704,7 @@ static void cm_event_reset(struct nes_cm_event *event)
  
  	cm_id->add_ref(cm_id);
  	ret = cm_id->event_handler(cm_id, &cm_event);
@@ -32743,7 +32410,7 @@ index a4972ab..1bcfc31 100644
  	cm_event.event = IW_CM_EVENT_CLOSE;
  	cm_event.status = 0;
  	cm_event.provider_data = cm_id->provider_data;
-@@ -3731,7 +3731,7 @@ static void cm_event_mpa_req(struct nes_cm_event *event)
+@@ -3740,7 +3740,7 @@ static void cm_event_mpa_req(struct nes_cm_event *event)
  		return;
  	cm_id = cm_node->cm_id;
  
@@ -32752,7 +32419,7 @@ index a4972ab..1bcfc31 100644
  	nes_debug(NES_DBG_CM, "cm_node = %p - cm_id = %p, jiffies = %lu\n",
  		  cm_node, cm_id, jiffies);
  
-@@ -3771,7 +3771,7 @@ static void cm_event_mpa_reject(struct nes_cm_event *event)
+@@ -3780,7 +3780,7 @@ static void cm_event_mpa_reject(struct nes_cm_event *event)
  		return;
  	cm_id = cm_node->cm_id;
  
@@ -32859,7 +32526,7 @@ index f3a3ecf..57d311d 100644
  
  /**
 diff --git a/drivers/infiniband/hw/nes/nes_verbs.c b/drivers/infiniband/hw/nes/nes_verbs.c
-index 0927b5c..ed67986 100644
+index 8b8812d..a5e1133 100644
 --- a/drivers/infiniband/hw/nes/nes_verbs.c
 +++ b/drivers/infiniband/hw/nes/nes_verbs.c
 @@ -46,9 +46,9 @@
@@ -32894,7 +32561,7 @@ index 0927b5c..ed67986 100644
  
  	/* Blow away the connection if it exists. */
 diff --git a/drivers/infiniband/hw/qib/qib.h b/drivers/infiniband/hw/qib/qib.h
-index b881bdc..c2e360c 100644
+index 6b811e3..f8acf88 100644
 --- a/drivers/infiniband/hw/qib/qib.h
 +++ b/drivers/infiniband/hw/qib/qib.h
 @@ -51,6 +51,7 @@
@@ -32906,10 +32573,10 @@ index b881bdc..c2e360c 100644
  #include "qib_common.h"
  #include "qib_verbs.h"
 diff --git a/drivers/input/gameport/gameport.c b/drivers/input/gameport/gameport.c
-index c351aa4..e6967c2 100644
+index da739d9..da1c7f4 100644
 --- a/drivers/input/gameport/gameport.c
 +++ b/drivers/input/gameport/gameport.c
-@@ -488,14 +488,14 @@ EXPORT_SYMBOL(gameport_set_phys);
+@@ -487,14 +487,14 @@ EXPORT_SYMBOL(gameport_set_phys);
   */
  static void gameport_init_port(struct gameport *gameport)
  {
@@ -32927,7 +32594,7 @@ index c351aa4..e6967c2 100644
  	gameport->dev.release = gameport_release_port;
  	if (gameport->parent)
 diff --git a/drivers/input/input.c b/drivers/input/input.c
-index 1f78c95..3cddc6c 100644
+index 8921c61..f5cd63d 100644
 --- a/drivers/input/input.c
 +++ b/drivers/input/input.c
 @@ -1814,7 +1814,7 @@ static void input_cleanse_bitmasks(struct input_dev *dev)
@@ -32996,10 +32663,10 @@ index 0110b5a..d3ad144 100644
  
  	return count;
 diff --git a/drivers/input/serio/serio.c b/drivers/input/serio/serio.c
-index ba70058..571d25d 100644
+index d0f7533..fb8215b 100644
 --- a/drivers/input/serio/serio.c
 +++ b/drivers/input/serio/serio.c
-@@ -497,7 +497,7 @@ static void serio_release_port(struct device *dev)
+@@ -496,7 +496,7 @@ static void serio_release_port(struct device *dev)
   */
  static void serio_init_port(struct serio *serio)
  {
@@ -33008,7 +32675,7 @@ index ba70058..571d25d 100644
  
  	__module_get(THIS_MODULE);
  
-@@ -508,7 +508,7 @@ static void serio_init_port(struct serio *serio)
+@@ -507,7 +507,7 @@ static void serio_init_port(struct serio *serio)
  	mutex_init(&serio->drv_mutex);
  	device_initialize(&serio->dev);
  	dev_set_name(&serio->dev, "serio%ld",
@@ -33018,7 +32685,7 @@ index ba70058..571d25d 100644
  	serio->dev.release = serio_release_port;
  	serio->dev.groups = serio_device_attr_groups;
 diff --git a/drivers/isdn/capi/capi.c b/drivers/isdn/capi/capi.c
-index e44933d..9ba484a 100644
+index b902794..fc7b85b 100644
 --- a/drivers/isdn/capi/capi.c
 +++ b/drivers/isdn/capi/capi.c
 @@ -83,8 +83,8 @@ struct capiminor {
@@ -33058,136 +32725,11 @@ index e44933d..9ba484a 100644
  		capimsg_setu32(skb->data, 8, mp->ncci);	/* NCCI */
  		capimsg_setu32(skb->data, 12, (u32)(long)skb->data);/* Data32 */
  		capimsg_setu16(skb->data, 16, len);	/* Data length */
-diff --git a/drivers/isdn/gigaset/common.c b/drivers/isdn/gigaset/common.c
-index db621db..825ea1a 100644
---- a/drivers/isdn/gigaset/common.c
-+++ b/drivers/isdn/gigaset/common.c
-@@ -723,7 +723,7 @@ struct cardstate *gigaset_initcs(struct gigaset_driver *drv, int channels,
- 	cs->commands_pending = 0;
- 	cs->cur_at_seq = 0;
- 	cs->gotfwver = -1;
--	cs->open_count = 0;
-+	local_set(&cs->open_count, 0);
- 	cs->dev = NULL;
- 	cs->tty = NULL;
- 	cs->tty_dev = NULL;
-diff --git a/drivers/isdn/gigaset/gigaset.h b/drivers/isdn/gigaset/gigaset.h
-index 212efaf..f187c6b 100644
---- a/drivers/isdn/gigaset/gigaset.h
-+++ b/drivers/isdn/gigaset/gigaset.h
-@@ -35,6 +35,7 @@
- #include <linux/tty_driver.h>
- #include <linux/list.h>
- #include <linux/atomic.h>
-+#include <asm/local.h>
- 
- #define GIG_VERSION {0, 5, 0, 0}
- #define GIG_COMPAT  {0, 4, 0, 0}
-@@ -433,7 +434,7 @@ struct cardstate {
- 	spinlock_t cmdlock;
- 	unsigned curlen, cmdbytes;
- 
--	unsigned open_count;
-+	local_t open_count;
- 	struct tty_struct *tty;
- 	struct tasklet_struct if_wake_tasklet;
- 	unsigned control_state;
-diff --git a/drivers/isdn/gigaset/interface.c b/drivers/isdn/gigaset/interface.c
-index ee0a549..a7c9798 100644
---- a/drivers/isdn/gigaset/interface.c
-+++ b/drivers/isdn/gigaset/interface.c
-@@ -163,9 +163,7 @@ static int if_open(struct tty_struct *tty, struct file *filp)
- 	}
- 	tty->driver_data = cs;
- 
--	++cs->open_count;
--
--	if (cs->open_count == 1) {
-+	if (local_inc_return(&cs->open_count) == 1) {
- 		spin_lock_irqsave(&cs->lock, flags);
- 		cs->tty = tty;
- 		spin_unlock_irqrestore(&cs->lock, flags);
-@@ -193,10 +191,10 @@ static void if_close(struct tty_struct *tty, struct file *filp)
- 
- 	if (!cs->connected)
- 		gig_dbg(DEBUG_IF, "not connected");	/* nothing to do */
--	else if (!cs->open_count)
-+	else if (!local_read(&cs->open_count))
- 		dev_warn(cs->dev, "%s: device not opened\n", __func__);
- 	else {
--		if (!--cs->open_count) {
-+		if (!local_dec_return(&cs->open_count)) {
- 			spin_lock_irqsave(&cs->lock, flags);
- 			cs->tty = NULL;
- 			spin_unlock_irqrestore(&cs->lock, flags);
-@@ -231,7 +229,7 @@ static int if_ioctl(struct tty_struct *tty,
- 	if (!cs->connected) {
- 		gig_dbg(DEBUG_IF, "not connected");
- 		retval = -ENODEV;
--	} else if (!cs->open_count)
-+	} else if (!local_read(&cs->open_count))
- 		dev_warn(cs->dev, "%s: device not opened\n", __func__);
- 	else {
- 		retval = 0;
-@@ -361,7 +359,7 @@ static int if_write(struct tty_struct *tty, const unsigned char *buf, int count)
- 		retval = -ENODEV;
- 		goto done;
- 	}
--	if (!cs->open_count) {
-+	if (!local_read(&cs->open_count)) {
- 		dev_warn(cs->dev, "%s: device not opened\n", __func__);
- 		retval = -ENODEV;
- 		goto done;
-@@ -414,7 +412,7 @@ static int if_write_room(struct tty_struct *tty)
- 	if (!cs->connected) {
- 		gig_dbg(DEBUG_IF, "not connected");
- 		retval = -ENODEV;
--	} else if (!cs->open_count)
-+	} else if (!local_read(&cs->open_count))
- 		dev_warn(cs->dev, "%s: device not opened\n", __func__);
- 	else if (cs->mstate != MS_LOCKED) {
- 		dev_warn(cs->dev, "can't write to unlocked device\n");
-@@ -444,7 +442,7 @@ static int if_chars_in_buffer(struct tty_struct *tty)
- 
- 	if (!cs->connected)
- 		gig_dbg(DEBUG_IF, "not connected");
--	else if (!cs->open_count)
-+	else if (!local_read(&cs->open_count))
- 		dev_warn(cs->dev, "%s: device not opened\n", __func__);
- 	else if (cs->mstate != MS_LOCKED)
- 		dev_warn(cs->dev, "can't write to unlocked device\n");
-@@ -472,7 +470,7 @@ static void if_throttle(struct tty_struct *tty)
- 
- 	if (!cs->connected)
- 		gig_dbg(DEBUG_IF, "not connected");	/* nothing to do */
--	else if (!cs->open_count)
-+	else if (!local_read(&cs->open_count))
- 		dev_warn(cs->dev, "%s: device not opened\n", __func__);
- 	else
- 		gig_dbg(DEBUG_IF, "%s: not implemented\n", __func__);
-@@ -496,7 +494,7 @@ static void if_unthrottle(struct tty_struct *tty)
- 
- 	if (!cs->connected)
- 		gig_dbg(DEBUG_IF, "not connected");	/* nothing to do */
--	else if (!cs->open_count)
-+	else if (!local_read(&cs->open_count))
- 		dev_warn(cs->dev, "%s: device not opened\n", __func__);
- 	else
- 		gig_dbg(DEBUG_IF, "%s: not implemented\n", __func__);
-@@ -527,7 +525,7 @@ static void if_set_termios(struct tty_struct *tty, struct ktermios *old)
- 		goto out;
- 	}
- 
--	if (!cs->open_count) {
-+	if (!local_read(&cs->open_count)) {
- 		dev_warn(cs->dev, "%s: device not opened\n", __func__);
- 		goto out;
- 	}
 diff --git a/drivers/isdn/hardware/avm/b1.c b/drivers/isdn/hardware/avm/b1.c
-index 2a57da59..e7a12ed 100644
+index 821f7ac..28d4030 100644
 --- a/drivers/isdn/hardware/avm/b1.c
 +++ b/drivers/isdn/hardware/avm/b1.c
-@@ -176,7 +176,7 @@ int b1_load_t4file(avmcard *card, capiloaddatapart * t4file)
+@@ -176,7 +176,7 @@ int b1_load_t4file(avmcard *card, capiloaddatapart *t4file)
  	}
  	if (left) {
  		if (t4file->user) {
@@ -33196,7 +32738,7 @@ index 2a57da59..e7a12ed 100644
  				return -EFAULT;
  		} else {
  			memcpy(buf, dp, left);
-@@ -224,7 +224,7 @@ int b1_load_config(avmcard *card, capiloaddatapart * config)
+@@ -224,7 +224,7 @@ int b1_load_config(avmcard *card, capiloaddatapart *config)
  	}
  	if (left) {
  		if (config->user) {
@@ -33206,20 +32748,20 @@ index 2a57da59..e7a12ed 100644
  		} else {
  			memcpy(buf, dp, left);
 diff --git a/drivers/isdn/hardware/eicon/divasync.h b/drivers/isdn/hardware/eicon/divasync.h
-index 85784a7..a19ca98 100644
+index dd6b53a..19d9ee6 100644
 --- a/drivers/isdn/hardware/eicon/divasync.h
 +++ b/drivers/isdn/hardware/eicon/divasync.h
 @@ -146,7 +146,7 @@ typedef struct _diva_didd_add_adapter {
  } diva_didd_add_adapter_t;
  typedef struct _diva_didd_remove_adapter {
-  IDI_CALL p_request;
+ 	IDI_CALL p_request;
 -} diva_didd_remove_adapter_t;
 +} __no_const diva_didd_remove_adapter_t;
  typedef struct _diva_didd_read_adapter_array {
-  void   * buffer;
-  dword length;
+ 	void *buffer;
+ 	dword length;
 diff --git a/drivers/isdn/hardware/eicon/xdi_adapter.h b/drivers/isdn/hardware/eicon/xdi_adapter.h
-index a3bd163..8956575 100644
+index d303e65..28bcb7b 100644
 --- a/drivers/isdn/hardware/eicon/xdi_adapter.h
 +++ b/drivers/isdn/hardware/eicon/xdi_adapter.h
 @@ -44,7 +44,7 @@ typedef struct _xdi_mbox_t {
@@ -33232,10 +32774,10 @@ index a3bd163..8956575 100644
  typedef struct _diva_os_xdi_adapter {
  	struct list_head link;
 diff --git a/drivers/isdn/icn/icn.c b/drivers/isdn/icn/icn.c
-index 1f355bb..43f1fea 100644
+index e74df7c..03a03ba 100644
 --- a/drivers/isdn/icn/icn.c
 +++ b/drivers/isdn/icn/icn.c
-@@ -1045,7 +1045,7 @@ icn_writecmd(const u_char * buf, int len, int user, icn_card * card)
+@@ -1045,7 +1045,7 @@ icn_writecmd(const u_char *buf, int len, int user, icn_card *card)
  		if (count > len)
  			count = len;
  		if (user) {
@@ -33396,7 +32938,7 @@ index 40634b0..4f5855e 100644
  // Every interrupt can come to us here
  // But we must truly tell each apart.
 diff --git a/drivers/macintosh/macio_asic.c b/drivers/macintosh/macio_asic.c
-index 4daf9e5..b8d1d0f 100644
+index 20e5c2c..9e849a9 100644
 --- a/drivers/macintosh/macio_asic.c
 +++ b/drivers/macintosh/macio_asic.c
 @@ -748,7 +748,7 @@ static void __devexit macio_pci_remove(struct pci_dev* pdev)
@@ -33408,11 +32950,24 @@ index 4daf9e5..b8d1d0f 100644
  	.vendor		= PCI_VENDOR_ID_APPLE,
  	.device		= PCI_ANY_ID,
  	.subvendor	= PCI_ANY_ID,
+diff --git a/drivers/md/bitmap.c b/drivers/md/bitmap.c
+index 17e2b47..bcbeec4 100644
+--- a/drivers/md/bitmap.c
++++ b/drivers/md/bitmap.c
+@@ -1823,7 +1823,7 @@ void bitmap_status(struct seq_file *seq, struct bitmap *bitmap)
+ 		   chunk_kb ? "KB" : "B");
+ 	if (bitmap->file) {
+ 		seq_printf(seq, ", file: ");
+-		seq_path(seq, &bitmap->file->f_path, " \t\n");
++		seq_path(seq, &bitmap->file->f_path, " \t\n\\");
+ 	}
+ 
+ 	seq_printf(seq, "\n");
 diff --git a/drivers/md/dm-ioctl.c b/drivers/md/dm-ioctl.c
-index 1ce84ed..0fdd40a 100644
+index a1a3e6d..1918bfc 100644
 --- a/drivers/md/dm-ioctl.c
 +++ b/drivers/md/dm-ioctl.c
-@@ -1589,7 +1589,7 @@ static int validate_params(uint cmd, struct dm_ioctl *param)
+@@ -1590,7 +1590,7 @@ static int validate_params(uint cmd, struct dm_ioctl *param)
  	    cmd == DM_LIST_VERSIONS_CMD)
  		return 0;
  
@@ -33421,21 +32976,8 @@ index 1ce84ed..0fdd40a 100644
  		if (!*param->name) {
  			DMWARN("name not supplied when creating device");
  			return -EINVAL;
-diff --git a/drivers/md/dm-log-userspace-transfer.c b/drivers/md/dm-log-userspace-transfer.c
-index 1f23e04..08d9a20 100644
---- a/drivers/md/dm-log-userspace-transfer.c
-+++ b/drivers/md/dm-log-userspace-transfer.c
-@@ -134,7 +134,7 @@ static void cn_ulog_callback(struct cn_msg *msg, struct netlink_skb_parms *nsp)
- {
- 	struct dm_ulog_request *tfr = (struct dm_ulog_request *)(msg + 1);
- 
--	if (!cap_raised(current_cap(), CAP_SYS_ADMIN))
-+	if (!capable(CAP_SYS_ADMIN))
- 		return;
- 
- 	spin_lock(&receiving_list_lock);
 diff --git a/drivers/md/dm-raid1.c b/drivers/md/dm-raid1.c
-index 9bfd057..01180bc 100644
+index d039de8..0cf5b87 100644
 --- a/drivers/md/dm-raid1.c
 +++ b/drivers/md/dm-raid1.c
 @@ -40,7 +40,7 @@ enum dm_raid1_error {
@@ -33492,7 +33034,7 @@ index 9bfd057..01180bc 100644
  			m = NULL;
  
  		if (likely(m))
-@@ -937,7 +937,7 @@ static int get_mirror(struct mirror_set *ms, struct dm_target *ti,
+@@ -938,7 +938,7 @@ static int get_mirror(struct mirror_set *ms, struct dm_target *ti,
  	}
  
  	ms->mirror[mirror].ms = ms;
@@ -33501,7 +33043,7 @@ index 9bfd057..01180bc 100644
  	ms->mirror[mirror].error_type = 0;
  	ms->mirror[mirror].offset = offset;
  
-@@ -1347,7 +1347,7 @@ static void mirror_resume(struct dm_target *ti)
+@@ -1351,7 +1351,7 @@ static void mirror_resume(struct dm_target *ti)
   */
  static char device_status_char(struct mirror *m)
  {
@@ -33511,7 +33053,7 @@ index 9bfd057..01180bc 100644
  
  	return (test_bit(DM_RAID1_FLUSH_ERROR, &(m->error_type))) ? 'F' :
 diff --git a/drivers/md/dm-stripe.c b/drivers/md/dm-stripe.c
-index 3d80cf0..b77cc47 100644
+index 35c94ff..20d4c17 100644
 --- a/drivers/md/dm-stripe.c
 +++ b/drivers/md/dm-stripe.c
 @@ -20,7 +20,7 @@ struct stripe {
@@ -33523,7 +33065,7 @@ index 3d80cf0..b77cc47 100644
  };
  
  struct stripe_c {
-@@ -192,7 +192,7 @@ static int stripe_ctr(struct dm_target *ti, unsigned int argc, char **argv)
+@@ -193,7 +193,7 @@ static int stripe_ctr(struct dm_target *ti, unsigned int argc, char **argv)
  			kfree(sc);
  			return r;
  		}
@@ -33532,7 +33074,7 @@ index 3d80cf0..b77cc47 100644
  	}
  
  	ti->private = sc;
-@@ -314,7 +314,7 @@ static int stripe_status(struct dm_target *ti,
+@@ -315,7 +315,7 @@ static int stripe_status(struct dm_target *ti,
  		DMEMIT("%d ", sc->stripes);
  		for (i = 0; i < sc->stripes; i++)  {
  			DMEMIT("%s ", sc->stripe[i].dev->name);
@@ -33541,7 +33083,7 @@ index 3d80cf0..b77cc47 100644
  				'D' : 'A';
  		}
  		buffer[i] = '\0';
-@@ -361,8 +361,8 @@ static int stripe_end_io(struct dm_target *ti, struct bio *bio,
+@@ -362,8 +362,8 @@ static int stripe_end_io(struct dm_target *ti, struct bio *bio,
  	 */
  	for (i = 0; i < sc->stripes; i++)
  		if (!strcmp(sc->stripe[i].dev->name, major_minor)) {
@@ -33553,10 +33095,10 @@ index 3d80cf0..b77cc47 100644
  				schedule_work(&sc->trigger_event);
  		}
 diff --git a/drivers/md/dm-table.c b/drivers/md/dm-table.c
-index 63cc542..8d45caf3 100644
+index 2e227fb..44ead1f 100644
 --- a/drivers/md/dm-table.c
 +++ b/drivers/md/dm-table.c
-@@ -391,7 +391,7 @@ static int device_area_is_invalid(struct dm_target *ti, struct dm_dev *dev,
+@@ -390,7 +390,7 @@ static int device_area_is_invalid(struct dm_target *ti, struct dm_dev *dev,
  	if (!dev_size)
  		return 0;
  
@@ -33566,7 +33108,7 @@ index 63cc542..8d45caf3 100644
  		       "start=%llu, len=%llu, dev_size=%llu",
  		       dm_device_name(ti->table->md), bdevname(bdev, b),
 diff --git a/drivers/md/dm-thin-metadata.c b/drivers/md/dm-thin-metadata.c
-index 237571a..fb6d19b 100644
+index 737d388..811ad5a 100644
 --- a/drivers/md/dm-thin-metadata.c
 +++ b/drivers/md/dm-thin-metadata.c
 @@ -432,7 +432,7 @@ static int init_pmd(struct dm_pool_metadata *pmd,
@@ -33588,7 +33130,7 @@ index 237571a..fb6d19b 100644
  	pmd->bl_info.value_type.inc = data_block_inc;
  	pmd->bl_info.value_type.dec = data_block_dec;
 diff --git a/drivers/md/dm.c b/drivers/md/dm.c
-index b89c548..2af3ce4 100644
+index e24143c..ce2f21a1 100644
 --- a/drivers/md/dm.c
 +++ b/drivers/md/dm.c
 @@ -176,9 +176,9 @@ struct mapped_device {
@@ -33603,7 +33145,7 @@ index b89c548..2af3ce4 100644
  	struct list_head uevent_list;
  	spinlock_t uevent_lock; /* Protect access to uevent_list */
  
-@@ -1844,8 +1844,8 @@ static struct mapped_device *alloc_dev(int minor)
+@@ -1845,8 +1845,8 @@ static struct mapped_device *alloc_dev(int minor)
  	rwlock_init(&md->map_lock);
  	atomic_set(&md->holders, 1);
  	atomic_set(&md->open_count, 0);
@@ -33614,7 +33156,7 @@ index b89c548..2af3ce4 100644
  	INIT_LIST_HEAD(&md->uevent_list);
  	spin_lock_init(&md->uevent_lock);
  
-@@ -1979,7 +1979,7 @@ static void event_callback(void *context)
+@@ -1980,7 +1980,7 @@ static void event_callback(void *context)
  
  	dm_send_uevents(&uevents, &disk_to_dev(md->disk)->kobj);
  
@@ -33623,7 +33165,7 @@ index b89c548..2af3ce4 100644
  	wake_up(&md->eventq);
  }
  
-@@ -2621,18 +2621,18 @@ int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
+@@ -2622,18 +2622,18 @@ int dm_kobject_uevent(struct mapped_device *md, enum kobject_action action,
  
  uint32_t dm_next_uevent_seq(struct mapped_device *md)
  {
@@ -33646,7 +33188,7 @@ index b89c548..2af3ce4 100644
  
  void dm_uevent_add(struct mapped_device *md, struct list_head *elist)
 diff --git a/drivers/md/md.c b/drivers/md/md.c
-index 1ae4327..4ecabb5 100644
+index 2b30ffd..bf789ce 100644
 --- a/drivers/md/md.c
 +++ b/drivers/md/md.c
 @@ -277,10 +277,10 @@ EXPORT_SYMBOL_GPL(md_trim_bio);
@@ -33727,16 +33269,7 @@ index 1ae4327..4ecabb5 100644
  		return 0;
  	}
  	if (v == (void*)2) {
-@@ -6830,7 +6830,7 @@ static int md_seq_show(struct seq_file *seq, void *v)
- 				chunk_kb ? "KB" : "B");
- 			if (bitmap->file) {
- 				seq_printf(seq, ", file: ");
--				seq_path(seq, &bitmap->file->f_path, " \t\n");
-+				seq_path(seq, &bitmap->file->f_path, " \t\n\\");
- 			}
- 
- 			seq_printf(seq, "\n");
-@@ -6861,7 +6861,7 @@ static int md_seq_open(struct inode *inode, struct file *file)
+@@ -6841,7 +6841,7 @@ static int md_seq_open(struct inode *inode, struct file *file)
  		return error;
  
  	seq = file->private_data;
@@ -33745,7 +33278,7 @@ index 1ae4327..4ecabb5 100644
  	return error;
  }
  
-@@ -6875,7 +6875,7 @@ static unsigned int mdstat_poll(struct file *filp, poll_table *wait)
+@@ -6855,7 +6855,7 @@ static unsigned int mdstat_poll(struct file *filp, poll_table *wait)
  	/* always allow read */
  	mask = POLLIN | POLLRDNORM;
  
@@ -33754,7 +33287,7 @@ index 1ae4327..4ecabb5 100644
  		mask |= POLLERR | POLLPRI;
  	return mask;
  }
-@@ -6919,7 +6919,7 @@ static int is_mddev_idle(struct mddev *mddev, int init)
+@@ -6899,7 +6899,7 @@ static int is_mddev_idle(struct mddev *mddev, int init)
  		struct gendisk *disk = rdev->bdev->bd_contains->bd_disk;
  		curr_events = (int)part_stat_read(&disk->part0, sectors[0]) +
  			      (int)part_stat_read(&disk->part0, sectors[1]) -
@@ -33764,7 +33297,7 @@ index 1ae4327..4ecabb5 100644
  		 * as sync_io is counted when a request starts, and
  		 * disk_stats is counted when it completes.
 diff --git a/drivers/md/md.h b/drivers/md/md.h
-index 44c63df..b795d1a 100644
+index 1c2063c..9639970 100644
 --- a/drivers/md/md.h
 +++ b/drivers/md/md.h
 @@ -93,13 +93,13 @@ struct md_rdev {
@@ -33783,7 +33316,7 @@ index 44c63df..b795d1a 100644
  					   * for reporting to userspace and storing
  					   * in superblock.
  					   */
-@@ -421,7 +421,7 @@ static inline void rdev_dec_pending(struct md_rdev *rdev, struct mddev *mddev)
+@@ -429,7 +429,7 @@ static inline void rdev_dec_pending(struct md_rdev *rdev, struct mddev *mddev)
  
  static inline void md_sync_acct(struct block_device *bdev, unsigned long nr_sectors)
  {
@@ -33844,10 +33377,10 @@ index 1cbfc6b..56e1dbb 100644
  /*----------------------------------------------------------------*/
  
 diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c
-index edc735a..e9b97f1 100644
+index 15dd59b..662bb39 100644
 --- a/drivers/md/raid1.c
 +++ b/drivers/md/raid1.c
-@@ -1645,7 +1645,7 @@ static int fix_sync_read_error(struct r1bio *r1_bio)
+@@ -1688,7 +1688,7 @@ static int fix_sync_read_error(struct r1bio *r1_bio)
  			if (r1_sync_page_io(rdev, sect, s,
  					    bio->bi_io_vec[idx].bv_page,
  					    READ) != 0)
@@ -33856,7 +33389,7 @@ index edc735a..e9b97f1 100644
  		}
  		sectors -= s;
  		sect += s;
-@@ -1859,7 +1859,7 @@ static void fix_read_error(struct r1conf *conf, int read_disk,
+@@ -1902,7 +1902,7 @@ static void fix_read_error(struct r1conf *conf, int read_disk,
  			    test_bit(In_sync, &rdev->flags)) {
  				if (r1_sync_page_io(rdev, sect, s,
  						    conf->tmppage, READ)) {
@@ -33866,10 +33399,10 @@ index edc735a..e9b97f1 100644
  					       "md/raid1:%s: read error corrected "
  					       "(%d sectors at %llu on %s)\n",
 diff --git a/drivers/md/raid10.c b/drivers/md/raid10.c
-index 1898389..a3aa617 100644
+index 3f91c2e..e1f37bd 100644
 --- a/drivers/md/raid10.c
 +++ b/drivers/md/raid10.c
-@@ -1636,7 +1636,7 @@ static void end_sync_read(struct bio *bio, int error)
+@@ -1684,7 +1684,7 @@ static void end_sync_read(struct bio *bio, int error)
  		/* The write handler will notice the lack of
  		 * R10BIO_Uptodate and record any errors etc
  		 */
@@ -33878,7 +33411,7 @@ index 1898389..a3aa617 100644
  			   &conf->mirrors[d].rdev->corrected_errors);
  
  	/* for reconstruct, we always reschedule after a read.
-@@ -1987,7 +1987,7 @@ static void check_decay_read_errors(struct mddev *mddev, struct md_rdev *rdev)
+@@ -2033,7 +2033,7 @@ static void check_decay_read_errors(struct mddev *mddev, struct md_rdev *rdev)
  {
  	struct timespec cur_time_mon;
  	unsigned long hours_since_last;
@@ -33887,7 +33420,7 @@ index 1898389..a3aa617 100644
  
  	ktime_get_ts(&cur_time_mon);
  
-@@ -2009,9 +2009,9 @@ static void check_decay_read_errors(struct mddev *mddev, struct md_rdev *rdev)
+@@ -2055,9 +2055,9 @@ static void check_decay_read_errors(struct mddev *mddev, struct md_rdev *rdev)
  	 * overflowing the shift of read_errors by hours_since_last.
  	 */
  	if (hours_since_last >= 8 * sizeof(read_errors))
@@ -33899,7 +33432,7 @@ index 1898389..a3aa617 100644
  }
  
  static int r10_sync_page_io(struct md_rdev *rdev, sector_t sector,
-@@ -2065,8 +2065,8 @@ static void fix_read_error(struct r10conf *conf, struct mddev *mddev, struct r10
+@@ -2111,8 +2111,8 @@ static void fix_read_error(struct r10conf *conf, struct mddev *mddev, struct r10
  		return;
  
  	check_decay_read_errors(mddev, rdev);
@@ -33910,7 +33443,7 @@ index 1898389..a3aa617 100644
  		char b[BDEVNAME_SIZE];
  		bdevname(rdev->bdev, b);
  
-@@ -2074,7 +2074,7 @@ static void fix_read_error(struct r10conf *conf, struct mddev *mddev, struct r10
+@@ -2120,7 +2120,7 @@ static void fix_read_error(struct r10conf *conf, struct mddev *mddev, struct r10
  		       "md/raid10:%s: %s: Raid device exceeded "
  		       "read_error threshold [cur %d:max %d]\n",
  		       mdname(mddev), b,
@@ -33919,7 +33452,7 @@ index 1898389..a3aa617 100644
  		printk(KERN_NOTICE
  		       "md/raid10:%s: %s: Failing raid device\n",
  		       mdname(mddev), b);
-@@ -2223,7 +2223,7 @@ static void fix_read_error(struct r10conf *conf, struct mddev *mddev, struct r10
+@@ -2271,7 +2271,7 @@ static void fix_read_error(struct r10conf *conf, struct mddev *mddev, struct r10
  				       (unsigned long long)(
  					       sect + rdev->data_offset),
  				       bdevname(rdev->bdev, b));
@@ -33929,10 +33462,10 @@ index 1898389..a3aa617 100644
  
  			rdev_dec_pending(rdev, mddev);
 diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c
-index d1162e5..c7cd902 100644
+index f351422..85c01bb 100644
 --- a/drivers/md/raid5.c
 +++ b/drivers/md/raid5.c
-@@ -1687,18 +1687,18 @@ static void raid5_end_read_request(struct bio * bi, int error)
+@@ -1686,18 +1686,18 @@ static void raid5_end_read_request(struct bio * bi, int error)
  				(unsigned long long)(sh->sector
  						     + rdev->data_offset),
  				bdevname(rdev->bdev, b));
@@ -33955,7 +33488,7 @@ index d1162e5..c7cd902 100644
  		if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
  			printk_ratelimited(
  				KERN_WARNING
-@@ -1727,7 +1727,7 @@ static void raid5_end_read_request(struct bio * bi, int error)
+@@ -1726,7 +1726,7 @@ static void raid5_end_read_request(struct bio * bi, int error)
  				(unsigned long long)(sh->sector
  						     + rdev->data_offset),
  				bdn);
@@ -33965,10 +33498,10 @@ index d1162e5..c7cd902 100644
  			printk(KERN_WARNING
  			       "md/raid:%s: Too many read errors, failing device %s.\n",
 diff --git a/drivers/media/dvb/ddbridge/ddbridge-core.c b/drivers/media/dvb/ddbridge/ddbridge-core.c
-index ce4f858..7bcfb46 100644
+index d88c4aa..17c80b1 100644
 --- a/drivers/media/dvb/ddbridge/ddbridge-core.c
 +++ b/drivers/media/dvb/ddbridge/ddbridge-core.c
-@@ -1678,7 +1678,7 @@ static struct ddb_info ddb_v6 = {
+@@ -1679,7 +1679,7 @@ static struct ddb_info ddb_v6 = {
  	.subvendor   = _subvend, .subdevice = _subdev, \
  	.driver_data = (unsigned long)&_driverdata }
  
@@ -34043,10 +33576,10 @@ index 404f63a..4796533 100644
  #if defined(CONFIG_DVB_DIB3000MB) || (defined(CONFIG_DVB_DIB3000MB_MODULE) && defined(MODULE))
  extern struct dvb_frontend* dib3000mb_attach(const struct dib3000_config* config,
 diff --git a/drivers/media/dvb/ngene/ngene-cards.c b/drivers/media/dvb/ngene/ngene-cards.c
-index 8418c02..8555013 100644
+index 7539a5d..06531a6 100644
 --- a/drivers/media/dvb/ngene/ngene-cards.c
 +++ b/drivers/media/dvb/ngene/ngene-cards.c
-@@ -477,7 +477,7 @@ static struct ngene_info ngene_info_m780 = {
+@@ -478,7 +478,7 @@ static struct ngene_info ngene_info_m780 = {
  
  /****************************************************************************/
  
@@ -34104,7 +33637,7 @@ index 04bf662..e0ac026 100644
  	{0x14f1,0x8811,PCI_ANY_ID,PCI_ANY_ID,0,0,0},
  	{0, }
 diff --git a/drivers/media/video/omap/omap_vout.c b/drivers/media/video/omap/omap_vout.c
-index 1fb7d5b..3901e77 100644
+index 88cf9d9..bbc4b2c 100644
 --- a/drivers/media/video/omap/omap_vout.c
 +++ b/drivers/media/video/omap/omap_vout.c
 @@ -64,7 +64,6 @@ enum omap_vout_channels {
@@ -34153,7 +33686,7 @@ index 305e6aa..0143317 100644
  	int i2c_cx25840_hack_state;
  	int i2c_linked;
 diff --git a/drivers/media/video/timblogiw.c b/drivers/media/video/timblogiw.c
-index 4ed1c7c2..8f15e13 100644
+index 02194c0..091733b 100644
 --- a/drivers/media/video/timblogiw.c
 +++ b/drivers/media/video/timblogiw.c
 @@ -745,7 +745,7 @@ static int timblogiw_mmap(struct file *file, struct vm_area_struct *vma)
@@ -34175,7 +33708,7 @@ index 4ed1c7c2..8f15e13 100644
  	.open		= timblogiw_open,
  	.release	= timblogiw_close,
 diff --git a/drivers/message/fusion/mptbase.c b/drivers/message/fusion/mptbase.c
-index a7dc467..a55c423 100644
+index a5c591f..db692a3 100644
 --- a/drivers/message/fusion/mptbase.c
 +++ b/drivers/message/fusion/mptbase.c
 @@ -6754,8 +6754,13 @@ static int mpt_iocinfo_proc_show(struct seq_file *m, void *v)
@@ -34692,10 +34225,10 @@ index 5c3ce24..4915ccb 100644
  
  #ifdef CONFIG_SGI_GRU_DEBUG
 diff --git a/drivers/misc/sgi-xp/xp.h b/drivers/misc/sgi-xp/xp.h
-index 851b2f2..a4ec097 100644
+index c862cd4..0d176fe 100644
 --- a/drivers/misc/sgi-xp/xp.h
 +++ b/drivers/misc/sgi-xp/xp.h
-@@ -289,7 +289,7 @@ struct xpc_interface {
+@@ -288,7 +288,7 @@ struct xpc_interface {
  					xpc_notify_func, void *);
  	void (*received) (short, int, void *);
  	enum xp_retval (*partid_to_nasids) (short, void *);
@@ -34739,10 +34272,10 @@ index 8d082b4..aa749ae 100644
  /*
   * Timer function to enforce the timelimit on the partition disengage.
 diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c
-index 6ebdc40..9edf5d8 100644
+index 69ef0be..f3ef91e 100644
 --- a/drivers/mmc/host/sdhci-pci.c
 +++ b/drivers/mmc/host/sdhci-pci.c
-@@ -631,7 +631,7 @@ static const struct sdhci_pci_fixes sdhci_via = {
+@@ -652,7 +652,7 @@ static const struct sdhci_pci_fixes sdhci_via = {
  	.probe		= via_probe,
  };
  
@@ -34752,10 +34285,10 @@ index 6ebdc40..9edf5d8 100644
  		.vendor		= PCI_VENDOR_ID_RICOH,
  		.device		= PCI_DEVICE_ID_RICOH_R5C822,
 diff --git a/drivers/mtd/devices/doc2000.c b/drivers/mtd/devices/doc2000.c
-index 87a431c..4959b43 100644
+index a4eb8b5..8c0628f 100644
 --- a/drivers/mtd/devices/doc2000.c
 +++ b/drivers/mtd/devices/doc2000.c
-@@ -764,7 +764,7 @@ static int doc_write(struct mtd_info *mtd, loff_t to, size_t len,
+@@ -753,7 +753,7 @@ static int doc_write(struct mtd_info *mtd, loff_t to, size_t len,
  
  		/* The ECC will not be calculated correctly if less than 512 is written */
  /* DBB-
@@ -34764,21 +34297,8 @@ index 87a431c..4959b43 100644
  			printk(KERN_WARNING
  			       "ECC needs a full sector write (adr: %lx size %lx)\n",
  			       (long) to, (long) len);
-diff --git a/drivers/mtd/devices/doc2001.c b/drivers/mtd/devices/doc2001.c
-index 9eacf67..4534b5b 100644
---- a/drivers/mtd/devices/doc2001.c
-+++ b/drivers/mtd/devices/doc2001.c
-@@ -384,7 +384,7 @@ static int doc_read (struct mtd_info *mtd, loff_t from, size_t len,
- 	struct Nand *mychip = &this->chips[from >> (this->chipshift)];
- 
- 	/* Don't allow read past end of device */
--	if (from >= this->totlen)
-+	if (from >= this->totlen || !len)
- 		return -EINVAL;
- 
- 	/* Don't allow a single read to cross a 512-byte block boundary */
 diff --git a/drivers/mtd/nand/denali.c b/drivers/mtd/nand/denali.c
-index 3984d48..28aa897 100644
+index a9e57d6..c6d8731 100644
 --- a/drivers/mtd/nand/denali.c
 +++ b/drivers/mtd/nand/denali.c
 @@ -26,6 +26,7 @@
@@ -34802,10 +34322,10 @@ index 51b9d6a..52af9a7 100644
  #include <linux/mtd/nand.h>
  #include <linux/mtd/nftl.h>
 diff --git a/drivers/net/ethernet/atheros/atlx/atl2.c b/drivers/net/ethernet/atheros/atlx/atl2.c
-index 071f4c8..440862e 100644
+index 6762dc4..9956862 100644
 --- a/drivers/net/ethernet/atheros/atlx/atl2.c
 +++ b/drivers/net/ethernet/atheros/atlx/atl2.c
-@@ -2862,7 +2862,7 @@ static void atl2_force_ps(struct atl2_hw *hw)
+@@ -2859,7 +2859,7 @@ static void atl2_force_ps(struct atl2_hw *hw)
   */
  
  #define ATL2_PARAM(X, desc) \
@@ -34815,10 +34335,10 @@ index 071f4c8..440862e 100644
      MODULE_PARM_DESC(X, desc);
  #else
 diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sp.h b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sp.h
-index 66da39f..5dc436d 100644
+index 61a7670..7da6e34 100644
 --- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sp.h
 +++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_sp.h
-@@ -473,7 +473,7 @@ struct bnx2x_rx_mode_obj {
+@@ -483,7 +483,7 @@ struct bnx2x_rx_mode_obj {
  
  	int (*wait_comp)(struct bnx2x *bp,
  			 struct bnx2x_rx_mode_ramrod_params *p);
@@ -34828,7 +34348,7 @@ index 66da39f..5dc436d 100644
  /********************** Set multicast group ***********************************/
  
 diff --git a/drivers/net/ethernet/broadcom/tg3.h b/drivers/net/ethernet/broadcom/tg3.h
-index aea8f72..fcebf75 100644
+index 93865f8..5448741 100644
 --- a/drivers/net/ethernet/broadcom/tg3.h
 +++ b/drivers/net/ethernet/broadcom/tg3.h
 @@ -140,6 +140,7 @@
@@ -34853,10 +34373,10 @@ index c4e8643..0979484 100644
  #define L2T_SKB_CB(skb) ((struct l2t_skb_cb *)(skb)->cb)
  
 diff --git a/drivers/net/ethernet/dec/tulip/de4x5.c b/drivers/net/ethernet/dec/tulip/de4x5.c
-index 4d71f5a..8004440 100644
+index 18b106c..2b38d36 100644
 --- a/drivers/net/ethernet/dec/tulip/de4x5.c
 +++ b/drivers/net/ethernet/dec/tulip/de4x5.c
-@@ -5392,7 +5392,7 @@ de4x5_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
+@@ -5388,7 +5388,7 @@ de4x5_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  	for (i=0; i<ETH_ALEN; i++) {
  	    tmp.addr[i] = dev->dev_addr[i];
  	}
@@ -34865,7 +34385,7 @@ index 4d71f5a..8004440 100644
  	break;
  
      case DE4X5_SET_HWADDR:           /* Set the hardware address */
-@@ -5432,7 +5432,7 @@ de4x5_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
+@@ -5428,7 +5428,7 @@ de4x5_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
  	spin_lock_irqsave(&lp->lock, flags);
  	memcpy(&statbuf, &lp->pktStats, ioc->len);
  	spin_unlock_irqrestore(&lp->lock, flags);
@@ -34875,7 +34395,7 @@ index 4d71f5a..8004440 100644
  	break;
      }
 diff --git a/drivers/net/ethernet/dec/tulip/eeprom.c b/drivers/net/ethernet/dec/tulip/eeprom.c
-index 14d5b61..1398636 100644
+index ed7d1dc..d426748 100644
 --- a/drivers/net/ethernet/dec/tulip/eeprom.c
 +++ b/drivers/net/ethernet/dec/tulip/eeprom.c
 @@ -79,7 +79,7 @@ static struct eeprom_fixup eeprom_fixups[] __devinitdata = {
@@ -34888,7 +34408,7 @@ index 14d5b61..1398636 100644
  	"21140 MII PHY",
  	"21142 Serial PHY",
 diff --git a/drivers/net/ethernet/dec/tulip/winbond-840.c b/drivers/net/ethernet/dec/tulip/winbond-840.c
-index 52da7b2..4ddfe1c 100644
+index 2ac6fff..2d127d0 100644
 --- a/drivers/net/ethernet/dec/tulip/winbond-840.c
 +++ b/drivers/net/ethernet/dec/tulip/winbond-840.c
 @@ -236,7 +236,7 @@ struct pci_id_info {
@@ -34901,7 +34421,7 @@ index 52da7b2..4ddfe1c 100644
  	  "Winbond W89c840",	CanHaveMII | HasBrokenTx | FDXOnNoMII},
  	{ "Winbond W89c840",	CanHaveMII | HasBrokenTx},
 diff --git a/drivers/net/ethernet/dlink/sundance.c b/drivers/net/ethernet/dlink/sundance.c
-index 28a3a9b..d96cb63 100644
+index d783f4f..97fa1b0 100644
 --- a/drivers/net/ethernet/dlink/sundance.c
 +++ b/drivers/net/ethernet/dlink/sundance.c
 @@ -218,7 +218,7 @@ enum {
@@ -34914,10 +34434,10 @@ index 28a3a9b..d96cb63 100644
  	{"D-Link DFE-550FX 100Mbps Fiber-optics Adapter"},
  	{"D-Link DFE-580TX 4 port Server Adapter"},
 diff --git a/drivers/net/ethernet/emulex/benet/be_main.c b/drivers/net/ethernet/emulex/benet/be_main.c
-index e703d64..d62ecf9 100644
+index 528a886..e6a98a3 100644
 --- a/drivers/net/ethernet/emulex/benet/be_main.c
 +++ b/drivers/net/ethernet/emulex/benet/be_main.c
-@@ -402,7 +402,7 @@ static void accumulate_16bit_val(u32 *acc, u16 val)
+@@ -403,7 +403,7 @@ static void accumulate_16bit_val(u32 *acc, u16 val)
  
  	if (wrapped)
  		newacc += 65536;
@@ -34927,7 +34447,7 @@ index e703d64..d62ecf9 100644
  
  void be_parse_stats(struct be_adapter *adapter)
 diff --git a/drivers/net/ethernet/faraday/ftgmac100.c b/drivers/net/ethernet/faraday/ftgmac100.c
-index 47f85c3..82ab6c4 100644
+index 16b0704..d2c07d7 100644
 --- a/drivers/net/ethernet/faraday/ftgmac100.c
 +++ b/drivers/net/ethernet/faraday/ftgmac100.c
 @@ -31,6 +31,8 @@
@@ -34940,7 +34460,7 @@ index 47f85c3..82ab6c4 100644
  
  #include "ftgmac100.h"
 diff --git a/drivers/net/ethernet/faraday/ftmac100.c b/drivers/net/ethernet/faraday/ftmac100.c
-index bb336a0..4b472da 100644
+index 829b109..4ae5f6a 100644
 --- a/drivers/net/ethernet/faraday/ftmac100.c
 +++ b/drivers/net/ethernet/faraday/ftmac100.c
 @@ -31,6 +31,8 @@
@@ -34953,7 +34473,7 @@ index bb336a0..4b472da 100644
  #include "ftmac100.h"
  
 diff --git a/drivers/net/ethernet/fealnx.c b/drivers/net/ethernet/fealnx.c
-index c82d444..0007fb4 100644
+index 1637b98..c42f87b 100644
 --- a/drivers/net/ethernet/fealnx.c
 +++ b/drivers/net/ethernet/fealnx.c
 @@ -150,7 +150,7 @@ struct chip_info {
@@ -34965,45 +34485,19 @@ index c82d444..0007fb4 100644
   	{ "100/10M Ethernet PCI Adapter",	HAS_MII_XCVR },
  	{ "100/10M Ethernet PCI Adapter",	HAS_CHIP_XCVR },
  	{ "1000/100/10M Ethernet PCI Adapter",	HAS_MII_XCVR },
-diff --git a/drivers/net/ethernet/intel/e1000e/80003es2lan.c b/drivers/net/ethernet/intel/e1000e/80003es2lan.c
-index e1159e5..e18684d 100644
---- a/drivers/net/ethernet/intel/e1000e/80003es2lan.c
-+++ b/drivers/net/ethernet/intel/e1000e/80003es2lan.c
-@@ -205,7 +205,7 @@ static s32 e1000_init_mac_params_80003es2lan(struct e1000_adapter *adapter)
- {
- 	struct e1000_hw *hw = &adapter->hw;
- 	struct e1000_mac_info *mac = &hw->mac;
--	struct e1000_mac_operations *func = &mac->ops;
-+	e1000_mac_operations_no_const *func = &mac->ops;
- 
- 	/* Set media type */
- 	switch (adapter->pdev->device) {
-diff --git a/drivers/net/ethernet/intel/e1000e/82571.c b/drivers/net/ethernet/intel/e1000e/82571.c
-index a3e65fd..f451444 100644
---- a/drivers/net/ethernet/intel/e1000e/82571.c
-+++ b/drivers/net/ethernet/intel/e1000e/82571.c
-@@ -239,7 +239,7 @@ static s32 e1000_init_mac_params_82571(struct e1000_adapter *adapter)
- {
- 	struct e1000_hw *hw = &adapter->hw;
- 	struct e1000_mac_info *mac = &hw->mac;
--	struct e1000_mac_operations *func = &mac->ops;
-+	e1000_mac_operations_no_const *func = &mac->ops;
- 	u32 swsm = 0;
- 	u32 swsm2 = 0;
- 	bool force_clear_smbi = false;
 diff --git a/drivers/net/ethernet/intel/e1000e/hw.h b/drivers/net/ethernet/intel/e1000e/hw.h
-index 2967039..ca8c40c 100644
+index f82ecf5..7d59ecb 100644
 --- a/drivers/net/ethernet/intel/e1000e/hw.h
 +++ b/drivers/net/ethernet/intel/e1000e/hw.h
-@@ -778,6 +778,7 @@ struct e1000_mac_operations {
- 	void (*write_vfta)(struct e1000_hw *, u32, u32);
+@@ -784,6 +784,7 @@ struct e1000_mac_operations {
+ 	void (*config_collision_dist)(struct e1000_hw *);
  	s32  (*read_mac_addr)(struct e1000_hw *);
  };
 +typedef struct e1000_mac_operations __no_const e1000_mac_operations_no_const;
  
  /*
   * When to use various PHY register access functions:
-@@ -818,6 +819,7 @@ struct e1000_phy_operations {
+@@ -824,6 +825,7 @@ struct e1000_phy_operations {
  	void (*power_up)(struct e1000_hw *);
  	void (*power_down)(struct e1000_hw *);
  };
@@ -35011,7 +34505,7 @@ index 2967039..ca8c40c 100644
  
  /* Function pointers for the NVM. */
  struct e1000_nvm_operations {
-@@ -829,9 +831,10 @@ struct e1000_nvm_operations {
+@@ -836,9 +838,10 @@ struct e1000_nvm_operations {
  	s32  (*validate)(struct e1000_hw *);
  	s32  (*write)(struct e1000_hw *, u16, u16, u16 *);
  };
@@ -35023,7 +34517,7 @@ index 2967039..ca8c40c 100644
  	u8 addr[ETH_ALEN];
  	u8 perm_addr[ETH_ALEN];
  
-@@ -872,7 +875,7 @@ struct e1000_mac_info {
+@@ -879,7 +882,7 @@ struct e1000_mac_info {
  };
  
  struct e1000_phy_info {
@@ -35032,7 +34526,7 @@ index 2967039..ca8c40c 100644
  
  	enum e1000_phy_type type;
  
-@@ -906,7 +909,7 @@ struct e1000_phy_info {
+@@ -913,7 +916,7 @@ struct e1000_phy_info {
  };
  
  struct e1000_nvm_info {
@@ -35147,10 +34641,10 @@ index 57db3c6..aa825fc 100644
  	u32 timeout;
  	u32 usec_delay;
 diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_type.h b/drivers/net/ethernet/intel/ixgbe/ixgbe_type.h
-index 9b95bef..7e254ee 100644
+index 8636e83..ab9bbc3 100644
 --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_type.h
 +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_type.h
-@@ -2708,6 +2708,7 @@ struct ixgbe_eeprom_operations {
+@@ -2710,6 +2710,7 @@ struct ixgbe_eeprom_operations {
  	s32 (*update_checksum)(struct ixgbe_hw *);
  	u16 (*calc_checksum)(struct ixgbe_hw *);
  };
@@ -35158,7 +34652,7 @@ index 9b95bef..7e254ee 100644
  
  struct ixgbe_mac_operations {
  	s32 (*init_hw)(struct ixgbe_hw *);
-@@ -2769,6 +2770,7 @@ struct ixgbe_mac_operations {
+@@ -2773,6 +2774,7 @@ struct ixgbe_mac_operations {
  	/* Manageability interface */
  	s32 (*set_fw_drv_ver)(struct ixgbe_hw *, u8, u8, u8, u8);
  };
@@ -35166,7 +34660,7 @@ index 9b95bef..7e254ee 100644
  
  struct ixgbe_phy_operations {
  	s32 (*identify)(struct ixgbe_hw *);
-@@ -2788,9 +2790,10 @@ struct ixgbe_phy_operations {
+@@ -2792,9 +2794,10 @@ struct ixgbe_phy_operations {
  	s32 (*write_i2c_eeprom)(struct ixgbe_hw *, u8, u8);
  	s32 (*check_overtemp)(struct ixgbe_hw *);
  };
@@ -35178,7 +34672,7 @@ index 9b95bef..7e254ee 100644
  	enum ixgbe_eeprom_type          type;
  	u32                             semaphore_delay;
  	u16                             word_size;
-@@ -2800,7 +2803,7 @@ struct ixgbe_eeprom_info {
+@@ -2804,7 +2807,7 @@ struct ixgbe_eeprom_info {
  
  #define IXGBE_FLAGS_DOUBLE_RESET_REQUIRED	0x01
  struct ixgbe_mac_info {
@@ -35187,7 +34681,7 @@ index 9b95bef..7e254ee 100644
  	enum ixgbe_mac_type             type;
  	u8                              addr[ETH_ALEN];
  	u8                              perm_addr[ETH_ALEN];
-@@ -2828,7 +2831,7 @@ struct ixgbe_mac_info {
+@@ -2832,7 +2835,7 @@ struct ixgbe_mac_info {
  };
  
  struct ixgbe_phy_info {
@@ -35196,7 +34690,7 @@ index 9b95bef..7e254ee 100644
  	struct mdio_if_info		mdio;
  	enum ixgbe_phy_type             type;
  	u32                             id;
-@@ -2856,6 +2859,7 @@ struct ixgbe_mbx_operations {
+@@ -2860,6 +2863,7 @@ struct ixgbe_mbx_operations {
  	s32 (*check_for_ack)(struct ixgbe_hw *, u16);
  	s32 (*check_for_rst)(struct ixgbe_hw *, u16);
  };
@@ -35204,7 +34698,7 @@ index 9b95bef..7e254ee 100644
  
  struct ixgbe_mbx_stats {
  	u32 msgs_tx;
-@@ -2867,7 +2871,7 @@ struct ixgbe_mbx_stats {
+@@ -2871,7 +2875,7 @@ struct ixgbe_mbx_stats {
  };
  
  struct ixgbe_mbx_info {
@@ -35252,7 +34746,7 @@ index 25c951d..cc7cf33 100644
  	u32 timeout;
  	u32 udelay;
 diff --git a/drivers/net/ethernet/mellanox/mlx4/main.c b/drivers/net/ethernet/mellanox/mlx4/main.c
-index 8bf22b6..7f5baaa 100644
+index 8bb05b4..074796f 100644
 --- a/drivers/net/ethernet/mellanox/mlx4/main.c
 +++ b/drivers/net/ethernet/mellanox/mlx4/main.c
 @@ -41,6 +41,7 @@
@@ -35290,10 +34784,10 @@ index 4a518a3..936b334 100644
  #define VXGE_HW_VIRTUAL_PATH_HANDLE(vpath)				\
  		((struct __vxge_hw_vpath_handle *)(vpath)->vpath_handles.next)
 diff --git a/drivers/net/ethernet/realtek/r8169.c b/drivers/net/ethernet/realtek/r8169.c
-index bbacb37..d60887d 100644
+index ce6b44d..74f10c2 100644
 --- a/drivers/net/ethernet/realtek/r8169.c
 +++ b/drivers/net/ethernet/realtek/r8169.c
-@@ -695,17 +695,17 @@ struct rtl8169_private {
+@@ -708,17 +708,17 @@ struct rtl8169_private {
  	struct mdio_ops {
  		void (*write)(void __iomem *, int, int);
  		int (*read)(void __iomem *, int);
@@ -35315,10 +34809,10 @@ index bbacb37..d60887d 100644
  	int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
  	int (*get_settings)(struct net_device *, struct ethtool_cmd *);
 diff --git a/drivers/net/ethernet/sis/sis190.c b/drivers/net/ethernet/sis/sis190.c
-index 5b118cd..858b523 100644
+index a9deda8..5507c31 100644
 --- a/drivers/net/ethernet/sis/sis190.c
 +++ b/drivers/net/ethernet/sis/sis190.c
-@@ -1622,7 +1622,7 @@ static int __devinit sis190_get_mac_addr_from_eeprom(struct pci_dev *pdev,
+@@ -1620,7 +1620,7 @@ static int __devinit sis190_get_mac_addr_from_eeprom(struct pci_dev *pdev,
  static int __devinit sis190_get_mac_addr_from_apc(struct pci_dev *pdev,
  						  struct net_device *dev)
  {
@@ -35343,10 +34837,10 @@ index c07cfe9..81cbf7e 100644
  
  /* To mask all all interrupts.*/
 diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
-index 6ee593a..3f513b1 100644
+index 48d56da..a27e46c 100644
 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
 +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
-@@ -1585,7 +1585,7 @@ static const struct file_operations stmmac_rings_status_fops = {
+@@ -1584,7 +1584,7 @@ static const struct file_operations stmmac_rings_status_fops = {
  	.open = stmmac_sysfs_ring_open,
  	.read = seq_read,
  	.llseek = seq_lseek,
@@ -35355,7 +34849,7 @@ index 6ee593a..3f513b1 100644
  };
  
  static int stmmac_sysfs_dma_cap_read(struct seq_file *seq, void *v)
-@@ -1657,7 +1657,7 @@ static const struct file_operations stmmac_dma_cap_fops = {
+@@ -1656,7 +1656,7 @@ static const struct file_operations stmmac_dma_cap_fops = {
  	.open = stmmac_sysfs_dma_cap_open,
  	.read = seq_read,
  	.llseek = seq_lseek,
@@ -35365,10 +34859,10 @@ index 6ee593a..3f513b1 100644
  
  static int stmmac_init_fs(struct net_device *dev)
 diff --git a/drivers/net/hyperv/hyperv_net.h b/drivers/net/hyperv/hyperv_net.h
-index dec5836..6d4db7d 100644
+index c358245..8c1de63 100644
 --- a/drivers/net/hyperv/hyperv_net.h
 +++ b/drivers/net/hyperv/hyperv_net.h
-@@ -97,7 +97,7 @@ struct rndis_device {
+@@ -98,7 +98,7 @@ struct rndis_device {
  
  	enum rndis_device_state state;
  	bool link_state;
@@ -35378,10 +34872,10 @@ index dec5836..6d4db7d 100644
  	spinlock_t request_lock;
  	struct list_head req_list;
 diff --git a/drivers/net/hyperv/rndis_filter.c b/drivers/net/hyperv/rndis_filter.c
-index 133b7fb..d58c559 100644
+index d6be64b..5d97e3b 100644
 --- a/drivers/net/hyperv/rndis_filter.c
 +++ b/drivers/net/hyperv/rndis_filter.c
-@@ -96,7 +96,7 @@ static struct rndis_request *get_rndis_request(struct rndis_device *dev,
+@@ -97,7 +97,7 @@ static struct rndis_request *get_rndis_request(struct rndis_device *dev,
  	 * template
  	 */
  	set = &rndis_msg->msg.set_req;
@@ -35390,7 +34884,7 @@ index 133b7fb..d58c559 100644
  
  	/* Add to the request list */
  	spin_lock_irqsave(&dev->request_lock, flags);
-@@ -627,7 +627,7 @@ static void rndis_filter_halt_device(struct rndis_device *dev)
+@@ -648,7 +648,7 @@ static void rndis_filter_halt_device(struct rndis_device *dev)
  
  	/* Setup the rndis set */
  	halt = &request->request_msg.msg.halt_req;
@@ -35400,10 +34894,10 @@ index 133b7fb..d58c559 100644
  	/* Ignore return since this msg is optional. */
  	rndis_filter_send_request(dev, request);
 diff --git a/drivers/net/macvtap.c b/drivers/net/macvtap.c
-index 58dc117..f140c77 100644
+index cb8fd50..003ec38 100644
 --- a/drivers/net/macvtap.c
 +++ b/drivers/net/macvtap.c
-@@ -526,6 +526,8 @@ static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from,
+@@ -528,6 +528,8 @@ static int zerocopy_sg_from_iovec(struct sk_buff *skb, const struct iovec *from,
  		}
  		base = (unsigned long)from->iov_base + offset1;
  		size = ((base & ~PAGE_MASK) + len + ~PAGE_MASK) >> PAGE_SHIFT;
@@ -35413,7 +34907,7 @@ index 58dc117..f140c77 100644
  		if ((num_pages != size) ||
  		    (num_pages > MAX_SKB_FRAGS - skb_shinfo(skb)->nr_frags))
 diff --git a/drivers/net/ppp/ppp_generic.c b/drivers/net/ppp/ppp_generic.c
-index 3ed983c..a1bb418 100644
+index 21d7151..8034208 100644
 --- a/drivers/net/ppp/ppp_generic.c
 +++ b/drivers/net/ppp/ppp_generic.c
 @@ -986,7 +986,6 @@ ppp_net_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
@@ -35435,10 +34929,10 @@ index 3ed983c..a1bb418 100644
  		err = 0;
  		break;
 diff --git a/drivers/net/tokenring/abyss.c b/drivers/net/tokenring/abyss.c
-index 515f122..41dd273 100644
+index b715e6b..6d2490f 100644
 --- a/drivers/net/tokenring/abyss.c
 +++ b/drivers/net/tokenring/abyss.c
-@@ -451,10 +451,12 @@ static struct pci_driver abyss_driver = {
+@@ -450,10 +450,12 @@ static struct pci_driver abyss_driver = {
  
  static int __init abyss_init (void)
  {
@@ -35455,10 +34949,10 @@ index 515f122..41dd273 100644
  	return pci_register_driver(&abyss_driver);
  }
 diff --git a/drivers/net/tokenring/madgemc.c b/drivers/net/tokenring/madgemc.c
-index 6153cfd..cf69c1c 100644
+index 28adcdf..ae82f35 100644
 --- a/drivers/net/tokenring/madgemc.c
 +++ b/drivers/net/tokenring/madgemc.c
-@@ -744,9 +744,11 @@ static struct mca_driver madgemc_driver = {
+@@ -742,9 +742,11 @@ static struct mca_driver madgemc_driver = {
  
  static int __init madgemc_init (void)
  {
@@ -35474,10 +34968,10 @@ index 6153cfd..cf69c1c 100644
  	return mca_register_driver (&madgemc_driver);
  }
 diff --git a/drivers/net/tokenring/proteon.c b/drivers/net/tokenring/proteon.c
-index 8d362e6..f91cc52 100644
+index 62d90e4..9d84237 100644
 --- a/drivers/net/tokenring/proteon.c
 +++ b/drivers/net/tokenring/proteon.c
-@@ -353,9 +353,11 @@ static int __init proteon_init(void)
+@@ -352,9 +352,11 @@ static int __init proteon_init(void)
  	struct platform_device *pdev;
  	int i, num = 0, err = 0;
  
@@ -35493,10 +34987,10 @@ index 8d362e6..f91cc52 100644
  	err = platform_driver_register(&proteon_driver);
  	if (err)
 diff --git a/drivers/net/tokenring/skisa.c b/drivers/net/tokenring/skisa.c
-index 46db5c5..37c1536 100644
+index ee11e93..c8f19c7 100644
 --- a/drivers/net/tokenring/skisa.c
 +++ b/drivers/net/tokenring/skisa.c
-@@ -363,9 +363,11 @@ static int __init sk_isa_init(void)
+@@ -362,9 +362,11 @@ static int __init sk_isa_init(void)
  	struct platform_device *pdev;
  	int i, num = 0, err = 0;
  
@@ -35512,7 +35006,7 @@ index 46db5c5..37c1536 100644
  	err = platform_driver_register(&sk_isa_driver);
  	if (err)
 diff --git a/drivers/net/usb/hso.c b/drivers/net/usb/hso.c
-index e1324b4..e1b0041 100644
+index 2d2a688..35f2372 100644
 --- a/drivers/net/usb/hso.c
 +++ b/drivers/net/usb/hso.c
 @@ -71,7 +71,7 @@
@@ -35612,7 +35106,7 @@ index e1324b4..e1b0041 100644
  				    hso_start_serial_device(serial_table[i], GFP_NOIO);
  				hso_kick_transmit(dev2ser(serial_table[i]));
 diff --git a/drivers/net/wireless/ath/ath.h b/drivers/net/wireless/ath/ath.h
-index efc0111..79c8f5b 100644
+index c54b7d37..af1f359 100644
 --- a/drivers/net/wireless/ath/ath.h
 +++ b/drivers/net/wireless/ath/ath.h
 @@ -119,6 +119,7 @@ struct ath_ops {
@@ -35624,7 +35118,7 @@ index efc0111..79c8f5b 100644
  struct ath_common;
  struct ath_bus_ops;
 diff --git a/drivers/net/wireless/ath/ath9k/ar9002_mac.c b/drivers/net/wireless/ath/ath9k/ar9002_mac.c
-index 7b6417b..ab5db98 100644
+index aa2abaf..5f5152d 100644
 --- a/drivers/net/wireless/ath/ath9k/ar9002_mac.c
 +++ b/drivers/net/wireless/ath/ath9k/ar9002_mac.c
 @@ -183,8 +183,8 @@ ar9002_set_txdesc(struct ath_hw *ah, void *ds, struct ath_tx_info *i)
@@ -35707,11 +35201,11 @@ index 7b6417b..ab5db98 100644
  		| set11nRateFlags(i->rates, 2)
  		| set11nRateFlags(i->rates, 3)
 diff --git a/drivers/net/wireless/ath/ath9k/ar9003_mac.c b/drivers/net/wireless/ath/ath9k/ar9003_mac.c
-index 09b8c9d..905339e 100644
+index a66a13b..0ef399e 100644
 --- a/drivers/net/wireless/ath/ath9k/ar9003_mac.c
 +++ b/drivers/net/wireless/ath/ath9k/ar9003_mac.c
-@@ -35,47 +35,47 @@ ar9003_set_txdesc(struct ath_hw *ah, void *ds, struct ath_tx_info *i)
- 	      (i->qcu << AR_TxQcuNum_S) | 0x17;
+@@ -39,47 +39,47 @@ ar9003_set_txdesc(struct ath_hw *ah, void *ds, struct ath_tx_info *i)
+ 	      (i->qcu << AR_TxQcuNum_S) | desc_len;
  
  	checksum += val;
 -	ACCESS_ONCE(ads->info) = val;
@@ -35773,7 +35267,7 @@ index 09b8c9d..905339e 100644
  	}
  
  	ads->ctl20 = 0;
-@@ -84,17 +84,17 @@ ar9003_set_txdesc(struct ath_hw *ah, void *ds, struct ath_tx_info *i)
+@@ -89,17 +89,17 @@ ar9003_set_txdesc(struct ath_hw *ah, void *ds, struct ath_tx_info *i)
  
  	ctl17 = SM(i->keytype, AR_EncrType);
  	if (!i->is_first) {
@@ -35799,7 +35293,7 @@ index 09b8c9d..905339e 100644
  		| (i->flags & ATH9K_TXDESC_VMF ? AR_VirtMoreFrag : 0)
  		| SM(i->txpower, AR_XmitPower)
  		| (i->flags & ATH9K_TXDESC_VEOL ? AR_VEOL : 0)
-@@ -130,22 +130,22 @@ ar9003_set_txdesc(struct ath_hw *ah, void *ds, struct ath_tx_info *i)
+@@ -135,22 +135,22 @@ ar9003_set_txdesc(struct ath_hw *ah, void *ds, struct ath_tx_info *i)
  	val = (i->flags & ATH9K_TXDESC_PAPRD) >> ATH9K_TXDESC_PAPRD_S;
  	ctl12 |= SM(val, AR_PAPRDChainMask);
  
@@ -35829,10 +35323,10 @@ index 09b8c9d..905339e 100644
  
  static u16 ar9003_calc_ptr_chksum(struct ar9003_txc *ads)
 diff --git a/drivers/net/wireless/ath/ath9k/hw.h b/drivers/net/wireless/ath/ath9k/hw.h
-index c8261d4..8d88929 100644
+index e88f182..4e57f5d 100644
 --- a/drivers/net/wireless/ath/ath9k/hw.h
 +++ b/drivers/net/wireless/ath/ath9k/hw.h
-@@ -773,7 +773,7 @@ struct ath_hw_private_ops {
+@@ -614,7 +614,7 @@ struct ath_hw_private_ops {
  
  	/* ANI */
  	void (*ani_cache_ini_regs)(struct ath_hw *ah);
@@ -35841,7 +35335,7 @@ index c8261d4..8d88929 100644
  
  /**
   * struct ath_hw_ops - callbacks used by hardware code and driver code
-@@ -803,7 +803,7 @@ struct ath_hw_ops {
+@@ -644,7 +644,7 @@ struct ath_hw_ops {
  	void (*antdiv_comb_conf_set)(struct ath_hw *ah,
  			struct ath_hw_antcomb_conf *antconf);
  
@@ -35850,7 +35344,7 @@ index c8261d4..8d88929 100644
  
  struct ath_nf_limits {
  	s16 max;
-@@ -823,7 +823,7 @@ enum ath_cal_list {
+@@ -664,7 +664,7 @@ enum ath_cal_list {
  #define AH_FASTCC       0x4
  
  struct ath_hw {
@@ -35873,40 +35367,25 @@ index af00e2c..ab04d34 100644
  struct brcms_phy {
  	struct brcms_phy_pub pubpi_ro;
 diff --git a/drivers/net/wireless/iwlegacy/3945-mac.c b/drivers/net/wireless/iwlegacy/3945-mac.c
-index a2ec369..36fdf14 100644
+index faec404..a5277f1 100644
 --- a/drivers/net/wireless/iwlegacy/3945-mac.c
 +++ b/drivers/net/wireless/iwlegacy/3945-mac.c
-@@ -3646,7 +3646,9 @@ il3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
+@@ -3611,7 +3611,9 @@ il3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
  	 */
  	if (il3945_mod_params.disable_hw_scan) {
  		D_INFO("Disabling hw_scan\n");
--		il3945_hw_ops.hw_scan = NULL;
+-		il3945_mac_ops.hw_scan = NULL;
 +		pax_open_kernel();
-+		*(void **)&il3945_hw_ops.hw_scan = NULL;
++		*(void **)&il3945_mac_ops.hw_scan = NULL;
 +		pax_close_kernel();
  	}
  
  	D_INFO("*** LOAD DRIVER ***\n");
-diff --git a/drivers/net/wireless/iwlwifi/iwl-debug.h b/drivers/net/wireless/iwlwifi/iwl-debug.h
-index f8fc239..8cade22 100644
---- a/drivers/net/wireless/iwlwifi/iwl-debug.h
-+++ b/drivers/net/wireless/iwlwifi/iwl-debug.h
-@@ -86,8 +86,8 @@ do {									\
- } while (0)
- 
- #else
--#define IWL_DEBUG(m, level, fmt, args...)
--#define IWL_DEBUG_LIMIT(m, level, fmt, args...)
-+#define IWL_DEBUG(m, level, fmt, args...) do {} while (0)
-+#define IWL_DEBUG_LIMIT(m, level, fmt, args...) do {} while (0)
- #define iwl_print_hex_dump(m, level, p, len)
- #define IWL_DEBUG_QUIET_RFKILL(p, fmt, args...)	\
- do {							\
 diff --git a/drivers/net/wireless/mac80211_hwsim.c b/drivers/net/wireless/mac80211_hwsim.c
-index 4b9e730..7603659 100644
+index b7ce6a6..5649756 100644
 --- a/drivers/net/wireless/mac80211_hwsim.c
 +++ b/drivers/net/wireless/mac80211_hwsim.c
-@@ -1677,9 +1677,11 @@ static int __init init_mac80211_hwsim(void)
+@@ -1721,9 +1721,11 @@ static int __init init_mac80211_hwsim(void)
  		return -EINVAL;
  
  	if (fake_hw_scan) {
@@ -35922,10 +35401,10 @@ index 4b9e730..7603659 100644
  
  	spin_lock_init(&hwsim_radio_lock);
 diff --git a/drivers/net/wireless/mwifiex/main.h b/drivers/net/wireless/mwifiex/main.h
-index 3186aa4..b35b09f 100644
+index 35225e9..95e6bf9 100644
 --- a/drivers/net/wireless/mwifiex/main.h
 +++ b/drivers/net/wireless/mwifiex/main.h
-@@ -536,7 +536,7 @@ struct mwifiex_if_ops {
+@@ -537,7 +537,7 @@ struct mwifiex_if_ops {
  	void (*cleanup_mpa_buf) (struct mwifiex_adapter *);
  	int (*cmdrsp_complete) (struct mwifiex_adapter *, struct sk_buff *);
  	int (*event_complete) (struct mwifiex_adapter *, struct sk_buff *);
@@ -35935,7 +35414,7 @@ index 3186aa4..b35b09f 100644
  struct mwifiex_adapter {
  	u8 iface_type;
 diff --git a/drivers/net/wireless/rndis_wlan.c b/drivers/net/wireless/rndis_wlan.c
-index a330c69..a81540f 100644
+index d66e298..55b0a89 100644
 --- a/drivers/net/wireless/rndis_wlan.c
 +++ b/drivers/net/wireless/rndis_wlan.c
 @@ -1278,7 +1278,7 @@ static int set_rts_threshold(struct usbnet *usbdev, u32 rts_threshold)
@@ -35948,7 +35427,7 @@ index a330c69..a81540f 100644
  
  	tmp = cpu_to_le32(rts_threshold);
 diff --git a/drivers/net/wireless/wl1251/wl1251.h b/drivers/net/wireless/wl1251/wl1251.h
-index a77f1bb..c608b2b 100644
+index 9d8f581..0f6589e 100644
 --- a/drivers/net/wireless/wl1251/wl1251.h
 +++ b/drivers/net/wireless/wl1251/wl1251.h
 @@ -266,7 +266,7 @@ struct wl1251_if_operations {
@@ -36068,10 +35547,10 @@ index 38b6fc0..b5cbfce 100644
  
  extern struct oprofile_stat_struct oprofile_stats;
 diff --git a/drivers/oprofile/oprofilefs.c b/drivers/oprofile/oprofilefs.c
-index 2f0aa0f..90fab02 100644
+index 849357c..b83c1e0 100644
 --- a/drivers/oprofile/oprofilefs.c
 +++ b/drivers/oprofile/oprofilefs.c
-@@ -193,7 +193,7 @@ static const struct file_operations atomic_ro_fops = {
+@@ -185,7 +185,7 @@ static const struct file_operations atomic_ro_fops = {
  
  
  int oprofilefs_create_ro_atomic(struct super_block *sb, struct dentry *root,
@@ -36134,7 +35613,7 @@ index 76ba8a1..20ca857 100644
  
  	/* initialize our int15 lock */
 diff --git a/drivers/pci/pcie/aspm.c b/drivers/pci/pcie/aspm.c
-index 2275162..95f1a92 100644
+index b500840..d7159d3 100644
 --- a/drivers/pci/pcie/aspm.c
 +++ b/drivers/pci/pcie/aspm.c
 @@ -27,9 +27,9 @@
@@ -36151,12 +35630,12 @@ index 2275162..95f1a92 100644
  #define ASPM_STATE_ALL		(ASPM_STATE_L0S | ASPM_STATE_L1)
  
 diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c
-index 71eac9c..2de27ef 100644
+index 5e1ca3c..08082fe 100644
 --- a/drivers/pci/probe.c
 +++ b/drivers/pci/probe.c
-@@ -136,7 +136,7 @@ int __pci_read_base(struct pci_dev *dev, enum pci_bar_type type,
- 	u32 l, sz, mask;
+@@ -215,7 +215,7 @@ int __pci_read_base(struct pci_dev *dev, enum pci_bar_type type,
  	u16 orig_cmd;
+ 	struct pci_bus_region region;
  
 -	mask = type ? PCI_ROM_ADDRESS_MASK : ~0;
 +	mask = type ? (u32)PCI_ROM_ADDRESS_MASK : ~0;
@@ -36185,7 +35664,7 @@ index 27911b5..5b6db88 100644
  		    &proc_bus_pci_dev_operations);
  	proc_initialized = 1;
 diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c
-index ea0c607..58c4628 100644
+index d68c000..f6094ca 100644
 --- a/drivers/platform/x86/thinkpad_acpi.c
 +++ b/drivers/platform/x86/thinkpad_acpi.c
 @@ -2094,7 +2094,7 @@ static int hotkey_mask_get(void)
@@ -36317,10 +35796,10 @@ index ea0c607..58c4628 100644
  /*
   * Polling driver
 diff --git a/drivers/pnp/pnpbios/bioscalls.c b/drivers/pnp/pnpbios/bioscalls.c
-index b859d16..5cc6b1a 100644
+index 769d265..a3a05ca 100644
 --- a/drivers/pnp/pnpbios/bioscalls.c
 +++ b/drivers/pnp/pnpbios/bioscalls.c
-@@ -59,7 +59,7 @@ do { \
+@@ -58,7 +58,7 @@ do { \
  	set_desc_limit(&gdt[(selname) >> 3], (size) - 1); \
  } while(0)
  
@@ -36329,7 +35808,7 @@ index b859d16..5cc6b1a 100644
  			(unsigned long)__va(0x400UL), PAGE_SIZE - 0x400 - 1);
  
  /*
-@@ -96,7 +96,10 @@ static inline u16 call_pnp_bios(u16 func, u16 arg1, u16 arg2, u16 arg3,
+@@ -95,7 +95,10 @@ static inline u16 call_pnp_bios(u16 func, u16 arg1, u16 arg2, u16 arg3,
  
  	cpu = get_cpu();
  	save_desc_40 = get_cpu_gdt_table(cpu)[0x40 / 8];
@@ -36340,7 +35819,7 @@ index b859d16..5cc6b1a 100644
  
  	/* On some boxes IRQ's during PnP BIOS calls are deadly.  */
  	spin_lock_irqsave(&pnp_bios_lock, flags);
-@@ -134,7 +137,10 @@ static inline u16 call_pnp_bios(u16 func, u16 arg1, u16 arg2, u16 arg3,
+@@ -133,7 +136,10 @@ static inline u16 call_pnp_bios(u16 func, u16 arg1, u16 arg2, u16 arg3,
  			     :"memory");
  	spin_unlock_irqrestore(&pnp_bios_lock, flags);
  
@@ -36351,7 +35830,7 @@ index b859d16..5cc6b1a 100644
  	put_cpu();
  
  	/* If we get here and this is set then the PnP BIOS faulted on us. */
-@@ -468,7 +474,7 @@ int pnp_bios_read_escd(char *data, u32 nvram_base)
+@@ -467,7 +473,7 @@ int pnp_bios_read_escd(char *data, u32 nvram_base)
  	return status;
  }
  
@@ -36360,7 +35839,7 @@ index b859d16..5cc6b1a 100644
  {
  	int i;
  
-@@ -476,6 +482,8 @@ void pnpbios_calls_init(union pnp_bios_install_struct *header)
+@@ -475,6 +481,8 @@ void pnpbios_calls_init(union pnp_bios_install_struct *header)
  	pnp_bios_callpoint.offset = header->fields.pm16offset;
  	pnp_bios_callpoint.segment = PNP_CS16;
  
@@ -36369,7 +35848,7 @@ index b859d16..5cc6b1a 100644
  	for_each_possible_cpu(i) {
  		struct desc_struct *gdt = get_cpu_gdt_table(i);
  		if (!gdt)
-@@ -487,4 +495,6 @@ void pnpbios_calls_init(union pnp_bios_install_struct *header)
+@@ -486,4 +494,6 @@ void pnpbios_calls_init(union pnp_bios_install_struct *header)
  		set_desc_base(&gdt[GDT_ENTRY_PNPBIOS_DS],
  			 (unsigned long)__va(header->fields.pm16dseg));
  	}
@@ -36399,7 +35878,7 @@ index b0ecacb..7c9da2e 100644
  
  	/* check if the resource is reserved */
 diff --git a/drivers/power/bq27x00_battery.c b/drivers/power/bq27x00_battery.c
-index 1ed6ea0..77c0bd2 100644
+index 222ccd8..6275fa5 100644
 --- a/drivers/power/bq27x00_battery.c
 +++ b/drivers/power/bq27x00_battery.c
 @@ -72,7 +72,7 @@
@@ -36412,10 +35891,10 @@ index 1ed6ea0..77c0bd2 100644
  enum bq27x00_chip { BQ27000, BQ27500 };
  
 diff --git a/drivers/regulator/max8660.c b/drivers/regulator/max8660.c
-index a838e66..a9e1665 100644
+index 4c5b053..104263e 100644
 --- a/drivers/regulator/max8660.c
 +++ b/drivers/regulator/max8660.c
-@@ -383,8 +383,10 @@ static int __devinit max8660_probe(struct i2c_client *client,
+@@ -385,8 +385,10 @@ static int __devinit max8660_probe(struct i2c_client *client,
  		max8660->shadow_regs[MAX8660_OVER1] = 5;
  	} else {
  		/* Otherwise devices can be toggled via software */
@@ -36429,7 +35908,7 @@ index a838e66..a9e1665 100644
  
  	/*
 diff --git a/drivers/regulator/mc13892-regulator.c b/drivers/regulator/mc13892-regulator.c
-index e8cfc99..072aee2 100644
+index 845aa22..99ec402 100644
 --- a/drivers/regulator/mc13892-regulator.c
 +++ b/drivers/regulator/mc13892-regulator.c
 @@ -574,10 +574,12 @@ static int __devinit mc13892_regulator_probe(struct platform_device *pdev)
@@ -36469,7 +35948,7 @@ index cace6d3..f623fda 100644
  
  	case RTC_PIE_ON:
 diff --git a/drivers/scsi/aacraid/aacraid.h b/drivers/scsi/aacraid/aacraid.h
-index ffb5878..e6d785c 100644
+index 3fcf627..f334910 100644
 --- a/drivers/scsi/aacraid/aacraid.h
 +++ b/drivers/scsi/aacraid/aacraid.h
 @@ -492,7 +492,7 @@ struct adapter_ops
@@ -36482,7 +35961,7 @@ index ffb5878..e6d785c 100644
  /*
   *	Define which interrupt handler needs to be installed
 diff --git a/drivers/scsi/aacraid/linit.c b/drivers/scsi/aacraid/linit.c
-index 705e13e..91c873c 100644
+index 0d279c44..3d25a97 100644
 --- a/drivers/scsi/aacraid/linit.c
 +++ b/drivers/scsi/aacraid/linit.c
 @@ -93,7 +93,7 @@ static DECLARE_PCI_DEVICE_TABLE(aac_pci_tbl) = {
@@ -36495,11 +35974,11 @@ index 705e13e..91c873c 100644
  	{ 0x1028, 0x0001, 0x1028, 0x0001, 0, 0, 0 }, /* PERC 2/Si (Iguana/PERC2Si) */
  	{ 0x1028, 0x0002, 0x1028, 0x0002, 0, 0, 1 }, /* PERC 3/Di (Opal/PERC3Di) */
 diff --git a/drivers/scsi/aic94xx/aic94xx_init.c b/drivers/scsi/aic94xx/aic94xx_init.c
-index d5ff142..49c0ebb 100644
+index ff80552..1c4120c 100644
 --- a/drivers/scsi/aic94xx/aic94xx_init.c
 +++ b/drivers/scsi/aic94xx/aic94xx_init.c
 @@ -1012,7 +1012,7 @@ static struct sas_domain_function_template aic94xx_transport_functions = {
- 	.lldd_control_phy	= asd_control_phy,
+ 	.lldd_ata_set_dmamode	= asd_set_dmamode,
  };
  
 -static const struct pci_device_id aic94xx_pci_table[] __devinitdata = {
@@ -36508,7 +35987,7 @@ index d5ff142..49c0ebb 100644
  	{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, 0x412),0, 0, 1},
  	{PCI_DEVICE(PCI_VENDOR_ID_ADAPTEC2, 0x416),0, 0, 1},
 diff --git a/drivers/scsi/bfa/bfa.h b/drivers/scsi/bfa/bfa.h
-index a796de9..1ef20e1 100644
+index 4ad7e36..d004679 100644
 --- a/drivers/scsi/bfa/bfa.h
 +++ b/drivers/scsi/bfa/bfa.h
 @@ -196,7 +196,7 @@ struct bfa_hwif_s {
@@ -36564,7 +36043,7 @@ index 36f26da..38a34a8 100644
  	int			num_fwtio_reqs;
  	int			num_itns;
 diff --git a/drivers/scsi/bfa/bfa_ioc.h b/drivers/scsi/bfa/bfa_ioc.h
-index 546d46b..642fa5b 100644
+index 1a99d4b..e85d64b 100644
 --- a/drivers/scsi/bfa/bfa_ioc.h
 +++ b/drivers/scsi/bfa/bfa_ioc.h
 @@ -258,7 +258,7 @@ struct bfa_ioc_cbfn_s {
@@ -36586,7 +36065,7 @@ index 546d46b..642fa5b 100644
  /*
   * Queue element to wait for room in request queue. FIFO order is
 diff --git a/drivers/scsi/hosts.c b/drivers/scsi/hosts.c
-index 351dc0b..951dc32 100644
+index a3a056a..b9bbc2f 100644
 --- a/drivers/scsi/hosts.c
 +++ b/drivers/scsi/hosts.c
 @@ -42,7 +42,7 @@
@@ -36598,7 +36077,7 @@ index 351dc0b..951dc32 100644
  
  
  static void scsi_host_cls_release(struct device *dev)
-@@ -357,7 +357,7 @@ struct Scsi_Host *scsi_host_alloc(struct scsi_host_template *sht, int privsize)
+@@ -360,7 +360,7 @@ struct Scsi_Host *scsi_host_alloc(struct scsi_host_template *sht, int privsize)
  	 * subtract one because we increment first then return, but we need to
  	 * know what the next host number was before increment
  	 */
@@ -36608,10 +36087,10 @@ index 351dc0b..951dc32 100644
  
  	/* These three are default values which can be overridden */
 diff --git a/drivers/scsi/hpsa.c b/drivers/scsi/hpsa.c
-index e640b73..2f68432 100644
+index 500e20d..ebd3059 100644
 --- a/drivers/scsi/hpsa.c
 +++ b/drivers/scsi/hpsa.c
-@@ -507,7 +507,7 @@ static inline u32 next_command(struct ctlr_info *h)
+@@ -521,7 +521,7 @@ static inline u32 next_command(struct ctlr_info *h)
  	u32 a;
  
  	if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
@@ -36620,7 +36099,7 @@ index e640b73..2f68432 100644
  
  	if ((*(h->reply_pool_head) & 1) == (h->reply_pool_wraparound)) {
  		a = *(h->reply_pool_head); /* Next cmd in ring buffer */
-@@ -2987,7 +2987,7 @@ static void start_io(struct ctlr_info *h)
+@@ -3002,7 +3002,7 @@ static void start_io(struct ctlr_info *h)
  	while (!list_empty(&h->reqQ)) {
  		c = list_entry(h->reqQ.next, struct CommandList, list);
  		/* can't do anything if fifo is full */
@@ -36629,7 +36108,7 @@ index e640b73..2f68432 100644
  			dev_warn(&h->pdev->dev, "fifo full\n");
  			break;
  		}
-@@ -2997,7 +2997,7 @@ static void start_io(struct ctlr_info *h)
+@@ -3012,7 +3012,7 @@ static void start_io(struct ctlr_info *h)
  		h->Qdepth--;
  
  		/* Tell the controller execute command */
@@ -36638,7 +36117,7 @@ index e640b73..2f68432 100644
  
  		/* Put job onto the completed Q */
  		addQ(&h->cmpQ, c);
-@@ -3006,17 +3006,17 @@ static void start_io(struct ctlr_info *h)
+@@ -3021,17 +3021,17 @@ static void start_io(struct ctlr_info *h)
  
  static inline unsigned long get_next_completion(struct ctlr_info *h)
  {
@@ -36659,7 +36138,7 @@ index e640b73..2f68432 100644
  		(h->interrupts_enabled == 0);
  }
  
-@@ -3915,7 +3915,7 @@ static int __devinit hpsa_pci_init(struct ctlr_info *h)
+@@ -3930,7 +3930,7 @@ static int __devinit hpsa_pci_init(struct ctlr_info *h)
  	if (prod_index < 0)
  		return -ENODEV;
  	h->product_name = products[prod_index].product_name;
@@ -36668,7 +36147,7 @@ index e640b73..2f68432 100644
  
  	if (hpsa_board_disabled(h->pdev)) {
  		dev_warn(&h->pdev->dev, "controller appears to be disabled\n");
-@@ -4160,7 +4160,7 @@ static void controller_lockup_detected(struct ctlr_info *h)
+@@ -4175,7 +4175,7 @@ static void controller_lockup_detected(struct ctlr_info *h)
  
  	assert_spin_locked(&lockup_detector_lock);
  	remove_ctlr_from_lockup_detector_list(h);
@@ -36677,7 +36156,7 @@ index e640b73..2f68432 100644
  	spin_lock_irqsave(&h->lock, flags);
  	h->lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
  	spin_unlock_irqrestore(&h->lock, flags);
-@@ -4340,7 +4340,7 @@ reinit_after_soft_reset:
+@@ -4355,7 +4355,7 @@ reinit_after_soft_reset:
  	}
  
  	/* make sure the board interrupts are off */
@@ -36686,7 +36165,7 @@ index e640b73..2f68432 100644
  
  	if (hpsa_request_irq(h, do_hpsa_intr_msi, do_hpsa_intr_intx))
  		goto clean2;
-@@ -4374,7 +4374,7 @@ reinit_after_soft_reset:
+@@ -4389,7 +4389,7 @@ reinit_after_soft_reset:
  		 * fake ones to scoop up any residual completions.
  		 */
  		spin_lock_irqsave(&h->lock, flags);
@@ -36695,7 +36174,7 @@ index e640b73..2f68432 100644
  		spin_unlock_irqrestore(&h->lock, flags);
  		free_irq(h->intr[h->intr_mode], h);
  		rc = hpsa_request_irq(h, hpsa_msix_discard_completions,
-@@ -4393,9 +4393,9 @@ reinit_after_soft_reset:
+@@ -4408,9 +4408,9 @@ reinit_after_soft_reset:
  		dev_info(&h->pdev->dev, "Board READY.\n");
  		dev_info(&h->pdev->dev,
  			"Waiting for stale completions to drain.\n");
@@ -36707,7 +36186,7 @@ index e640b73..2f68432 100644
  
  		rc = controller_reset_failed(h->cfgtable);
  		if (rc)
-@@ -4416,7 +4416,7 @@ reinit_after_soft_reset:
+@@ -4431,7 +4431,7 @@ reinit_after_soft_reset:
  	}
  
  	/* Turn the interrupts on so we can service requests */
@@ -36716,7 +36195,7 @@ index e640b73..2f68432 100644
  
  	hpsa_hba_inquiry(h);
  	hpsa_register_scsi(h);	/* hook ourselves into SCSI subsystem */
-@@ -4468,7 +4468,7 @@ static void hpsa_shutdown(struct pci_dev *pdev)
+@@ -4483,7 +4483,7 @@ static void hpsa_shutdown(struct pci_dev *pdev)
  	 * To write all data in the battery backed cache to disks
  	 */
  	hpsa_flush_cache(h);
@@ -36725,7 +36204,7 @@ index e640b73..2f68432 100644
  	free_irq(h->intr[h->intr_mode], h);
  #ifdef CONFIG_PCI_MSI
  	if (h->msix_vector)
-@@ -4632,7 +4632,7 @@ static __devinit void hpsa_enter_performant_mode(struct ctlr_info *h,
+@@ -4657,7 +4657,7 @@ static __devinit void hpsa_enter_performant_mode(struct ctlr_info *h,
  		return;
  	}
  	/* Change the access methods to the performant access methods */
@@ -36735,10 +36214,10 @@ index e640b73..2f68432 100644
  }
  
 diff --git a/drivers/scsi/hpsa.h b/drivers/scsi/hpsa.h
-index 91edafb..a9b88ec 100644
+index 7b28d54..952f23a 100644
 --- a/drivers/scsi/hpsa.h
 +++ b/drivers/scsi/hpsa.h
-@@ -73,7 +73,7 @@ struct ctlr_info {
+@@ -72,7 +72,7 @@ struct ctlr_info {
  	unsigned int msix_vector;
  	unsigned int msi_vector;
  	int intr_mode; /* either PERF_MODE_INT or SIMPLE_MODE_INT */
@@ -36761,7 +36240,7 @@ index f2df059..a3a9930 100644
  typedef struct ips_ha {
     uint8_t            ha_id[IPS_MAX_CHANNELS+1];
 diff --git a/drivers/scsi/libfc/fc_exch.c b/drivers/scsi/libfc/fc_exch.c
-index 4d70d96..84d0573 100644
+index aceffad..c35c08d 100644
 --- a/drivers/scsi/libfc/fc_exch.c
 +++ b/drivers/scsi/libfc/fc_exch.c
 @@ -105,12 +105,12 @@ struct fc_exch_mgr {
@@ -36886,10 +36365,10 @@ index 4d70d96..84d0573 100644
  	fc_frame_free(fp);
  }
 diff --git a/drivers/scsi/libsas/sas_ata.c b/drivers/scsi/libsas/sas_ata.c
-index db9238f..4378ed2 100644
+index 441d88a..689ad71 100644
 --- a/drivers/scsi/libsas/sas_ata.c
 +++ b/drivers/scsi/libsas/sas_ata.c
-@@ -368,7 +368,7 @@ static struct ata_port_operations sas_sata_ops = {
+@@ -529,7 +529,7 @@ static struct ata_port_operations sas_sata_ops = {
  	.postreset		= ata_std_postreset,
  	.error_handler		= ata_std_error_handler,
  	.post_internal_cmd	= sas_ata_post_internal,
@@ -36899,7 +36378,7 @@ index db9238f..4378ed2 100644
  	.qc_issue		= sas_ata_qc_issue,
  	.qc_fill_rtf		= sas_ata_qc_fill_rtf,
 diff --git a/drivers/scsi/lpfc/lpfc.h b/drivers/scsi/lpfc/lpfc.h
-index 825f930..ce42672 100644
+index 3a1ffdd..8eb7c71 100644
 --- a/drivers/scsi/lpfc/lpfc.h
 +++ b/drivers/scsi/lpfc/lpfc.h
 @@ -413,7 +413,7 @@ struct lpfc_vport {
@@ -36911,7 +36390,7 @@ index 825f930..ce42672 100644
  #endif
  	uint8_t stat_data_enabled;
  	uint8_t stat_data_blocked;
-@@ -821,8 +821,8 @@ struct lpfc_hba {
+@@ -826,8 +826,8 @@ struct lpfc_hba {
  	struct timer_list fabric_block_timer;
  	unsigned long bit_flags;
  #define	FABRIC_COMANDS_BLOCKED	0
@@ -36922,7 +36401,7 @@ index 825f930..ce42672 100644
  	unsigned long last_rsrc_error_time;
  	unsigned long last_ramp_down_time;
  	unsigned long last_ramp_up_time;
-@@ -852,7 +852,7 @@ struct lpfc_hba {
+@@ -863,7 +863,7 @@ struct lpfc_hba {
  
  	struct dentry *debug_slow_ring_trc;
  	struct lpfc_debugfs_trc *slow_ring_trc;
@@ -36932,7 +36411,7 @@ index 825f930..ce42672 100644
  	struct dentry *idiag_root;
  	struct dentry *idiag_pci_cfg;
 diff --git a/drivers/scsi/lpfc/lpfc_debugfs.c b/drivers/scsi/lpfc/lpfc_debugfs.c
-index 3587a3f..d45b81b 100644
+index af04b0d..8f1a97e 100644
 --- a/drivers/scsi/lpfc/lpfc_debugfs.c
 +++ b/drivers/scsi/lpfc/lpfc_debugfs.c
 @@ -106,7 +106,7 @@ MODULE_PARM_DESC(lpfc_debugfs_mask_disc_trc,
@@ -36996,7 +36475,7 @@ index 3587a3f..d45b81b 100644
  	dtp->jif = jiffies;
  #endif
  	return;
-@@ -4040,7 +4040,7 @@ lpfc_debugfs_initialize(struct lpfc_vport *vport)
+@@ -4090,7 +4090,7 @@ lpfc_debugfs_initialize(struct lpfc_vport *vport)
  						 "slow_ring buffer\n");
  				goto debug_failed;
  			}
@@ -37005,7 +36484,7 @@ index 3587a3f..d45b81b 100644
  			memset(phba->slow_ring_trc, 0,
  				(sizeof(struct lpfc_debugfs_trc) *
  				lpfc_debugfs_max_slow_ring_trc));
-@@ -4086,7 +4086,7 @@ lpfc_debugfs_initialize(struct lpfc_vport *vport)
+@@ -4136,7 +4136,7 @@ lpfc_debugfs_initialize(struct lpfc_vport *vport)
  				 "buffer\n");
  		goto debug_failed;
  	}
@@ -37015,11 +36494,11 @@ index 3587a3f..d45b81b 100644
  	snprintf(name, sizeof(name), "discovery_trace");
  	vport->debug_disc_trc =
 diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c
-index dfea2da..8e17227 100644
+index 9598fdc..7e9f3d9 100644
 --- a/drivers/scsi/lpfc/lpfc_init.c
 +++ b/drivers/scsi/lpfc/lpfc_init.c
-@@ -10145,8 +10145,10 @@ lpfc_init(void)
- 	printk(LPFC_COPYRIGHT "\n");
+@@ -10266,8 +10266,10 @@ lpfc_init(void)
+ 			"misc_register returned with status %d", error);
  
  	if (lpfc_enable_npiv) {
 -		lpfc_transport_functions.vport_create = lpfc_vport_create;
@@ -37032,10 +36511,10 @@ index dfea2da..8e17227 100644
  	lpfc_transport_template =
  				fc_attach_transport(&lpfc_transport_functions);
 diff --git a/drivers/scsi/lpfc/lpfc_scsi.c b/drivers/scsi/lpfc/lpfc_scsi.c
-index c60f5d0..751535c 100644
+index 88f3a83..686d3fa 100644
 --- a/drivers/scsi/lpfc/lpfc_scsi.c
 +++ b/drivers/scsi/lpfc/lpfc_scsi.c
-@@ -305,7 +305,7 @@ lpfc_rampdown_queue_depth(struct lpfc_hba *phba)
+@@ -311,7 +311,7 @@ lpfc_rampdown_queue_depth(struct lpfc_hba *phba)
  	uint32_t evt_posted;
  
  	spin_lock_irqsave(&phba->hbalock, flags);
@@ -37044,7 +36523,7 @@ index c60f5d0..751535c 100644
  	phba->last_rsrc_error_time = jiffies;
  
  	if ((phba->last_ramp_down_time + QUEUE_RAMP_DOWN_INTERVAL) > jiffies) {
-@@ -346,7 +346,7 @@ lpfc_rampup_queue_depth(struct lpfc_vport  *vport,
+@@ -352,7 +352,7 @@ lpfc_rampup_queue_depth(struct lpfc_vport  *vport,
  	unsigned long flags;
  	struct lpfc_hba *phba = vport->phba;
  	uint32_t evt_posted;
@@ -37053,7 +36532,7 @@ index c60f5d0..751535c 100644
  
  	if (vport->cfg_lun_queue_depth <= queue_depth)
  		return;
-@@ -390,8 +390,8 @@ lpfc_ramp_down_queue_handler(struct lpfc_hba *phba)
+@@ -396,8 +396,8 @@ lpfc_ramp_down_queue_handler(struct lpfc_hba *phba)
  	unsigned long num_rsrc_err, num_cmd_success;
  	int i;
  
@@ -37064,7 +36543,7 @@ index c60f5d0..751535c 100644
  
  	vports = lpfc_create_vport_work_array(phba);
  	if (vports != NULL)
-@@ -411,8 +411,8 @@ lpfc_ramp_down_queue_handler(struct lpfc_hba *phba)
+@@ -417,8 +417,8 @@ lpfc_ramp_down_queue_handler(struct lpfc_hba *phba)
  			}
  		}
  	lpfc_destroy_vport_work_array(phba, vports);
@@ -37075,7 +36554,7 @@ index c60f5d0..751535c 100644
  }
  
  /**
-@@ -446,8 +446,8 @@ lpfc_ramp_up_queue_handler(struct lpfc_hba *phba)
+@@ -452,8 +452,8 @@ lpfc_ramp_up_queue_handler(struct lpfc_hba *phba)
  			}
  		}
  	lpfc_destroy_vport_work_array(phba, vports);
@@ -37161,7 +36640,7 @@ index ea8a0b4..812a124 100644
  	return rc;
  
 diff --git a/drivers/scsi/pmcraid.h b/drivers/scsi/pmcraid.h
-index ca496c7..9c791d5 100644
+index e1d150f..6c6df44 100644
 --- a/drivers/scsi/pmcraid.h
 +++ b/drivers/scsi/pmcraid.h
 @@ -748,7 +748,7 @@ struct pmcraid_instance {
@@ -37194,10 +36673,10 @@ index ca496c7..9c791d5 100644
  	/* To indicate add/delete/modify during CCN */
  	u8 change_detected;
 diff --git a/drivers/scsi/qla2xxx/qla_def.h b/drivers/scsi/qla2xxx/qla_def.h
-index af1003f..be55a75 100644
+index a244303..6015eb7 100644
 --- a/drivers/scsi/qla2xxx/qla_def.h
 +++ b/drivers/scsi/qla2xxx/qla_def.h
-@@ -2247,7 +2247,7 @@ struct isp_operations {
+@@ -2264,7 +2264,7 @@ struct isp_operations {
  	int (*start_scsi) (srb_t *);
  	int (*abort_isp) (struct scsi_qla_host *);
  	int (*iospace_config)(struct qla_hw_data*);
@@ -37207,10 +36686,10 @@ index af1003f..be55a75 100644
  /* MSI-X Support *************************************************************/
  
 diff --git a/drivers/scsi/qla4xxx/ql4_def.h b/drivers/scsi/qla4xxx/ql4_def.h
-index bfe6854..ceac088 100644
+index 7f2492e..5113877 100644
 --- a/drivers/scsi/qla4xxx/ql4_def.h
 +++ b/drivers/scsi/qla4xxx/ql4_def.h
-@@ -261,7 +261,7 @@ struct ddb_entry {
+@@ -268,7 +268,7 @@ struct ddb_entry {
  					   * (4000 only) */
  	atomic_t relogin_timer;		  /* Max Time to wait for
  					   * relogin to complete */
@@ -37220,10 +36699,10 @@ index bfe6854..ceac088 100644
  	uint32_t default_time2wait;	  /* Default Min time between
  					   * relogins (+aens) */
 diff --git a/drivers/scsi/qla4xxx/ql4_os.c b/drivers/scsi/qla4xxx/ql4_os.c
-index ce6d3b7..73fac54 100644
+index ee47820..a83b1f4 100644
 --- a/drivers/scsi/qla4xxx/ql4_os.c
 +++ b/drivers/scsi/qla4xxx/ql4_os.c
-@@ -2178,12 +2178,12 @@ static void qla4xxx_check_relogin_flash_ddb(struct iscsi_cls_session *cls_sess)
+@@ -2551,12 +2551,12 @@ static void qla4xxx_check_relogin_flash_ddb(struct iscsi_cls_session *cls_sess)
  		 */
  		if (!iscsi_is_session_online(cls_sess)) {
  			/* Reset retry relogin timer */
@@ -37238,7 +36717,7 @@ index ce6d3b7..73fac54 100644
  				ddb_entry->default_time2wait + 4));
  			set_bit(DPC_RELOGIN_DEVICE, &ha->dpc_flags);
  			atomic_set(&ddb_entry->retry_relogin_timer,
-@@ -3953,7 +3953,7 @@ static void qla4xxx_setup_flash_ddb_entry(struct scsi_qla_host *ha,
+@@ -4453,7 +4453,7 @@ static void qla4xxx_setup_flash_ddb_entry(struct scsi_qla_host *ha,
  
  	atomic_set(&ddb_entry->retry_relogin_timer, INVALID_ENTRY);
  	atomic_set(&ddb_entry->relogin_timer, 0);
@@ -37248,7 +36727,7 @@ index ce6d3b7..73fac54 100644
  	ddb_entry->default_relogin_timeout =
  		(def_timeout > LOGIN_TOV) && (def_timeout < LOGIN_TOV * 10) ?
 diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c
-index 2aeb2e9..46e3925 100644
+index 07322ec..91ccc23 100644
 --- a/drivers/scsi/scsi.c
 +++ b/drivers/scsi/scsi.c
 @@ -655,7 +655,7 @@ int scsi_dispatch_cmd(struct scsi_cmnd *cmd)
@@ -37261,10 +36740,10 @@ index 2aeb2e9..46e3925 100644
  	/* check if the device is still usable */
  	if (unlikely(cmd->device->sdev_state == SDEV_DEL)) {
 diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c
-index b2c95db..227d74e 100644
+index 5dfd749..e86bf7e 100644
 --- a/drivers/scsi/scsi_lib.c
 +++ b/drivers/scsi/scsi_lib.c
-@@ -1411,7 +1411,7 @@ static void scsi_kill_request(struct request *req, struct request_queue *q)
+@@ -1412,7 +1412,7 @@ static void scsi_kill_request(struct request *req, struct request_queue *q)
  	shost = sdev->host;
  	scsi_init_cmd_errh(cmd);
  	cmd->result = DID_NO_CONNECT << 16;
@@ -37273,7 +36752,7 @@ index b2c95db..227d74e 100644
  
  	/*
  	 * SCSI request completion path will do scsi_device_unbusy(),
-@@ -1437,9 +1437,9 @@ static void scsi_softirq_done(struct request *rq)
+@@ -1438,9 +1438,9 @@ static void scsi_softirq_done(struct request *rq)
  
  	INIT_LIST_HEAD(&cmd->eh_entry);
  
@@ -37312,10 +36791,10 @@ index 84a1fdf..693b0d6 100644
  		/*
  		 * TODO: need to fixup sg_tablesize, max_segment_size,
 diff --git a/drivers/scsi/scsi_transport_fc.c b/drivers/scsi/scsi_transport_fc.c
-index f59d4a0..1d89407 100644
+index 80fbe2a..efa223b 100644
 --- a/drivers/scsi/scsi_transport_fc.c
 +++ b/drivers/scsi/scsi_transport_fc.c
-@@ -484,7 +484,7 @@ static DECLARE_TRANSPORT_CLASS(fc_vport_class,
+@@ -498,7 +498,7 @@ static DECLARE_TRANSPORT_CLASS(fc_vport_class,
   * Netlink Infrastructure
   */
  
@@ -37324,7 +36803,7 @@ index f59d4a0..1d89407 100644
  
  /**
   * fc_get_event_number - Obtain the next sequential FC event number
-@@ -497,7 +497,7 @@ static atomic_t fc_event_seq;
+@@ -511,7 +511,7 @@ static atomic_t fc_event_seq;
  u32
  fc_get_event_number(void)
  {
@@ -37333,7 +36812,7 @@ index f59d4a0..1d89407 100644
  }
  EXPORT_SYMBOL(fc_get_event_number);
  
-@@ -645,7 +645,7 @@ static __init int fc_transport_init(void)
+@@ -659,7 +659,7 @@ static __init int fc_transport_init(void)
  {
  	int error;
  
@@ -37342,7 +36821,7 @@ index f59d4a0..1d89407 100644
  
  	error = transport_class_register(&fc_host_class);
  	if (error)
-@@ -835,7 +835,7 @@ static int fc_str_to_dev_loss(const char *buf, unsigned long *val)
+@@ -849,7 +849,7 @@ static int fc_str_to_dev_loss(const char *buf, unsigned long *val)
  	char *cp;
  
  	*val = simple_strtoul(buf, &cp, 0);
@@ -37352,7 +36831,7 @@ index f59d4a0..1d89407 100644
  	/*
  	 * Check for overflow; dev_loss_tmo is u32
 diff --git a/drivers/scsi/scsi_transport_iscsi.c b/drivers/scsi/scsi_transport_iscsi.c
-index e3e3c7d..ebdab62 100644
+index 1cf640e..78e9014 100644
 --- a/drivers/scsi/scsi_transport_iscsi.c
 +++ b/drivers/scsi/scsi_transport_iscsi.c
 @@ -79,7 +79,7 @@ struct iscsi_internal {
@@ -37364,7 +36843,7 @@ index e3e3c7d..ebdab62 100644
  static struct workqueue_struct *iscsi_eh_timer_workq;
  
  static DEFINE_IDA(iscsi_sess_ida);
-@@ -1063,7 +1063,7 @@ int iscsi_add_session(struct iscsi_cls_session *session, unsigned int target_id)
+@@ -1064,7 +1064,7 @@ int iscsi_add_session(struct iscsi_cls_session *session, unsigned int target_id)
  	int err;
  
  	ihost = shost->shost_data;
@@ -37373,7 +36852,7 @@ index e3e3c7d..ebdab62 100644
  
  	if (target_id == ISCSI_MAX_TARGET) {
  		id = ida_simple_get(&iscsi_sess_ida, 0, 0, GFP_KERNEL);
-@@ -2680,7 +2680,7 @@ static __init int iscsi_transport_init(void)
+@@ -2940,7 +2940,7 @@ static __init int iscsi_transport_init(void)
  	printk(KERN_INFO "Loading iSCSI transport class v%s.\n",
  		ISCSI_TRANSPORT_VERSION);
  
@@ -37444,24 +36923,11 @@ index eacd46b..e3f4d62 100644
  		umode_t mask = leaf->fops->write ? S_IRUGO | S_IWUSR : S_IRUGO;
  		proc_create(leaf->name, mask, sg_proc_sgp, leaf->fops);
  	}
-diff --git a/drivers/spi/spi-dw-pci.c b/drivers/spi/spi-dw-pci.c
-index f64250e..1ee3049 100644
---- a/drivers/spi/spi-dw-pci.c
-+++ b/drivers/spi/spi-dw-pci.c
-@@ -149,7 +149,7 @@ static int spi_resume(struct pci_dev *pdev)
- #define spi_resume	NULL
- #endif
- 
--static const struct pci_device_id pci_ids[] __devinitdata = {
-+static const struct pci_device_id pci_ids[] __devinitconst = {
- 	/* Intel MID platform SPI controller 0 */
- 	{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0800) },
- 	{},
 diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
-index b2ccdea..84cde75 100644
+index 3d8f662..070f1a5 100644
 --- a/drivers/spi/spi.c
 +++ b/drivers/spi/spi.c
-@@ -1024,7 +1024,7 @@ int spi_bus_unlock(struct spi_master *master)
+@@ -1361,7 +1361,7 @@ int spi_bus_unlock(struct spi_master *master)
  EXPORT_SYMBOL_GPL(spi_bus_unlock);
  
  /* portable code must never pass more than 32 bytes */
@@ -37471,10 +36937,10 @@ index b2ccdea..84cde75 100644
  static u8	*buf;
  
 diff --git a/drivers/staging/octeon/ethernet-rx.c b/drivers/staging/octeon/ethernet-rx.c
-index 400df8c..065d4f4 100644
+index d91751f..a3a9e36 100644
 --- a/drivers/staging/octeon/ethernet-rx.c
 +++ b/drivers/staging/octeon/ethernet-rx.c
-@@ -420,11 +420,11 @@ static int cvm_oct_napi_poll(struct napi_struct *napi, int budget)
+@@ -421,11 +421,11 @@ static int cvm_oct_napi_poll(struct napi_struct *napi, int budget)
  				/* Increment RX stats for virtual ports */
  				if (work->ipprt >= CVMX_PIP_NUM_INPUT_PORTS) {
  #ifdef CONFIG_64BIT
@@ -37490,7 +36956,7 @@ index 400df8c..065d4f4 100644
  #endif
  				}
  				netif_receive_skb(skb);
-@@ -436,9 +436,9 @@ static int cvm_oct_napi_poll(struct napi_struct *napi, int budget)
+@@ -437,9 +437,9 @@ static int cvm_oct_napi_poll(struct napi_struct *napi, int budget)
  					   dev->name);
  				*/
  #ifdef CONFIG_64BIT
@@ -37503,10 +36969,10 @@ index 400df8c..065d4f4 100644
  				dev_kfree_skb_irq(skb);
  			}
 diff --git a/drivers/staging/octeon/ethernet.c b/drivers/staging/octeon/ethernet.c
-index 9112cd8..92f8d51 100644
+index 60cba81..71eb239 100644
 --- a/drivers/staging/octeon/ethernet.c
 +++ b/drivers/staging/octeon/ethernet.c
-@@ -258,11 +258,11 @@ static struct net_device_stats *cvm_oct_common_get_stats(struct net_device *dev)
+@@ -259,11 +259,11 @@ static struct net_device_stats *cvm_oct_common_get_stats(struct net_device *dev)
  		 * since the RX tasklet also increments it.
  		 */
  #ifdef CONFIG_64BIT
@@ -37523,7 +36989,7 @@ index 9112cd8..92f8d51 100644
  	}
  
 diff --git a/drivers/staging/rtl8712/rtl871x_io.h b/drivers/staging/rtl8712/rtl871x_io.h
-index 86308a0..feaa925 100644
+index d3d8727..f9327bb8 100644
 --- a/drivers/staging/rtl8712/rtl871x_io.h
 +++ b/drivers/staging/rtl8712/rtl871x_io.h
 @@ -108,7 +108,7 @@ struct	_io_ops {
@@ -37566,7 +37032,7 @@ index 42cdafe..2769103 100644
  			ch = synth_buffer_getc();
  		}
 diff --git a/drivers/staging/usbip/usbip_common.h b/drivers/staging/usbip/usbip_common.h
-index b8f8c48..1fc5025 100644
+index c7b888c..c94be93 100644
 --- a/drivers/staging/usbip/usbip_common.h
 +++ b/drivers/staging/usbip/usbip_common.h
 @@ -289,7 +289,7 @@ struct usbip_device {
@@ -37592,10 +37058,10 @@ index 88b3298..3783eee 100644
  	/*
  	 * NOTE:
 diff --git a/drivers/staging/usbip/vhci_hcd.c b/drivers/staging/usbip/vhci_hcd.c
-index 2ee97e2..0420b86 100644
+index dca9bf1..80735c9 100644
 --- a/drivers/staging/usbip/vhci_hcd.c
 +++ b/drivers/staging/usbip/vhci_hcd.c
-@@ -527,7 +527,7 @@ static void vhci_tx_urb(struct urb *urb)
+@@ -488,7 +488,7 @@ static void vhci_tx_urb(struct urb *urb)
  		return;
  	}
  
@@ -37604,7 +37070,7 @@ index 2ee97e2..0420b86 100644
  	if (priv->seqnum == 0xffff)
  		dev_info(&urb->dev->dev, "seqnum max\n");
  
-@@ -779,7 +779,7 @@ static int vhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
+@@ -740,7 +740,7 @@ static int vhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
  			return -ENOMEM;
  		}
  
@@ -37613,7 +37079,7 @@ index 2ee97e2..0420b86 100644
  		if (unlink->seqnum == 0xffff)
  			pr_info("seqnum max\n");
  
-@@ -969,7 +969,7 @@ static int vhci_start(struct usb_hcd *hcd)
+@@ -928,7 +928,7 @@ static int vhci_start(struct usb_hcd *hcd)
  		vdev->rhport = rhport;
  	}
  
@@ -37623,7 +37089,7 @@ index 2ee97e2..0420b86 100644
  
  	hcd->power_budget = 0; /* no limit */
 diff --git a/drivers/staging/usbip/vhci_rx.c b/drivers/staging/usbip/vhci_rx.c
-index 3f511b4..d3dbc1e 100644
+index f5fba732..210a16c 100644
 --- a/drivers/staging/usbip/vhci_rx.c
 +++ b/drivers/staging/usbip/vhci_rx.c
 @@ -77,7 +77,7 @@ static void vhci_recv_ret_submit(struct vhci_device *vdev,
@@ -37731,7 +37197,7 @@ index 1ca66ea..76f1343 100644
  void tmem_register_pamops(struct tmem_pamops *m)
  {
 diff --git a/drivers/staging/zcache/tmem.h b/drivers/staging/zcache/tmem.h
-index ed147c4..94fc3c6 100644
+index 0d4aa82..f7832d4 100644
 --- a/drivers/staging/zcache/tmem.h
 +++ b/drivers/staging/zcache/tmem.h
 @@ -180,6 +180,7 @@ struct tmem_pamops {
@@ -37750,55 +37216,24 @@ index ed147c4..94fc3c6 100644
  extern void tmem_register_hostops(struct tmem_hostops *m);
  
  /* core tmem accessor functions */
-diff --git a/drivers/target/iscsi/iscsi_target.c b/drivers/target/iscsi/iscsi_target.c
-index 97c74ee..7f6d77d 100644
---- a/drivers/target/iscsi/iscsi_target.c
-+++ b/drivers/target/iscsi/iscsi_target.c
-@@ -1361,7 +1361,7 @@ static int iscsit_handle_data_out(struct iscsi_conn *conn, unsigned char *buf)
- 		 * outstanding_r2ts reaches zero, go ahead and send the delayed
- 		 * TASK_ABORTED status.
- 		 */
--		if (atomic_read(&se_cmd->t_transport_aborted) != 0) {
-+		if (atomic_read_unchecked(&se_cmd->t_transport_aborted) != 0) {
- 			if (hdr->flags & ISCSI_FLAG_CMD_FINAL)
- 				if (--cmd->outstanding_r2ts < 1) {
- 					iscsit_stop_dataout_timer(cmd);
 diff --git a/drivers/target/target_core_tmr.c b/drivers/target/target_core_tmr.c
-index dcb0618..97e3d85 100644
+index f015839..b15dfc4 100644
 --- a/drivers/target/target_core_tmr.c
 +++ b/drivers/target/target_core_tmr.c
-@@ -260,7 +260,7 @@ static void core_tmr_drain_task_list(
+@@ -327,7 +327,7 @@ static void core_tmr_drain_task_list(
  			cmd->se_tfo->get_task_tag(cmd), cmd->pr_res_key,
  			cmd->t_task_list_num,
  			atomic_read(&cmd->t_task_cdbs_left),
 -			atomic_read(&cmd->t_task_cdbs_sent),
 +			atomic_read_unchecked(&cmd->t_task_cdbs_sent),
- 			atomic_read(&cmd->t_transport_active),
- 			atomic_read(&cmd->t_transport_stop),
- 			atomic_read(&cmd->t_transport_sent));
-@@ -291,7 +291,7 @@ static void core_tmr_drain_task_list(
- 			pr_debug("LUN_RESET: got t_transport_active = 1 for"
- 				" task: %p, t_fe_count: %d dev: %p\n", task,
- 				fe_count, dev);
--			atomic_set(&cmd->t_transport_aborted, 1);
-+			atomic_set_unchecked(&cmd->t_transport_aborted, 1);
- 			spin_unlock_irqrestore(&cmd->t_state_lock, flags);
- 
- 			core_tmr_handle_tas_abort(tmr_nacl, cmd, tas, fe_count);
-@@ -299,7 +299,7 @@ static void core_tmr_drain_task_list(
- 		}
- 		pr_debug("LUN_RESET: Got t_transport_active = 0 for task: %p,"
- 			" t_fe_count: %d dev: %p\n", task, fe_count, dev);
--		atomic_set(&cmd->t_transport_aborted, 1);
-+		atomic_set_unchecked(&cmd->t_transport_aborted, 1);
- 		spin_unlock_irqrestore(&cmd->t_state_lock, flags);
- 
- 		core_tmr_handle_tas_abort(tmr_nacl, cmd, tas, fe_count);
+ 			(cmd->transport_state & CMD_T_ACTIVE) != 0,
+ 			(cmd->transport_state & CMD_T_STOP) != 0,
+ 			(cmd->transport_state & CMD_T_SENT) != 0);
 diff --git a/drivers/target/target_core_transport.c b/drivers/target/target_core_transport.c
-index cd5cd95..5249d30 100644
+index 443704f..92d3517 100644
 --- a/drivers/target/target_core_transport.c
 +++ b/drivers/target/target_core_transport.c
-@@ -1330,7 +1330,7 @@ struct se_device *transport_add_device_to_core_hba(
+@@ -1355,7 +1355,7 @@ struct se_device *transport_add_device_to_core_hba(
  	spin_lock_init(&dev->se_port_lock);
  	spin_lock_init(&dev->se_tmr_lock);
  	spin_lock_init(&dev->qf_cmd_lock);
@@ -37807,7 +37242,7 @@ index cd5cd95..5249d30 100644
  
  	se_dev_set_default_attribs(dev, dev_limits);
  
-@@ -1517,7 +1517,7 @@ static int transport_check_alloc_task_attr(struct se_cmd *cmd)
+@@ -1542,7 +1542,7 @@ static int transport_check_alloc_task_attr(struct se_cmd *cmd)
  	 * Used to determine when ORDERED commands should go from
  	 * Dormant to Active status.
  	 */
@@ -37816,16 +37251,16 @@ index cd5cd95..5249d30 100644
  	smp_mb__after_atomic_inc();
  	pr_debug("Allocated se_ordered_id: %u for Task Attr: 0x%02x on %s\n",
  			cmd->se_ordered_id, cmd->sam_task_attr,
-@@ -1862,7 +1862,7 @@ static void transport_generic_request_failure(struct se_cmd *cmd)
- 		" t_transport_active: %d t_transport_stop: %d"
- 		" t_transport_sent: %d\n", cmd->t_task_list_num,
+@@ -1956,7 +1956,7 @@ void transport_generic_request_failure(struct se_cmd *cmd)
+ 		" CMD_T_ACTIVE: %d CMD_T_STOP: %d CMD_T_SENT: %d\n",
+ 		cmd->t_task_list_num,
  		atomic_read(&cmd->t_task_cdbs_left),
 -		atomic_read(&cmd->t_task_cdbs_sent),
 +		atomic_read_unchecked(&cmd->t_task_cdbs_sent),
  		atomic_read(&cmd->t_task_cdbs_ex_left),
- 		atomic_read(&cmd->t_transport_active),
- 		atomic_read(&cmd->t_transport_stop),
-@@ -2121,9 +2121,9 @@ check_depth:
+ 		(cmd->transport_state & CMD_T_ACTIVE) != 0,
+ 		(cmd->transport_state & CMD_T_STOP) != 0,
+@@ -2216,9 +2216,9 @@ check_depth:
  	cmd = task->task_se_cmd;
  	spin_lock_irqsave(&cmd->t_state_lock, flags);
  	task->task_flags |= (TF_ACTIVE | TF_SENT);
@@ -37835,37 +37270,10 @@ index cd5cd95..5249d30 100644
 -	if (atomic_read(&cmd->t_task_cdbs_sent) ==
 +	if (atomic_read_unchecked(&cmd->t_task_cdbs_sent) ==
  	    cmd->t_task_list_num)
- 		atomic_set(&cmd->t_transport_sent, 1);
- 
-@@ -4348,7 +4348,7 @@ bool transport_wait_for_tasks(struct se_cmd *cmd)
- 		atomic_set(&cmd->transport_lun_stop, 0);
- 	}
- 	if (!atomic_read(&cmd->t_transport_active) ||
--	     atomic_read(&cmd->t_transport_aborted)) {
-+	     atomic_read_unchecked(&cmd->t_transport_aborted)) {
- 		spin_unlock_irqrestore(&cmd->t_state_lock, flags);
- 		return false;
- 	}
-@@ -4597,7 +4597,7 @@ int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
- {
- 	int ret = 0;
+ 		cmd->transport_state |= CMD_T_SENT;
  
--	if (atomic_read(&cmd->t_transport_aborted) != 0) {
-+	if (atomic_read_unchecked(&cmd->t_transport_aborted) != 0) {
- 		if (!send_status ||
- 		     (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
- 			return 1;
-@@ -4634,7 +4634,7 @@ void transport_send_task_abort(struct se_cmd *cmd)
- 	 */
- 	if (cmd->data_direction == DMA_TO_DEVICE) {
- 		if (cmd->se_tfo->write_pending_status(cmd) != 0) {
--			atomic_inc(&cmd->t_transport_aborted);
-+			atomic_inc_unchecked(&cmd->t_transport_aborted);
- 			smp_mb__after_atomic_inc();
- 		}
- 	}
 diff --git a/drivers/tty/hvc/hvcs.c b/drivers/tty/hvc/hvcs.c
-index b9040be..e3f5aab 100644
+index 3436436..772237b 100644
 --- a/drivers/tty/hvc/hvcs.c
 +++ b/drivers/tty/hvc/hvcs.c
 @@ -83,6 +83,7 @@
@@ -37894,7 +37302,7 @@ index b9040be..e3f5aab 100644
  		spin_unlock_irqrestore(&hvcsd->lock, flags);
  		printk(KERN_INFO "HVCS: vterm state unchanged.  "
  				"The hvcs device node is still in use.\n");
-@@ -1145,7 +1146,7 @@ static int hvcs_open(struct tty_struct *tty, struct file *filp)
+@@ -1138,7 +1139,7 @@ static int hvcs_open(struct tty_struct *tty, struct file *filp)
  		if ((retval = hvcs_partner_connect(hvcsd)))
  			goto error_release;
  
@@ -37903,7 +37311,7 @@ index b9040be..e3f5aab 100644
  	hvcsd->tty = tty;
  	tty->driver_data = hvcsd;
  
-@@ -1179,7 +1180,7 @@ fast_open:
+@@ -1172,7 +1173,7 @@ fast_open:
  
  	spin_lock_irqsave(&hvcsd->lock, flags);
  	kref_get(&hvcsd->kref);
@@ -37912,7 +37320,7 @@ index b9040be..e3f5aab 100644
  	hvcsd->todo_mask |= HVCS_SCHED_READ;
  	spin_unlock_irqrestore(&hvcsd->lock, flags);
  
-@@ -1223,7 +1224,7 @@ static void hvcs_close(struct tty_struct *tty, struct file *filp)
+@@ -1216,7 +1217,7 @@ static void hvcs_close(struct tty_struct *tty, struct file *filp)
  	hvcsd = tty->driver_data;
  
  	spin_lock_irqsave(&hvcsd->lock, flags);
@@ -37921,7 +37329,7 @@ index b9040be..e3f5aab 100644
  
  		vio_disable_interrupts(hvcsd->vdev);
  
-@@ -1249,10 +1250,10 @@ static void hvcs_close(struct tty_struct *tty, struct file *filp)
+@@ -1242,10 +1243,10 @@ static void hvcs_close(struct tty_struct *tty, struct file *filp)
  		free_irq(irq, hvcsd);
  		kref_put(&hvcsd->kref, destroy_hvcs_struct);
  		return;
@@ -37934,7 +37342,7 @@ index b9040be..e3f5aab 100644
  	}
  
  	spin_unlock_irqrestore(&hvcsd->lock, flags);
-@@ -1268,7 +1269,7 @@ static void hvcs_hangup(struct tty_struct * tty)
+@@ -1261,7 +1262,7 @@ static void hvcs_hangup(struct tty_struct * tty)
  
  	spin_lock_irqsave(&hvcsd->lock, flags);
  	/* Preserve this so that we know how many kref refs to put */
@@ -37943,7 +37351,7 @@ index b9040be..e3f5aab 100644
  
  	/*
  	 * Don't kref put inside the spinlock because the destruction
-@@ -1283,7 +1284,7 @@ static void hvcs_hangup(struct tty_struct * tty)
+@@ -1276,7 +1277,7 @@ static void hvcs_hangup(struct tty_struct * tty)
  	hvcsd->tty->driver_data = NULL;
  	hvcsd->tty = NULL;
  
@@ -37952,7 +37360,7 @@ index b9040be..e3f5aab 100644
  
  	/* This will drop any buffered data on the floor which is OK in a hangup
  	 * scenario. */
-@@ -1354,7 +1355,7 @@ static int hvcs_write(struct tty_struct *tty,
+@@ -1347,7 +1348,7 @@ static int hvcs_write(struct tty_struct *tty,
  	 * the middle of a write operation?  This is a crummy place to do this
  	 * but we want to keep it all in the spinlock.
  	 */
@@ -37961,7 +37369,7 @@ index b9040be..e3f5aab 100644
  		spin_unlock_irqrestore(&hvcsd->lock, flags);
  		return -ENODEV;
  	}
-@@ -1428,7 +1429,7 @@ static int hvcs_write_room(struct tty_struct *tty)
+@@ -1421,7 +1422,7 @@ static int hvcs_write_room(struct tty_struct *tty)
  {
  	struct hvcs_struct *hvcsd = tty->driver_data;
  
@@ -37971,7 +37379,7 @@ index b9040be..e3f5aab 100644
  
  	return HVCS_BUFF_LEN - hvcsd->chars_in_buffer;
 diff --git a/drivers/tty/ipwireless/tty.c b/drivers/tty/ipwireless/tty.c
-index ef92869..f4ebd88 100644
+index 4daf962..b4a2281 100644
 --- a/drivers/tty/ipwireless/tty.c
 +++ b/drivers/tty/ipwireless/tty.c
 @@ -29,6 +29,7 @@
@@ -37991,7 +37399,7 @@ index ef92869..f4ebd88 100644
  	unsigned int control_lines;
  	struct mutex ipw_tty_mutex;
  	int tx_bytes_queued;
-@@ -127,10 +128,10 @@ static int ipw_open(struct tty_struct *linux_tty, struct file *filp)
+@@ -117,10 +118,10 @@ static int ipw_open(struct tty_struct *linux_tty, struct file *filp)
  		mutex_unlock(&tty->ipw_tty_mutex);
  		return -ENODEV;
  	}
@@ -38004,7 +37412,7 @@ index ef92869..f4ebd88 100644
  
  	tty->linux_tty = linux_tty;
  	linux_tty->driver_data = tty;
-@@ -146,9 +147,7 @@ static int ipw_open(struct tty_struct *linux_tty, struct file *filp)
+@@ -136,9 +137,7 @@ static int ipw_open(struct tty_struct *linux_tty, struct file *filp)
  
  static void do_ipw_close(struct ipw_tty *tty)
  {
@@ -38015,7 +37423,7 @@ index ef92869..f4ebd88 100644
  		struct tty_struct *linux_tty = tty->linux_tty;
  
  		if (linux_tty != NULL) {
-@@ -169,7 +168,7 @@ static void ipw_hangup(struct tty_struct *linux_tty)
+@@ -159,7 +158,7 @@ static void ipw_hangup(struct tty_struct *linux_tty)
  		return;
  
  	mutex_lock(&tty->ipw_tty_mutex);
@@ -38024,7 +37432,7 @@ index ef92869..f4ebd88 100644
  		mutex_unlock(&tty->ipw_tty_mutex);
  		return;
  	}
-@@ -198,7 +197,7 @@ void ipwireless_tty_received(struct ipw_tty *tty, unsigned char *data,
+@@ -188,7 +187,7 @@ void ipwireless_tty_received(struct ipw_tty *tty, unsigned char *data,
  		return;
  	}
  
@@ -38033,7 +37441,7 @@ index ef92869..f4ebd88 100644
  		mutex_unlock(&tty->ipw_tty_mutex);
  		return;
  	}
-@@ -240,7 +239,7 @@ static int ipw_write(struct tty_struct *linux_tty,
+@@ -230,7 +229,7 @@ static int ipw_write(struct tty_struct *linux_tty,
  		return -ENODEV;
  
  	mutex_lock(&tty->ipw_tty_mutex);
@@ -38042,7 +37450,7 @@ index ef92869..f4ebd88 100644
  		mutex_unlock(&tty->ipw_tty_mutex);
  		return -EINVAL;
  	}
-@@ -280,7 +279,7 @@ static int ipw_write_room(struct tty_struct *linux_tty)
+@@ -270,7 +269,7 @@ static int ipw_write_room(struct tty_struct *linux_tty)
  	if (!tty)
  		return -ENODEV;
  
@@ -38051,7 +37459,7 @@ index ef92869..f4ebd88 100644
  		return -EINVAL;
  
  	room = IPWIRELESS_TX_QUEUE_SIZE - tty->tx_bytes_queued;
-@@ -322,7 +321,7 @@ static int ipw_chars_in_buffer(struct tty_struct *linux_tty)
+@@ -312,7 +311,7 @@ static int ipw_chars_in_buffer(struct tty_struct *linux_tty)
  	if (!tty)
  		return 0;
  
@@ -38060,7 +37468,7 @@ index ef92869..f4ebd88 100644
  		return 0;
  
  	return tty->tx_bytes_queued;
-@@ -403,7 +402,7 @@ static int ipw_tiocmget(struct tty_struct *linux_tty)
+@@ -393,7 +392,7 @@ static int ipw_tiocmget(struct tty_struct *linux_tty)
  	if (!tty)
  		return -ENODEV;
  
@@ -38069,7 +37477,7 @@ index ef92869..f4ebd88 100644
  		return -EINVAL;
  
  	return get_control_lines(tty);
-@@ -419,7 +418,7 @@ ipw_tiocmset(struct tty_struct *linux_tty,
+@@ -409,7 +408,7 @@ ipw_tiocmset(struct tty_struct *linux_tty,
  	if (!tty)
  		return -ENODEV;
  
@@ -38078,7 +37486,7 @@ index ef92869..f4ebd88 100644
  		return -EINVAL;
  
  	return set_control_lines(tty, set, clear);
-@@ -433,7 +432,7 @@ static int ipw_ioctl(struct tty_struct *linux_tty,
+@@ -423,7 +422,7 @@ static int ipw_ioctl(struct tty_struct *linux_tty,
  	if (!tty)
  		return -ENODEV;
  
@@ -38087,7 +37495,7 @@ index ef92869..f4ebd88 100644
  		return -EINVAL;
  
  	/* FIXME: Exactly how is the tty object locked here .. */
-@@ -582,7 +581,7 @@ void ipwireless_tty_free(struct ipw_tty *tty)
+@@ -572,7 +571,7 @@ void ipwireless_tty_free(struct ipw_tty *tty)
  				   against a parallel ioctl etc */
  				mutex_lock(&ttyj->ipw_tty_mutex);
  			}
@@ -38097,7 +37505,7 @@ index ef92869..f4ebd88 100644
  			ipwireless_disassociate_network_ttys(network,
  							     ttyj->channel_idx);
 diff --git a/drivers/tty/n_gsm.c b/drivers/tty/n_gsm.c
-index fc7bbba..9527e93 100644
+index c43b683..0a88f1c 100644
 --- a/drivers/tty/n_gsm.c
 +++ b/drivers/tty/n_gsm.c
 @@ -1629,7 +1629,7 @@ static struct gsm_dlci *gsm_dlci_alloc(struct gsm_mux *gsm, int addr)
@@ -38110,10 +37518,10 @@ index fc7bbba..9527e93 100644
  		return NULL;
  	}
 diff --git a/drivers/tty/n_tty.c b/drivers/tty/n_tty.c
-index d2256d0..97476fa 100644
+index 94b6eda..15f7cec 100644
 --- a/drivers/tty/n_tty.c
 +++ b/drivers/tty/n_tty.c
-@@ -2123,6 +2123,7 @@ void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
+@@ -2122,6 +2122,7 @@ void n_tty_inherit_ops(struct tty_ldisc_ops *ops)
  {
  	*ops = tty_ldisc_N_TTY;
  	ops->owner = NULL;
@@ -38123,11 +37531,11 @@ index d2256d0..97476fa 100644
  }
  EXPORT_SYMBOL_GPL(n_tty_inherit_ops);
 diff --git a/drivers/tty/pty.c b/drivers/tty/pty.c
-index d8653ab..f8afd9d 100644
+index eeae7fa..177a743 100644
 --- a/drivers/tty/pty.c
 +++ b/drivers/tty/pty.c
-@@ -765,8 +765,10 @@ static void __init unix98_pty_init(void)
- 	register_sysctl_table(pty_root_table);
+@@ -707,8 +707,10 @@ static void __init unix98_pty_init(void)
+ 		panic("Couldn't register Unix98 pts driver");
  
  	/* Now create the /dev/ptmx special device */
 +	pax_open_kernel();
@@ -38241,10 +37649,10 @@ index 2b42a01..32a2ed3 100644
  /* This is only available if kgdboc is a built in for early debugging */
  static int __init kgdboc_early_init(char *opt)
 diff --git a/drivers/tty/sysrq.c b/drivers/tty/sysrq.c
-index 7867b7c..b3c119d 100644
+index 05728894..b9d44c6 100644
 --- a/drivers/tty/sysrq.c
 +++ b/drivers/tty/sysrq.c
-@@ -862,7 +862,7 @@ EXPORT_SYMBOL(unregister_sysrq_key);
+@@ -865,7 +865,7 @@ EXPORT_SYMBOL(unregister_sysrq_key);
  static ssize_t write_sysrq_trigger(struct file *file, const char __user *buf,
  				   size_t count, loff_t *ppos)
  {
@@ -38254,10 +37662,10 @@ index 7867b7c..b3c119d 100644
  
  		if (get_user(c, buf))
 diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c
-index e41b9bb..84002fb 100644
+index d939bd7..33d92cd 100644
 --- a/drivers/tty/tty_io.c
 +++ b/drivers/tty/tty_io.c
-@@ -3291,7 +3291,7 @@ EXPORT_SYMBOL_GPL(get_current_tty);
+@@ -3278,7 +3278,7 @@ EXPORT_SYMBOL_GPL(get_current_tty);
  
  void tty_default_fops(struct file_operations *fops)
  {
@@ -38316,10 +37724,10 @@ index 24b95db..9c078d0 100644
  	spin_unlock_irqrestore(&tty_ldisc_lock, flags);
  }
 diff --git a/drivers/tty/vt/keyboard.c b/drivers/tty/vt/keyboard.c
-index a605549..6bd3c96 100644
+index 3b0c4e3..f98a992 100644
 --- a/drivers/tty/vt/keyboard.c
 +++ b/drivers/tty/vt/keyboard.c
-@@ -657,6 +657,16 @@ static void k_spec(struct vc_data *vc, unsigned char value, char up_flag)
+@@ -663,6 +663,16 @@ static void k_spec(struct vc_data *vc, unsigned char value, char up_flag)
  	     kbd->kbdmode == VC_OFF) &&
  	     value != KVAL(K_SAK))
  		return;		/* SAK is allowed even in raw mode */
@@ -38336,11 +37744,7 @@ index a605549..6bd3c96 100644
  	fn_handler[value](vc);
  }
  
-diff --git a/drivers/tty/vt/vt_ioctl.c b/drivers/tty/vt/vt_ioctl.c
-index 65447c5..0526f0a 100644
---- a/drivers/tty/vt/vt_ioctl.c
-+++ b/drivers/tty/vt/vt_ioctl.c
-@@ -207,9 +207,6 @@ do_kdsk_ioctl(int cmd, struct kbentry __user *user_kbe, int perm, struct kbd_str
+@@ -1812,9 +1822,6 @@ int vt_do_kdsk_ioctl(int cmd, struct kbentry __user *user_kbe, int perm,
  	if (copy_from_user(&tmp, user_kbe, sizeof(struct kbentry)))
  		return -EFAULT;
  
@@ -38349,9 +37753,9 @@ index 65447c5..0526f0a 100644
 -
  	switch (cmd) {
  	case KDGKBENT:
- 		key_map = key_maps[s];
-@@ -221,6 +218,9 @@ do_kdsk_ioctl(int cmd, struct kbentry __user *user_kbe, int perm, struct kbd_str
- 		    val = (i ? K_HOLE : K_NOSUCHMAP);
+ 		/* Ensure another thread doesn't free it under us */
+@@ -1829,6 +1836,9 @@ int vt_do_kdsk_ioctl(int cmd, struct kbentry __user *user_kbe, int perm,
+ 		spin_unlock_irqrestore(&kbd_event_lock, flags);
  		return put_user(val, &user_kbe->kb_value);
  	case KDSKBENT:
 +		if (!capable(CAP_SYS_TTY_CONFIG))
@@ -38360,7 +37764,7 @@ index 65447c5..0526f0a 100644
  		if (!perm)
  			return -EPERM;
  		if (!i && v == K_NOSUCHMAP) {
-@@ -322,9 +322,6 @@ do_kdgkb_ioctl(int cmd, struct kbsentry __user *user_kdgkb, int perm)
+@@ -1919,9 +1929,6 @@ int vt_do_kdgkb_ioctl(int cmd, struct kbsentry __user *user_kdgkb, int perm)
  	int i, j, k;
  	int ret;
  
@@ -38370,7 +37774,7 @@ index 65447c5..0526f0a 100644
  	kbs = kmalloc(sizeof(*kbs), GFP_KERNEL);
  	if (!kbs) {
  		ret = -ENOMEM;
-@@ -358,6 +355,9 @@ do_kdgkb_ioctl(int cmd, struct kbsentry __user *user_kdgkb, int perm)
+@@ -1955,6 +1962,9 @@ int vt_do_kdgkb_ioctl(int cmd, struct kbsentry __user *user_kdgkb, int perm)
  		kfree(kbs);
  		return ((p && *p) ? -EOVERFLOW : 0);
  	case KDSKBSENT:
@@ -38679,10 +38083,10 @@ index 57c01ab..8a05959 100644
  
  /*
 diff --git a/drivers/vhost/vhost.c b/drivers/vhost/vhost.c
-index c14c42b..f955cc2 100644
+index 51e4c1e..9d87e2a 100644
 --- a/drivers/vhost/vhost.c
 +++ b/drivers/vhost/vhost.c
-@@ -629,7 +629,7 @@ static long vhost_set_memory(struct vhost_dev *d, struct vhost_memory __user *m)
+@@ -632,7 +632,7 @@ static long vhost_set_memory(struct vhost_dev *d, struct vhost_memory __user *m)
  	return 0;
  }
  
@@ -41552,10 +40956,10 @@ index 3c14e43..eafa544 100644
 +4 4 4  4 4 4  4 4 4  4 4 4  4 4 4  4 4 4
 +4 4 4  4 4 4
 diff --git a/drivers/video/udlfb.c b/drivers/video/udlfb.c
-index 5fd95e0..b4a96f8 100644
+index a159b63..4ab532d 100644
 --- a/drivers/video/udlfb.c
 +++ b/drivers/video/udlfb.c
-@@ -619,11 +619,11 @@ int dlfb_handle_damage(struct dlfb_data *dev, int x, int y,
+@@ -620,11 +620,11 @@ int dlfb_handle_damage(struct dlfb_data *dev, int x, int y,
  		dlfb_urb_completion(urb);
  
  error:
@@ -41571,7 +40975,7 @@ index 5fd95e0..b4a96f8 100644
  		    >> 10)), /* Kcycles */
  		   &dev->cpu_kcycles_used);
  
-@@ -744,11 +744,11 @@ static void dlfb_dpy_deferred_io(struct fb_info *info,
+@@ -745,11 +745,11 @@ static void dlfb_dpy_deferred_io(struct fb_info *info,
  		dlfb_urb_completion(urb);
  
  error:
@@ -41587,7 +40991,7 @@ index 5fd95e0..b4a96f8 100644
  		    >> 10)), /* Kcycles */
  		   &dev->cpu_kcycles_used);
  }
-@@ -1371,7 +1371,7 @@ static ssize_t metrics_bytes_rendered_show(struct device *fbdev,
+@@ -1373,7 +1373,7 @@ static ssize_t metrics_bytes_rendered_show(struct device *fbdev,
  	struct fb_info *fb_info = dev_get_drvdata(fbdev);
  	struct dlfb_data *dev = fb_info->par;
  	return snprintf(buf, PAGE_SIZE, "%u\n",
@@ -41596,7 +41000,7 @@ index 5fd95e0..b4a96f8 100644
  }
  
  static ssize_t metrics_bytes_identical_show(struct device *fbdev,
-@@ -1379,7 +1379,7 @@ static ssize_t metrics_bytes_identical_show(struct device *fbdev,
+@@ -1381,7 +1381,7 @@ static ssize_t metrics_bytes_identical_show(struct device *fbdev,
  	struct fb_info *fb_info = dev_get_drvdata(fbdev);
  	struct dlfb_data *dev = fb_info->par;
  	return snprintf(buf, PAGE_SIZE, "%u\n",
@@ -41605,7 +41009,7 @@ index 5fd95e0..b4a96f8 100644
  }
  
  static ssize_t metrics_bytes_sent_show(struct device *fbdev,
-@@ -1387,7 +1387,7 @@ static ssize_t metrics_bytes_sent_show(struct device *fbdev,
+@@ -1389,7 +1389,7 @@ static ssize_t metrics_bytes_sent_show(struct device *fbdev,
  	struct fb_info *fb_info = dev_get_drvdata(fbdev);
  	struct dlfb_data *dev = fb_info->par;
  	return snprintf(buf, PAGE_SIZE, "%u\n",
@@ -41614,7 +41018,7 @@ index 5fd95e0..b4a96f8 100644
  }
  
  static ssize_t metrics_cpu_kcycles_used_show(struct device *fbdev,
-@@ -1395,7 +1395,7 @@ static ssize_t metrics_cpu_kcycles_used_show(struct device *fbdev,
+@@ -1397,7 +1397,7 @@ static ssize_t metrics_cpu_kcycles_used_show(struct device *fbdev,
  	struct fb_info *fb_info = dev_get_drvdata(fbdev);
  	struct dlfb_data *dev = fb_info->par;
  	return snprintf(buf, PAGE_SIZE, "%u\n",
@@ -41623,7 +41027,7 @@ index 5fd95e0..b4a96f8 100644
  }
  
  static ssize_t edid_show(
-@@ -1452,10 +1452,10 @@ static ssize_t metrics_reset_store(struct device *fbdev,
+@@ -1457,10 +1457,10 @@ static ssize_t metrics_reset_store(struct device *fbdev,
  	struct fb_info *fb_info = dev_get_drvdata(fbdev);
  	struct dlfb_data *dev = fb_info->par;
  
@@ -41639,7 +41043,7 @@ index 5fd95e0..b4a96f8 100644
  	return count;
  }
 diff --git a/drivers/video/uvesafb.c b/drivers/video/uvesafb.c
-index 8408543..d6f20f1 100644
+index b0e2a42..e2df3ad 100644
 --- a/drivers/video/uvesafb.c
 +++ b/drivers/video/uvesafb.c
 @@ -19,6 +19,7 @@
@@ -41650,24 +41054,6 @@ index 8408543..d6f20f1 100644
  #include <video/edid.h>
  #include <video/uvesafb.h>
  #ifdef CONFIG_X86
-@@ -73,7 +74,7 @@ static void uvesafb_cn_callback(struct cn_msg *msg, struct netlink_skb_parms *ns
- 	struct uvesafb_task *utask;
- 	struct uvesafb_ktask *task;
- 
--	if (!cap_raised(current_cap(), CAP_SYS_ADMIN))
-+	if (!capable(CAP_SYS_ADMIN))
- 		return;
- 
- 	if (msg->seq >= UVESAFB_TASKS_MAX)
-@@ -121,7 +122,7 @@ static int uvesafb_helper_start(void)
- 		NULL,
- 	};
- 
--	return call_usermodehelper(v86d_path, argv, envp, 1);
-+	return call_usermodehelper(v86d_path, argv, envp, UMH_WAIT_PROC);
- }
- 
- /*
 @@ -569,10 +570,32 @@ static int __devinit uvesafb_vbe_getpmi(struct uvesafb_ktask *task,
  	if ((task->t.regs.eax & 0xffff) != 0x4f || task->t.regs.es < 0xc000) {
  		par->pmi_setpal = par->ypan = 0;
@@ -41718,7 +41104,7 @@ index 8408543..d6f20f1 100644
  	}
  #else
  	/* The protected mode interface is not available on non-x86. */
-@@ -1828,6 +1852,11 @@ out:
+@@ -1836,6 +1860,11 @@ out:
  	if (par->vbe_modes)
  		kfree(par->vbe_modes);
  
@@ -41730,7 +41116,7 @@ index 8408543..d6f20f1 100644
  	framebuffer_release(info);
  	return err;
  }
-@@ -1854,6 +1883,12 @@ static int uvesafb_remove(struct platform_device *dev)
+@@ -1862,6 +1891,12 @@ static int uvesafb_remove(struct platform_device *dev)
  				kfree(par->vbe_state_orig);
  			if (par->vbe_state_saved)
  				kfree(par->vbe_state_saved);
@@ -41912,10 +41298,10 @@ index e95d1b6..3454244 100644
  	  A.out (Assembler.OUTput) is a set of formats for libraries and
  	  executables used in the earliest versions of UNIX.  Linux used
 diff --git a/fs/aio.c b/fs/aio.c
-index 3b65ee7..aa6ec34 100644
+index e7f2fad..15ad8a4 100644
 --- a/fs/aio.c
 +++ b/fs/aio.c
-@@ -119,7 +119,7 @@ static int aio_setup_ring(struct kioctx *ctx)
+@@ -118,7 +118,7 @@ static int aio_setup_ring(struct kioctx *ctx)
  	size += sizeof(struct io_event) * nr_events;
  	nr_pages = (size + PAGE_SIZE-1) >> PAGE_SHIFT;
  
@@ -41924,7 +41310,7 @@ index 3b65ee7..aa6ec34 100644
  		return -EINVAL;
  
  	nr_events = (PAGE_SIZE * nr_pages - sizeof(struct aio_ring)) / sizeof(struct io_event);
-@@ -1461,18 +1461,19 @@ static ssize_t aio_fsync(struct kiocb *iocb)
+@@ -1440,18 +1440,19 @@ static ssize_t aio_fsync(struct kiocb *iocb)
  static ssize_t aio_setup_vectored_rw(int type, struct kiocb *kiocb, bool compat)
  {
  	ssize_t ret;
@@ -41946,7 +41332,7 @@ index 3b65ee7..aa6ec34 100644
  				&kiocb->ki_iovec, 1);
  	if (ret < 0)
  		goto out;
-@@ -1481,6 +1482,11 @@ static ssize_t aio_setup_vectored_rw(int type, struct kiocb *kiocb, bool compat)
+@@ -1460,6 +1461,10 @@ static ssize_t aio_setup_vectored_rw(int type, struct kiocb *kiocb, bool compat)
  	if (ret < 0)
  		goto out;
  
@@ -41954,12 +41340,11 @@ index 3b65ee7..aa6ec34 100644
 +		kiocb->ki_inline_vec = iovstack;
 +		kiocb->ki_iovec = &kiocb->ki_inline_vec;
 +	}
-+
  	kiocb->ki_nr_segs = kiocb->ki_nbytes;
  	kiocb->ki_cur_seg = 0;
  	/* ki_nbytes/left now reflect bytes instead of segs */
 diff --git a/fs/attr.c b/fs/attr.c
-index 95053ad..2cc93ca 100644
+index 73f69a6..cc501ba 100644
 --- a/fs/attr.c
 +++ b/fs/attr.c
 @@ -99,6 +99,7 @@ int inode_newsize_ok(const struct inode *inode, loff_t offset)
@@ -41971,7 +41356,7 @@ index 95053ad..2cc93ca 100644
  			goto out_sig;
  		if (offset > inode->i_sb->s_maxbytes)
 diff --git a/fs/autofs4/waitq.c b/fs/autofs4/waitq.c
-index f624cd0..3d9a559 100644
+index da8876d..9f3e6d8 100644
 --- a/fs/autofs4/waitq.c
 +++ b/fs/autofs4/waitq.c
 @@ -61,7 +61,7 @@ static int autofs4_write(struct autofs_sb_info *sbi,
@@ -41984,7 +41369,7 @@ index f624cd0..3d9a559 100644
  
  	sigpipe = sigismember(&current->pending.signal, SIGPIPE);
 diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c
-index 6e6d536..457113a 100644
+index e18da23..affc30e 100644
 --- a/fs/befs/linuxvfs.c
 +++ b/fs/befs/linuxvfs.c
 @@ -502,7 +502,7 @@ static void befs_put_link(struct dentry *dentry, struct nameidata *nd, void *p)
@@ -41997,7 +41382,7 @@ index 6e6d536..457113a 100644
  			kfree(link);
  	}
 diff --git a/fs/binfmt_aout.c b/fs/binfmt_aout.c
-index 1ff9405..f1e376a 100644
+index d146e18..12d1bd1 100644
 --- a/fs/binfmt_aout.c
 +++ b/fs/binfmt_aout.c
 @@ -16,6 +16,7 @@
@@ -42008,7 +41393,7 @@ index 1ff9405..f1e376a 100644
  #include <linux/stat.h>
  #include <linux/fcntl.h>
  #include <linux/ptrace.h>
-@@ -86,6 +87,8 @@ static int aout_core_dump(struct coredump_params *cprm)
+@@ -83,6 +84,8 @@ static int aout_core_dump(struct coredump_params *cprm)
  #endif
  #       define START_STACK(u)   ((void __user *)u.start_stack)
  
@@ -42017,7 +41402,7 @@ index 1ff9405..f1e376a 100644
  	fs = get_fs();
  	set_fs(KERNEL_DS);
  	has_dumped = 1;
-@@ -97,10 +100,12 @@ static int aout_core_dump(struct coredump_params *cprm)
+@@ -94,10 +97,12 @@ static int aout_core_dump(struct coredump_params *cprm)
  
  /* If the size of the dump file exceeds the rlimit, then see what would happen
     if we wrote the stack, but not the data area.  */
@@ -42030,7 +41415,7 @@ index 1ff9405..f1e376a 100644
  	if ((dump.u_ssize + 1) * PAGE_SIZE > cprm->limit)
  		dump.u_ssize = 0;
  
-@@ -234,6 +239,8 @@ static int load_aout_binary(struct linux_binprm * bprm, struct pt_regs * regs)
+@@ -231,6 +236,8 @@ static int load_aout_binary(struct linux_binprm * bprm, struct pt_regs * regs)
  	rlim = rlimit(RLIMIT_DATA);
  	if (rlim >= RLIM_INFINITY)
  		rlim = ~0;
@@ -42039,9 +41424,9 @@ index 1ff9405..f1e376a 100644
  	if (ex.a_data + ex.a_bss > rlim)
  		return -ENOMEM;
  
-@@ -269,6 +276,27 @@ static int load_aout_binary(struct linux_binprm * bprm, struct pt_regs * regs)
+@@ -265,6 +272,27 @@ static int load_aout_binary(struct linux_binprm * bprm, struct pt_regs * regs)
+ 
  	install_exec_creds(bprm);
-  	current->flags &= ~PF_FORKNOEXEC;
  
 +#if defined(CONFIG_PAX_NOEXEC) || defined(CONFIG_PAX_ASLR)
 +	current->mm->pax_flags = 0UL;
@@ -42067,17 +41452,17 @@ index 1ff9405..f1e376a 100644
  	if (N_MAGIC(ex) == OMAGIC) {
  		unsigned long text_addr, map_size;
  		loff_t pos;
-@@ -341,7 +369,7 @@ static int load_aout_binary(struct linux_binprm * bprm, struct pt_regs * regs)
+@@ -330,7 +358,7 @@ static int load_aout_binary(struct linux_binprm * bprm, struct pt_regs * regs)
+ 		}
  
- 		down_write(&current->mm->mmap_sem);
-  		error = do_mmap(bprm->file, N_DATADDR(ex), ex.a_data,
+ 		error = vm_mmap(bprm->file, N_DATADDR(ex), ex.a_data,
 -				PROT_READ | PROT_WRITE | PROT_EXEC,
 +				PROT_READ | PROT_WRITE,
  				MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE | MAP_EXECUTABLE,
  				fd_offset + ex.a_text);
- 		up_write(&current->mm->mmap_sem);
+ 		if (error != N_DATADDR(ex)) {
 diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c
-index 07d096c..25762af 100644
+index 16f7354..185d8dc 100644
 --- a/fs/binfmt_elf.c
 +++ b/fs/binfmt_elf.c
 @@ -32,6 +32,7 @@
@@ -42088,7 +41473,7 @@ index 07d096c..25762af 100644
  #include <asm/uaccess.h>
  #include <asm/param.h>
  #include <asm/page.h>
-@@ -51,6 +52,10 @@ static int elf_core_dump(struct coredump_params *cprm);
+@@ -52,6 +53,10 @@ static int elf_core_dump(struct coredump_params *cprm);
  #define elf_core_dump	NULL
  #endif
  
@@ -42099,7 +41484,7 @@ index 07d096c..25762af 100644
  #if ELF_EXEC_PAGESIZE > PAGE_SIZE
  #define ELF_MIN_ALIGN	ELF_EXEC_PAGESIZE
  #else
-@@ -70,6 +75,11 @@ static struct linux_binfmt elf_format = {
+@@ -71,6 +76,11 @@ static struct linux_binfmt elf_format = {
  	.load_binary	= load_elf_binary,
  	.load_shlib	= load_elf_library,
  	.core_dump	= elf_core_dump,
@@ -42111,7 +41496,7 @@ index 07d096c..25762af 100644
  	.min_coredump	= ELF_EXEC_PAGESIZE,
  };
  
-@@ -77,6 +87,8 @@ static struct linux_binfmt elf_format = {
+@@ -78,6 +88,8 @@ static struct linux_binfmt elf_format = {
  
  static int set_brk(unsigned long start, unsigned long end)
  {
@@ -42120,7 +41505,7 @@ index 07d096c..25762af 100644
  	start = ELF_PAGEALIGN(start);
  	end = ELF_PAGEALIGN(end);
  	if (end > start) {
-@@ -87,7 +99,7 @@ static int set_brk(unsigned long start, unsigned long end)
+@@ -86,7 +98,7 @@ static int set_brk(unsigned long start, unsigned long end)
  		if (BAD_ADDR(addr))
  			return addr;
  	}
@@ -42129,7 +41514,7 @@ index 07d096c..25762af 100644
  	return 0;
  }
  
-@@ -148,12 +160,13 @@ create_elf_tables(struct linux_binprm *bprm, struct elfhdr *exec,
+@@ -147,12 +159,13 @@ create_elf_tables(struct linux_binprm *bprm, struct elfhdr *exec,
  	elf_addr_t __user *u_rand_bytes;
  	const char *k_platform = ELF_PLATFORM;
  	const char *k_base_platform = ELF_BASE_PLATFORM;
@@ -42144,7 +41529,7 @@ index 07d096c..25762af 100644
  
  	/*
  	 * In some cases (e.g. Hyper-Threading), we want to avoid L1
-@@ -195,8 +208,12 @@ create_elf_tables(struct linux_binprm *bprm, struct elfhdr *exec,
+@@ -194,8 +207,12 @@ create_elf_tables(struct linux_binprm *bprm, struct elfhdr *exec,
  	 * Generate 16 random bytes for userspace PRNG seeding.
  	 */
  	get_random_bytes(k_rand_bytes, sizeof(k_rand_bytes));
@@ -42159,7 +41544,7 @@ index 07d096c..25762af 100644
  	if (__copy_to_user(u_rand_bytes, k_rand_bytes, sizeof(k_rand_bytes)))
  		return -EFAULT;
  
-@@ -308,9 +325,11 @@ create_elf_tables(struct linux_binprm *bprm, struct elfhdr *exec,
+@@ -307,9 +324,11 @@ create_elf_tables(struct linux_binprm *bprm, struct elfhdr *exec,
  		return -EFAULT;
  	current->mm->env_end = p;
  
@@ -42172,7 +41557,7 @@ index 07d096c..25762af 100644
  		return -EFAULT;
  	return 0;
  }
-@@ -381,10 +400,10 @@ static unsigned long load_elf_interp(struct elfhdr *interp_elf_ex,
+@@ -380,10 +399,10 @@ static unsigned long load_elf_interp(struct elfhdr *interp_elf_ex,
  {
  	struct elf_phdr *elf_phdata;
  	struct elf_phdr *eppnt;
@@ -42185,7 +41570,7 @@ index 07d096c..25762af 100644
  	unsigned long total_size;
  	int retval, i, size;
  
-@@ -430,6 +449,11 @@ static unsigned long load_elf_interp(struct elfhdr *interp_elf_ex,
+@@ -429,6 +448,11 @@ static unsigned long load_elf_interp(struct elfhdr *interp_elf_ex,
  		goto out_close;
  	}
  
@@ -42197,7 +41582,7 @@ index 07d096c..25762af 100644
  	eppnt = elf_phdata;
  	for (i = 0; i < interp_elf_ex->e_phnum; i++, eppnt++) {
  		if (eppnt->p_type == PT_LOAD) {
-@@ -473,8 +497,8 @@ static unsigned long load_elf_interp(struct elfhdr *interp_elf_ex,
+@@ -472,8 +496,8 @@ static unsigned long load_elf_interp(struct elfhdr *interp_elf_ex,
  			k = load_addr + eppnt->p_vaddr;
  			if (BAD_ADDR(k) ||
  			    eppnt->p_filesz > eppnt->p_memsz ||
@@ -42208,7 +41593,7 @@ index 07d096c..25762af 100644
  				error = -ENOMEM;
  				goto out_close;
  			}
-@@ -528,6 +552,351 @@ out:
+@@ -525,6 +549,351 @@ out:
  	return error;
  }
  
@@ -42560,7 +41945,7 @@ index 07d096c..25762af 100644
  /*
   * These are the functions used to load ELF style executables and shared
   * libraries.  There is no binary dependent code anywhere else.
-@@ -544,6 +913,11 @@ static unsigned long randomize_stack_top(unsigned long stack_top)
+@@ -541,6 +910,11 @@ static unsigned long randomize_stack_top(unsigned long stack_top)
  {
  	unsigned int random_variable = 0;
  
@@ -42572,7 +41957,7 @@ index 07d096c..25762af 100644
  	if ((current->flags & PF_RANDOMIZE) &&
  		!(current->personality & ADDR_NO_RANDOMIZE)) {
  		random_variable = get_random_int() & STACK_RND_MASK;
-@@ -562,7 +936,7 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs)
+@@ -559,7 +933,7 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs)
   	unsigned long load_addr = 0, load_bias = 0;
  	int load_addr_set = 0;
  	char * elf_interpreter = NULL;
@@ -42581,7 +41966,7 @@ index 07d096c..25762af 100644
  	struct elf_phdr *elf_ppnt, *elf_phdata;
  	unsigned long elf_bss, elf_brk;
  	int retval, i;
-@@ -572,11 +946,11 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs)
+@@ -569,11 +943,11 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs)
  	unsigned long start_code, end_code, start_data, end_data;
  	unsigned long reloc_func_desc __maybe_unused = 0;
  	int executable_stack = EXSTACK_DEFAULT;
@@ -42594,10 +41979,10 @@ index 07d096c..25762af 100644
  
  	loc = kmalloc(sizeof(*loc), GFP_KERNEL);
  	if (!loc) {
-@@ -713,11 +1087,81 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs)
+@@ -709,11 +1083,81 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs)
+ 		goto out_free_dentry;
  
  	/* OK, This is the point of no return */
- 	current->flags &= ~PF_FORKNOEXEC;
 -	current->mm->def_flags = def_flags;
 +
 +#if defined(CONFIG_PAX_NOEXEC) || defined(CONFIG_PAX_ASLR)
@@ -42677,7 +42062,7 @@ index 07d096c..25762af 100644
  	if (elf_read_implies_exec(loc->elf_ex, executable_stack))
  		current->personality |= READ_IMPLIES_EXEC;
  
-@@ -808,6 +1252,20 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs)
+@@ -804,6 +1248,20 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs)
  #else
  			load_bias = ELF_PAGESTART(ELF_ET_DYN_BASE - vaddr);
  #endif
@@ -42698,7 +42083,7 @@ index 07d096c..25762af 100644
  		}
  
  		error = elf_map(bprm->file, load_bias + vaddr, elf_ppnt,
-@@ -840,9 +1298,9 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs)
+@@ -836,9 +1294,9 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs)
  		 * allowed task size. Note that p_filesz must always be
  		 * <= p_memsz so it is only necessary to check p_memsz.
  		 */
@@ -42711,7 +42096,7 @@ index 07d096c..25762af 100644
  			/* set_brk can never work. Avoid overflows. */
  			send_sig(SIGKILL, current, 0);
  			retval = -EINVAL;
-@@ -881,11 +1339,40 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs)
+@@ -877,11 +1335,40 @@ static int load_elf_binary(struct linux_binprm *bprm, struct pt_regs *regs)
  		goto out_free_dentry;
  	}
  	if (likely(elf_bss != elf_brk) && unlikely(padzero(elf_bss))) {
@@ -42755,7 +42140,7 @@ index 07d096c..25762af 100644
  	if (elf_interpreter) {
  		unsigned long uninitialized_var(interp_map_addr);
  
-@@ -1098,7 +1585,7 @@ out:
+@@ -1109,7 +1596,7 @@ static bool always_dump_vma(struct vm_area_struct *vma)
   * Decide what to dump of a segment, part, all or none.
   */
  static unsigned long vma_dump_size(struct vm_area_struct *vma,
@@ -42764,7 +42149,7 @@ index 07d096c..25762af 100644
  {
  #define FILTER(type)	(mm_flags & (1UL << MMF_DUMP_##type))
  
-@@ -1132,7 +1619,7 @@ static unsigned long vma_dump_size(struct vm_area_struct *vma,
+@@ -1146,7 +1633,7 @@ static unsigned long vma_dump_size(struct vm_area_struct *vma,
  	if (vma->vm_file == NULL)
  		return 0;
  
@@ -42773,7 +42158,7 @@ index 07d096c..25762af 100644
  		goto whole;
  
  	/*
-@@ -1354,9 +1841,9 @@ static void fill_auxv_note(struct memelfnote *note, struct mm_struct *mm)
+@@ -1368,9 +1855,9 @@ static void fill_auxv_note(struct memelfnote *note, struct mm_struct *mm)
  {
  	elf_addr_t *auxv = (elf_addr_t *) mm->saved_auxv;
  	int i = 0;
@@ -42785,7 +42170,7 @@ index 07d096c..25762af 100644
  	fill_note(note, "CORE", NT_AUXV, i * sizeof(elf_addr_t), auxv);
  }
  
-@@ -1862,14 +2349,14 @@ static void fill_extnum_info(struct elfhdr *elf, struct elf_shdr *shdr4extnum,
+@@ -1892,14 +2379,14 @@ static void fill_extnum_info(struct elfhdr *elf, struct elf_shdr *shdr4extnum,
  }
  
  static size_t elf_core_vma_data_size(struct vm_area_struct *gate_vma,
@@ -42802,7 +42187,7 @@ index 07d096c..25762af 100644
  	return size;
  }
  
-@@ -1963,7 +2450,7 @@ static int elf_core_dump(struct coredump_params *cprm)
+@@ -1993,7 +2480,7 @@ static int elf_core_dump(struct coredump_params *cprm)
  
  	dataoff = offset = roundup(offset, ELF_EXEC_PAGESIZE);
  
@@ -42811,7 +42196,7 @@ index 07d096c..25762af 100644
  	offset += elf_core_extra_data_size();
  	e_shoff = offset;
  
-@@ -1977,10 +2464,12 @@ static int elf_core_dump(struct coredump_params *cprm)
+@@ -2007,10 +2494,12 @@ static int elf_core_dump(struct coredump_params *cprm)
  	offset = dataoff;
  
  	size += sizeof(*elf);
@@ -42824,7 +42209,7 @@ index 07d096c..25762af 100644
  	if (size > cprm->limit
  	    || !dump_write(cprm->file, phdr4note, sizeof(*phdr4note)))
  		goto end_coredump;
-@@ -1994,7 +2483,7 @@ static int elf_core_dump(struct coredump_params *cprm)
+@@ -2024,7 +2513,7 @@ static int elf_core_dump(struct coredump_params *cprm)
  		phdr.p_offset = offset;
  		phdr.p_vaddr = vma->vm_start;
  		phdr.p_paddr = 0;
@@ -42833,7 +42218,7 @@ index 07d096c..25762af 100644
  		phdr.p_memsz = vma->vm_end - vma->vm_start;
  		offset += phdr.p_filesz;
  		phdr.p_flags = vma->vm_flags & VM_READ ? PF_R : 0;
-@@ -2005,6 +2494,7 @@ static int elf_core_dump(struct coredump_params *cprm)
+@@ -2035,6 +2524,7 @@ static int elf_core_dump(struct coredump_params *cprm)
  		phdr.p_align = ELF_EXEC_PAGESIZE;
  
  		size += sizeof(phdr);
@@ -42841,7 +42226,7 @@ index 07d096c..25762af 100644
  		if (size > cprm->limit
  		    || !dump_write(cprm->file, &phdr, sizeof(phdr)))
  			goto end_coredump;
-@@ -2029,7 +2519,7 @@ static int elf_core_dump(struct coredump_params *cprm)
+@@ -2059,7 +2549,7 @@ static int elf_core_dump(struct coredump_params *cprm)
  		unsigned long addr;
  		unsigned long end;
  
@@ -42850,7 +42235,7 @@ index 07d096c..25762af 100644
  
  		for (addr = vma->vm_start; addr < end; addr += PAGE_SIZE) {
  			struct page *page;
-@@ -2038,6 +2528,7 @@ static int elf_core_dump(struct coredump_params *cprm)
+@@ -2068,6 +2558,7 @@ static int elf_core_dump(struct coredump_params *cprm)
  			page = get_dump_page(addr);
  			if (page) {
  				void *kaddr = kmap(page);
@@ -42858,7 +42243,7 @@ index 07d096c..25762af 100644
  				stop = ((size += PAGE_SIZE) > cprm->limit) ||
  					!dump_write(cprm->file, kaddr,
  						    PAGE_SIZE);
-@@ -2055,6 +2546,7 @@ static int elf_core_dump(struct coredump_params *cprm)
+@@ -2085,6 +2576,7 @@ static int elf_core_dump(struct coredump_params *cprm)
  
  	if (e_phnum == PN_XNUM) {
  		size += sizeof(*shdr4extnum);
@@ -42866,7 +42251,7 @@ index 07d096c..25762af 100644
  		if (size > cprm->limit
  		    || !dump_write(cprm->file, shdr4extnum,
  				   sizeof(*shdr4extnum)))
-@@ -2075,6 +2567,97 @@ out:
+@@ -2105,6 +2597,97 @@ out:
  
  #endif		/* CONFIG_ELF_CORE */
  
@@ -42963,12 +42348,12 @@ index 07d096c..25762af 100644
 +
  static int __init init_elf_binfmt(void)
  {
- 	return register_binfmt(&elf_format);
+ 	register_binfmt(&elf_format);
 diff --git a/fs/binfmt_flat.c b/fs/binfmt_flat.c
-index 1bffbe0..c8c283e 100644
+index 6b2daf9..a70dccb 100644
 --- a/fs/binfmt_flat.c
 +++ b/fs/binfmt_flat.c
-@@ -567,7 +567,9 @@ static int load_flat_file(struct linux_binprm * bprm,
+@@ -562,7 +562,9 @@ static int load_flat_file(struct linux_binprm * bprm,
  				realdatastart = (unsigned long) -ENOMEM;
  			printk("Unable to allocate RAM for process data, errno %d\n",
  					(int)-realdatastart);
@@ -42978,7 +42363,7 @@ index 1bffbe0..c8c283e 100644
  			ret = realdatastart;
  			goto err;
  		}
-@@ -591,8 +593,10 @@ static int load_flat_file(struct linux_binprm * bprm,
+@@ -586,8 +588,10 @@ static int load_flat_file(struct linux_binprm * bprm,
  		}
  		if (IS_ERR_VALUE(result)) {
  			printk("Unable to read data+bss, errno %d\n", (int)-result);
@@ -42989,7 +42374,7 @@ index 1bffbe0..c8c283e 100644
  			ret = result;
  			goto err;
  		}
-@@ -661,8 +665,10 @@ static int load_flat_file(struct linux_binprm * bprm,
+@@ -654,8 +658,10 @@ static int load_flat_file(struct linux_binprm * bprm,
  		}
  		if (IS_ERR_VALUE(result)) {
  			printk("Unable to read code+data+bss, errno %d\n",(int)-result);
@@ -43001,7 +42386,7 @@ index 1bffbe0..c8c283e 100644
  			goto err;
  		}
 diff --git a/fs/bio.c b/fs/bio.c
-index 4fc4dbb..d3a5b93 100644
+index 84da885..2149cd9 100644
 --- a/fs/bio.c
 +++ b/fs/bio.c
 @@ -838,7 +838,7 @@ struct bio *bio_copy_user_iov(struct request_queue *q,
@@ -43023,10 +42408,10 @@ index 4fc4dbb..d3a5b93 100644
  	__bio_for_each_segment(bvec, bio, i, 0) {
  		char *addr = page_address(bvec->bv_page);
 diff --git a/fs/block_dev.c b/fs/block_dev.c
-index 236dd6c..46c6530 100644
+index ba11c30..623d736 100644
 --- a/fs/block_dev.c
 +++ b/fs/block_dev.c
-@@ -703,7 +703,7 @@ static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
+@@ -704,7 +704,7 @@ static bool bd_may_claim(struct block_device *bdev, struct block_device *whole,
  	else if (bdev->bd_contains == bdev)
  		return true;  	 /* is a whole device which isn't held */
  
@@ -43036,10 +42421,10 @@ index 236dd6c..46c6530 100644
  	else if (whole->bd_holder != NULL)
  		return false;	 /* is a partition of a held device */
 diff --git a/fs/btrfs/check-integrity.c b/fs/btrfs/check-integrity.c
-index d986824..af1befd 100644
+index c053e90..e5f1afc 100644
 --- a/fs/btrfs/check-integrity.c
 +++ b/fs/btrfs/check-integrity.c
-@@ -157,7 +157,7 @@ struct btrfsic_block {
+@@ -156,7 +156,7 @@ struct btrfsic_block {
  	union {
  		bio_end_io_t *bio;
  		bh_end_io_t *bh;
@@ -43049,10 +42434,10 @@ index d986824..af1befd 100644
  	u64 flush_gen; /* only valid if !never_written */
  };
 diff --git a/fs/btrfs/ctree.c b/fs/btrfs/ctree.c
-index 0639a55..7d9e07f 100644
+index 4106264..8157ede 100644
 --- a/fs/btrfs/ctree.c
 +++ b/fs/btrfs/ctree.c
-@@ -488,9 +488,12 @@ static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
+@@ -513,9 +513,12 @@ static noinline int __btrfs_cow_block(struct btrfs_trans_handle *trans,
  		free_extent_buffer(buf);
  		add_root_to_dirty_list(root);
  	} else {
@@ -43069,10 +42454,10 @@ index 0639a55..7d9e07f 100644
  
  		WARN_ON(trans->transid != btrfs_header_generation(parent));
 diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
-index 892b347..b3db246 100644
+index 61b16c6..b492c09 100644
 --- a/fs/btrfs/inode.c
 +++ b/fs/btrfs/inode.c
-@@ -6930,7 +6930,7 @@ fail:
+@@ -7071,7 +7071,7 @@ fail:
  	return -ENOMEM;
  }
  
@@ -43081,7 +42466,7 @@ index 892b347..b3db246 100644
  			 struct dentry *dentry, struct kstat *stat)
  {
  	struct inode *inode = dentry->d_inode;
-@@ -6944,6 +6944,14 @@ static int btrfs_getattr(struct vfsmount *mnt,
+@@ -7085,6 +7085,14 @@ static int btrfs_getattr(struct vfsmount *mnt,
  	return 0;
  }
  
@@ -43097,10 +42482,10 @@ index 892b347..b3db246 100644
   * If a file is moved, it will inherit the cow and compression flags of the new
   * directory.
 diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c
-index 1b36f19..5ac7360 100644
+index 14f8e1f..ab8d81f 100644
 --- a/fs/btrfs/ioctl.c
 +++ b/fs/btrfs/ioctl.c
-@@ -2783,9 +2783,12 @@ long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
+@@ -2882,9 +2882,12 @@ long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
  	for (i = 0; i < num_types; i++) {
  		struct btrfs_space_info *tmp;
  
@@ -43113,7 +42498,7 @@ index 1b36f19..5ac7360 100644
  		info = NULL;
  		rcu_read_lock();
  		list_for_each_entry_rcu(tmp, &root->fs_info->space_info,
-@@ -2807,15 +2810,12 @@ long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
+@@ -2906,15 +2909,12 @@ long btrfs_ioctl_space_info(struct btrfs_root *root, void __user *arg)
  				memcpy(dest, &space, sizeof(space));
  				dest++;
  				space_args.total_spaces++;
@@ -43131,10 +42516,10 @@ index 1b36f19..5ac7360 100644
  
  	if (copy_to_user(user_dest, dest_orig, alloc_size))
 diff --git a/fs/btrfs/relocation.c b/fs/btrfs/relocation.c
-index 8c1aae2..1e46446 100644
+index 646ee21..f020f87 100644
 --- a/fs/btrfs/relocation.c
 +++ b/fs/btrfs/relocation.c
-@@ -1244,7 +1244,7 @@ static int __update_reloc_root(struct btrfs_root *root, int del)
+@@ -1268,7 +1268,7 @@ static int __update_reloc_root(struct btrfs_root *root, int del)
  	}
  	spin_unlock(&rc->reloc_root_tree.lock);
  
@@ -43242,7 +42627,7 @@ index bd6bc1b..b627b53 100644
  
  #else
 diff --git a/fs/cachefiles/namei.c b/fs/cachefiles/namei.c
-index a0358c2..d6137f2 100644
+index 7f0771d..87d4f36 100644
 --- a/fs/cachefiles/namei.c
 +++ b/fs/cachefiles/namei.c
 @@ -318,7 +318,7 @@ try_again:
@@ -43320,7 +42705,7 @@ index 3e8094b..cb3ff3d 100644
  	}
  
 diff --git a/fs/cifs/cifs_debug.c b/fs/cifs/cifs_debug.c
-index 24b3dfc..3cd5454 100644
+index 2704646..c581c91 100644
 --- a/fs/cifs/cifs_debug.c
 +++ b/fs/cifs/cifs_debug.c
 @@ -265,8 +265,8 @@ static ssize_t cifs_stats_proc_write(struct file *file,
@@ -43453,10 +42838,10 @@ index 24b3dfc..3cd5454 100644
  		}
  	}
 diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c
-index 70dd381..b8ce03b 100644
+index 541ef81..a78deb8 100644
 --- a/fs/cifs/cifsfs.c
 +++ b/fs/cifs/cifsfs.c
-@@ -989,7 +989,7 @@ cifs_init_request_bufs(void)
+@@ -985,7 +985,7 @@ cifs_init_request_bufs(void)
  	cifs_req_cachep = kmem_cache_create("cifs_request",
  					    CIFSMaxBufSize +
  					    MAX_CIFS_HDR_SIZE, 0,
@@ -43465,7 +42850,7 @@ index 70dd381..b8ce03b 100644
  	if (cifs_req_cachep == NULL)
  		return -ENOMEM;
  
-@@ -1016,7 +1016,7 @@ cifs_init_request_bufs(void)
+@@ -1012,7 +1012,7 @@ cifs_init_request_bufs(void)
  	efficient to alloc 1 per page off the slab compared to 17K (5page)
  	alloc of large cifs buffers even when page debugging is on */
  	cifs_sm_req_cachep = kmem_cache_create("cifs_small_rq",
@@ -43474,7 +42859,7 @@ index 70dd381..b8ce03b 100644
  			NULL);
  	if (cifs_sm_req_cachep == NULL) {
  		mempool_destroy(cifs_req_poolp);
-@@ -1101,8 +1101,8 @@ init_cifs(void)
+@@ -1097,8 +1097,8 @@ init_cifs(void)
  	atomic_set(&bufAllocCount, 0);
  	atomic_set(&smBufAllocCount, 0);
  #ifdef CONFIG_CIFS_STATS2
@@ -43486,10 +42871,10 @@ index 70dd381..b8ce03b 100644
  
  	atomic_set(&midCount, 0);
 diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h
-index d47d20a..77e8b33 100644
+index 4ff6313..815d7fc 100644
 --- a/fs/cifs/cifsglob.h
 +++ b/fs/cifs/cifsglob.h
-@@ -388,28 +388,28 @@ struct cifs_tcon {
+@@ -438,28 +438,28 @@ struct cifs_tcon {
  	__u16 Flags;		/* optional support bits */
  	enum statusEnum tidStatus;
  #ifdef CONFIG_CIFS_STATS
@@ -43540,7 +42925,7 @@ index d47d20a..77e8b33 100644
  #ifdef CONFIG_CIFS_STATS2
  	unsigned long long time_writes;
  	unsigned long long time_reads;
-@@ -624,7 +624,7 @@ convert_delimiter(char *path, char delim)
+@@ -676,7 +676,7 @@ convert_delimiter(char *path, char delim)
  }
  
  #ifdef CONFIG_CIFS_STATS
@@ -43549,7 +42934,7 @@ index d47d20a..77e8b33 100644
  
  static inline void cifs_stats_bytes_written(struct cifs_tcon *tcon,
  					    unsigned int bytes)
-@@ -983,8 +983,8 @@ GLOBAL_EXTERN atomic_t tconInfoReconnectCount;
+@@ -1035,8 +1035,8 @@ GLOBAL_EXTERN atomic_t tconInfoReconnectCount;
  /* Various Debug counters */
  GLOBAL_EXTERN atomic_t bufAllocCount;    /* current number allocated  */
  #ifdef CONFIG_CIFS_STATS2
@@ -43574,7 +42959,7 @@ index 6b0e064..94e6c3c 100644
  		kfree(p);
  }
 diff --git a/fs/cifs/misc.c b/fs/cifs/misc.c
-index 703ef5c..2a44ed5 100644
+index c29d1aa..58018da 100644
 --- a/fs/cifs/misc.c
 +++ b/fs/cifs/misc.c
 @@ -156,7 +156,7 @@ cifs_buf_get(void)
@@ -43644,10 +43029,10 @@ index 6901578..d402eb5 100644
  
  	return hit;
 diff --git a/fs/compat.c b/fs/compat.c
-index 07880ba..3fb2862 100644
+index f2944ac..62845d2 100644
 --- a/fs/compat.c
 +++ b/fs/compat.c
-@@ -491,7 +491,7 @@ compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p)
+@@ -490,7 +490,7 @@ compat_sys_io_setup(unsigned nr_reqs, u32 __user *ctx32p)
  
  	set_fs(KERNEL_DS);
  	/* The __user pointer cast is valid because of the set_fs() */
@@ -43656,7 +43041,7 @@ index 07880ba..3fb2862 100644
  	set_fs(oldfs);
  	/* truncating is ok because it's a user address */
  	if (!ret)
-@@ -549,7 +549,7 @@ ssize_t compat_rw_copy_check_uvector(int type,
+@@ -548,7 +548,7 @@ ssize_t compat_rw_copy_check_uvector(int type,
  		goto out;
  
  	ret = -EINVAL;
@@ -43665,7 +43050,7 @@ index 07880ba..3fb2862 100644
  		goto out;
  	if (nr_segs > fast_segs) {
  		ret = -ENOMEM;
-@@ -832,6 +832,7 @@ struct compat_old_linux_dirent {
+@@ -831,6 +831,7 @@ struct compat_old_linux_dirent {
  
  struct compat_readdir_callback {
  	struct compat_old_linux_dirent __user *dirent;
@@ -43673,7 +43058,7 @@ index 07880ba..3fb2862 100644
  	int result;
  };
  
-@@ -849,6 +850,10 @@ static int compat_fillonedir(void *__buf, const char *name, int namlen,
+@@ -848,6 +849,10 @@ static int compat_fillonedir(void *__buf, const char *name, int namlen,
  		buf->result = -EOVERFLOW;
  		return -EOVERFLOW;
  	}
@@ -43684,7 +43069,7 @@ index 07880ba..3fb2862 100644
  	buf->result++;
  	dirent = buf->dirent;
  	if (!access_ok(VERIFY_WRITE, dirent,
-@@ -881,6 +886,7 @@ asmlinkage long compat_sys_old_readdir(unsigned int fd,
+@@ -880,6 +885,7 @@ asmlinkage long compat_sys_old_readdir(unsigned int fd,
  
  	buf.result = 0;
  	buf.dirent = dirent;
@@ -43692,7 +43077,7 @@ index 07880ba..3fb2862 100644
  
  	error = vfs_readdir(file, compat_fillonedir, &buf);
  	if (buf.result)
-@@ -901,6 +907,7 @@ struct compat_linux_dirent {
+@@ -900,6 +906,7 @@ struct compat_linux_dirent {
  struct compat_getdents_callback {
  	struct compat_linux_dirent __user *current_dir;
  	struct compat_linux_dirent __user *previous;
@@ -43700,7 +43085,7 @@ index 07880ba..3fb2862 100644
  	int count;
  	int error;
  };
-@@ -922,6 +929,10 @@ static int compat_filldir(void *__buf, const char *name, int namlen,
+@@ -921,6 +928,10 @@ static int compat_filldir(void *__buf, const char *name, int namlen,
  		buf->error = -EOVERFLOW;
  		return -EOVERFLOW;
  	}
@@ -43711,7 +43096,7 @@ index 07880ba..3fb2862 100644
  	dirent = buf->previous;
  	if (dirent) {
  		if (__put_user(offset, &dirent->d_off))
-@@ -969,6 +980,7 @@ asmlinkage long compat_sys_getdents(unsigned int fd,
+@@ -968,6 +979,7 @@ asmlinkage long compat_sys_getdents(unsigned int fd,
  	buf.previous = NULL;
  	buf.count = count;
  	buf.error = 0;
@@ -43719,7 +43104,7 @@ index 07880ba..3fb2862 100644
  
  	error = vfs_readdir(file, compat_filldir, &buf);
  	if (error >= 0)
-@@ -990,6 +1002,7 @@ out:
+@@ -989,6 +1001,7 @@ out:
  struct compat_getdents_callback64 {
  	struct linux_dirent64 __user *current_dir;
  	struct linux_dirent64 __user *previous;
@@ -43727,7 +43112,7 @@ index 07880ba..3fb2862 100644
  	int count;
  	int error;
  };
-@@ -1006,6 +1019,10 @@ static int compat_filldir64(void * __buf, const char * name, int namlen, loff_t
+@@ -1005,6 +1018,10 @@ static int compat_filldir64(void * __buf, const char * name, int namlen, loff_t
  	buf->error = -EINVAL;	/* only used if we fail.. */
  	if (reclen > buf->count)
  		return -EINVAL;
@@ -43738,7 +43123,7 @@ index 07880ba..3fb2862 100644
  	dirent = buf->previous;
  
  	if (dirent) {
-@@ -1057,13 +1074,14 @@ asmlinkage long compat_sys_getdents64(unsigned int fd,
+@@ -1056,13 +1073,14 @@ asmlinkage long compat_sys_getdents64(unsigned int fd,
  	buf.previous = NULL;
  	buf.count = count;
  	buf.error = 0;
@@ -43773,10 +43158,10 @@ index 112e45a..b59845b 100644
  
  /*
 diff --git a/fs/compat_ioctl.c b/fs/compat_ioctl.c
-index a26bea1..ae23e72 100644
+index debdfe0..75d31d4 100644
 --- a/fs/compat_ioctl.c
 +++ b/fs/compat_ioctl.c
-@@ -211,6 +211,8 @@ static int do_video_set_spu_palette(unsigned int fd, unsigned int cmd,
+@@ -210,6 +210,8 @@ static int do_video_set_spu_palette(unsigned int fd, unsigned int cmd,
  
  	err  = get_user(palp, &up->palette);
  	err |= get_user(length, &up->length);
@@ -43785,7 +43170,7 @@ index a26bea1..ae23e72 100644
  
  	up_native = compat_alloc_user_space(sizeof(struct video_spu_palette));
  	err  = put_user(compat_ptr(palp), &up_native->palette);
-@@ -622,7 +624,7 @@ static int serial_struct_ioctl(unsigned fd, unsigned cmd,
+@@ -621,7 +623,7 @@ static int serial_struct_ioctl(unsigned fd, unsigned cmd,
  			return -EFAULT;
                  if (__get_user(udata, &ss32->iomem_base))
  			return -EFAULT;
@@ -43794,7 +43179,7 @@ index a26bea1..ae23e72 100644
                  if (__get_user(ss.iomem_reg_shift, &ss32->iomem_reg_shift) ||
  		    __get_user(ss.port_high, &ss32->port_high))
  			return -EFAULT;
-@@ -797,7 +799,7 @@ static int compat_ioctl_preallocate(struct file *file,
+@@ -796,7 +798,7 @@ static int compat_ioctl_preallocate(struct file *file,
  	    copy_in_user(&p->l_len,	&p32->l_len,	sizeof(s64)) ||
  	    copy_in_user(&p->l_sysid,	&p32->l_sysid,	sizeof(s32)) ||
  	    copy_in_user(&p->l_pid,	&p32->l_pid,	sizeof(u32)) ||
@@ -43803,7 +43188,7 @@ index a26bea1..ae23e72 100644
  		return -EFAULT;
  
  	return ioctl_preallocate(file, p);
-@@ -1611,8 +1613,8 @@ asmlinkage long compat_sys_ioctl(unsigned int fd, unsigned int cmd,
+@@ -1610,8 +1612,8 @@ asmlinkage long compat_sys_ioctl(unsigned int fd, unsigned int cmd,
  static int __init init_sys32_ioctl_cmp(const void *p, const void *q)
  {
  	unsigned int a, b;
@@ -43815,10 +43200,10 @@ index a26bea1..ae23e72 100644
  		return 1;
  	if (a < b)
 diff --git a/fs/configfs/dir.c b/fs/configfs/dir.c
-index 5ddd7eb..c18bf04 100644
+index 7e6c52d..94bc756 100644
 --- a/fs/configfs/dir.c
 +++ b/fs/configfs/dir.c
-@@ -1575,7 +1575,8 @@ static int configfs_readdir(struct file * filp, void * dirent, filldir_t filldir
+@@ -1564,7 +1564,8 @@ static int configfs_readdir(struct file * filp, void * dirent, filldir_t filldir
  			}
  			for (p=q->next; p!= &parent_sd->s_children; p=p->next) {
  				struct configfs_dirent *next;
@@ -43828,7 +43213,7 @@ index 5ddd7eb..c18bf04 100644
  				int len;
  				struct inode *inode = NULL;
  
-@@ -1585,7 +1586,12 @@ static int configfs_readdir(struct file * filp, void * dirent, filldir_t filldir
+@@ -1574,7 +1575,12 @@ static int configfs_readdir(struct file * filp, void * dirent, filldir_t filldir
  					continue;
  
  				name = configfs_get_name(next);
@@ -43843,24 +43228,10 @@ index 5ddd7eb..c18bf04 100644
  				/*
  				 * We'll have a dentry and an inode for
 diff --git a/fs/dcache.c b/fs/dcache.c
-index 2576d14..0cec38d 100644
+index b80531c..8ca7e2d 100644
 --- a/fs/dcache.c
 +++ b/fs/dcache.c
-@@ -105,10 +105,10 @@ static unsigned int d_hash_shift __read_mostly;
- static struct hlist_bl_head *dentry_hashtable __read_mostly;
- 
- static inline struct hlist_bl_head *d_hash(const struct dentry *parent,
--					unsigned long hash)
-+					unsigned int hash)
- {
--	hash += ((unsigned long) parent ^ GOLDEN_RATIO_PRIME) / L1_CACHE_BYTES;
--	hash = hash ^ ((hash ^ GOLDEN_RATIO_PRIME) >> D_HASHBITS);
-+	hash += (unsigned long) parent / L1_CACHE_BYTES;
-+	hash = hash + (hash >> D_HASHBITS);
- 	return dentry_hashtable + (hash & D_HASHMASK);
- }
- 
-@@ -3067,7 +3067,7 @@ void __init vfs_caches_init(unsigned long mempages)
+@@ -3084,7 +3084,7 @@ void __init vfs_caches_init(unsigned long mempages)
  	mempages -= reserve;
  
  	names_cachep = kmem_cache_create("names_cache", PATH_MAX, 0,
@@ -43870,10 +43241,10 @@ index 2576d14..0cec38d 100644
  	dcache_init();
  	inode_init();
 diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c
-index 956d5dd..e755e04 100644
+index b80bc84..0d46d1a 100644
 --- a/fs/debugfs/inode.c
 +++ b/fs/debugfs/inode.c
-@@ -261,7 +261,11 @@ EXPORT_SYMBOL_GPL(debugfs_create_file);
+@@ -408,7 +408,11 @@ EXPORT_SYMBOL_GPL(debugfs_create_file);
  struct dentry *debugfs_create_dir(const char *name, struct dentry *parent)
  {
  	return debugfs_create_file(name, 
@@ -43952,7 +43323,7 @@ index b2a34a1..162fa69 100644
  	return rc;
  }
 diff --git a/fs/exec.c b/fs/exec.c
-index ae42277..32c9035 100644
+index b1fd202..9d037f3 100644
 --- a/fs/exec.c
 +++ b/fs/exec.c
 @@ -55,6 +55,13 @@
@@ -43969,9 +43340,9 @@ index ae42277..32c9035 100644
  
  #include <asm/uaccess.h>
  #include <asm/mmu_context.h>
-@@ -63,6 +70,15 @@
- #include <trace/events/task.h>
- #include "internal.h"
+@@ -66,6 +73,15 @@
+ 
+ #include <trace/events/sched.h>
  
 +#ifndef CONFIG_PAX_HAVE_ACL_FLAGS
 +void __weak pax_set_initial_flags(struct linux_binprm *bprm) {}
@@ -43985,7 +43356,7 @@ index ae42277..32c9035 100644
  int core_uses_pid;
  char core_pattern[CORENAME_MAX_SIZE] = "core";
  unsigned int core_pipe_limit;
-@@ -72,7 +88,7 @@ struct core_name {
+@@ -75,7 +91,7 @@ struct core_name {
  	char *corename;
  	int used, size;
  };
@@ -43994,7 +43365,7 @@ index ae42277..32c9035 100644
  
  /* The maximal length of core_pattern is also specified in sysctl.c */
  
-@@ -190,18 +206,10 @@ static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
+@@ -191,18 +207,10 @@ static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
  		int write)
  {
  	struct page *page;
@@ -44016,7 +43387,7 @@ index ae42277..32c9035 100644
  		return NULL;
  
  	if (write) {
-@@ -217,6 +225,17 @@ static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
+@@ -218,6 +226,17 @@ static struct page *get_arg_page(struct linux_binprm *bprm, unsigned long pos,
  		if (size <= ARG_MAX)
  			return page;
  
@@ -44034,7 +43405,7 @@ index ae42277..32c9035 100644
  		/*
  		 * Limit to 1/4-th the stack size for the argv+env strings.
  		 * This ensures that:
-@@ -276,6 +295,11 @@ static int __bprm_mm_init(struct linux_binprm *bprm)
+@@ -277,6 +296,11 @@ static int __bprm_mm_init(struct linux_binprm *bprm)
  	vma->vm_end = STACK_TOP_MAX;
  	vma->vm_start = vma->vm_end - PAGE_SIZE;
  	vma->vm_flags = VM_STACK_FLAGS | VM_STACK_INCOMPLETE_SETUP;
@@ -44046,7 +43417,7 @@ index ae42277..32c9035 100644
  	vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
  	INIT_LIST_HEAD(&vma->anon_vma_chain);
  
-@@ -290,6 +314,12 @@ static int __bprm_mm_init(struct linux_binprm *bprm)
+@@ -291,6 +315,12 @@ static int __bprm_mm_init(struct linux_binprm *bprm)
  	mm->stack_vm = mm->total_vm = 1;
  	up_write(&mm->mmap_sem);
  	bprm->p = vma->vm_end - sizeof(void *);
@@ -44059,7 +43430,7 @@ index ae42277..32c9035 100644
  	return 0;
  err:
  	up_write(&mm->mmap_sem);
-@@ -398,19 +428,7 @@ err:
+@@ -399,19 +429,7 @@ err:
  	return err;
  }
  
@@ -44080,7 +43451,7 @@ index ae42277..32c9035 100644
  {
  	const char __user *native;
  
-@@ -419,14 +437,14 @@ static const char __user *get_user_arg_ptr(struct user_arg_ptr argv, int nr)
+@@ -420,14 +438,14 @@ static const char __user *get_user_arg_ptr(struct user_arg_ptr argv, int nr)
  		compat_uptr_t compat;
  
  		if (get_user(compat, argv.ptr.compat + nr))
@@ -44097,7 +43468,7 @@ index ae42277..32c9035 100644
  
  	return native;
  }
-@@ -445,7 +463,7 @@ static int count(struct user_arg_ptr argv, int max)
+@@ -446,7 +464,7 @@ static int count(struct user_arg_ptr argv, int max)
  			if (!p)
  				break;
  
@@ -44106,7 +43477,7 @@ index ae42277..32c9035 100644
  				return -EFAULT;
  
  			if (i++ >= max)
-@@ -479,7 +497,7 @@ static int copy_strings(int argc, struct user_arg_ptr argv,
+@@ -480,7 +498,7 @@ static int copy_strings(int argc, struct user_arg_ptr argv,
  
  		ret = -EFAULT;
  		str = get_user_arg_ptr(argv, argc);
@@ -44115,7 +43486,7 @@ index ae42277..32c9035 100644
  			goto out;
  
  		len = strnlen_user(str, MAX_ARG_STRLEN);
-@@ -561,7 +579,7 @@ int copy_strings_kernel(int argc, const char *const *__argv,
+@@ -562,7 +580,7 @@ int copy_strings_kernel(int argc, const char *const *__argv,
  	int r;
  	mm_segment_t oldfs = get_fs();
  	struct user_arg_ptr argv = {
@@ -44124,7 +43495,7 @@ index ae42277..32c9035 100644
  	};
  
  	set_fs(KERNEL_DS);
-@@ -596,7 +614,8 @@ static int shift_arg_pages(struct vm_area_struct *vma, unsigned long shift)
+@@ -597,7 +615,8 @@ static int shift_arg_pages(struct vm_area_struct *vma, unsigned long shift)
  	unsigned long new_end = old_end - shift;
  	struct mmu_gather tlb;
  
@@ -44134,7 +43505,7 @@ index ae42277..32c9035 100644
  
  	/*
  	 * ensure there are no vmas between where we want to go
-@@ -605,6 +624,10 @@ static int shift_arg_pages(struct vm_area_struct *vma, unsigned long shift)
+@@ -606,6 +625,10 @@ static int shift_arg_pages(struct vm_area_struct *vma, unsigned long shift)
  	if (vma != find_vma(mm, new_start))
  		return -EFAULT;
  
@@ -44145,7 +43516,7 @@ index ae42277..32c9035 100644
  	/*
  	 * cover the whole range: [new_start, old_end)
  	 */
-@@ -685,10 +708,6 @@ int setup_arg_pages(struct linux_binprm *bprm,
+@@ -686,10 +709,6 @@ int setup_arg_pages(struct linux_binprm *bprm,
  	stack_top = arch_align_stack(stack_top);
  	stack_top = PAGE_ALIGN(stack_top);
  
@@ -44156,7 +43527,7 @@ index ae42277..32c9035 100644
  	stack_shift = vma->vm_end - stack_top;
  
  	bprm->p -= stack_shift;
-@@ -700,8 +719,28 @@ int setup_arg_pages(struct linux_binprm *bprm,
+@@ -701,8 +720,28 @@ int setup_arg_pages(struct linux_binprm *bprm,
  	bprm->exec -= stack_shift;
  
  	down_write(&mm->mmap_sem);
@@ -44185,7 +43556,7 @@ index ae42277..32c9035 100644
  	/*
  	 * Adjust stack execute permissions; explicitly enable for
  	 * EXSTACK_ENABLE_X, disable for EXSTACK_DISABLE_X and leave alone
-@@ -720,13 +759,6 @@ int setup_arg_pages(struct linux_binprm *bprm,
+@@ -721,13 +760,6 @@ int setup_arg_pages(struct linux_binprm *bprm,
  		goto out_unlock;
  	BUG_ON(prev != vma);
  
@@ -44199,7 +43570,7 @@ index ae42277..32c9035 100644
  	/* mprotect_fixup is overkill to remove the temporary stack flags */
  	vma->vm_flags &= ~VM_STACK_INCOMPLETE_SETUP;
  
-@@ -807,7 +839,7 @@ int kernel_read(struct file *file, loff_t offset,
+@@ -808,7 +840,7 @@ int kernel_read(struct file *file, loff_t offset,
  	old_fs = get_fs();
  	set_fs(get_ds());
  	/* The cast to a user pointer is valid due to the set_fs() */
@@ -44208,7 +43579,7 @@ index ae42277..32c9035 100644
  	set_fs(old_fs);
  	return result;
  }
-@@ -1255,7 +1287,7 @@ static int check_unsafe_exec(struct linux_binprm *bprm)
+@@ -1254,7 +1286,7 @@ static int check_unsafe_exec(struct linux_binprm *bprm)
  	}
  	rcu_read_unlock();
  
@@ -44217,7 +43588,7 @@ index ae42277..32c9035 100644
  		bprm->unsafe |= LSM_UNSAFE_SHARE;
  	} else {
  		res = -EAGAIN;
-@@ -1450,6 +1482,28 @@ int search_binary_handler(struct linux_binprm *bprm,struct pt_regs *regs)
+@@ -1451,6 +1483,28 @@ int search_binary_handler(struct linux_binprm *bprm,struct pt_regs *regs)
  
  EXPORT_SYMBOL(search_binary_handler);
  
@@ -44246,7 +43617,7 @@ index ae42277..32c9035 100644
  /*
   * sys_execve() executes a new program.
   */
-@@ -1458,6 +1512,11 @@ static int do_execve_common(const char *filename,
+@@ -1459,6 +1513,11 @@ static int do_execve_common(const char *filename,
  				struct user_arg_ptr envp,
  				struct pt_regs *regs)
  {
@@ -44258,7 +43629,7 @@ index ae42277..32c9035 100644
  	struct linux_binprm *bprm;
  	struct file *file;
  	struct files_struct *displaced;
-@@ -1465,6 +1524,8 @@ static int do_execve_common(const char *filename,
+@@ -1466,6 +1525,8 @@ static int do_execve_common(const char *filename,
  	int retval;
  	const struct cred *cred = current_cred();
  
@@ -44267,7 +43638,7 @@ index ae42277..32c9035 100644
  	/*
  	 * We move the actual failure in case of RLIMIT_NPROC excess from
  	 * set*uid() to execve() because too many poorly written programs
-@@ -1505,12 +1566,27 @@ static int do_execve_common(const char *filename,
+@@ -1506,12 +1567,27 @@ static int do_execve_common(const char *filename,
  	if (IS_ERR(file))
  		goto out_unmark;
  
@@ -44295,7 +43666,7 @@ index ae42277..32c9035 100644
  	retval = bprm_mm_init(bprm);
  	if (retval)
  		goto out_file;
-@@ -1527,24 +1603,65 @@ static int do_execve_common(const char *filename,
+@@ -1528,24 +1604,65 @@ static int do_execve_common(const char *filename,
  	if (retval < 0)
  		goto out;
  
@@ -44365,7 +43736,7 @@ index ae42277..32c9035 100644
  	current->fs->in_exec = 0;
  	current->in_execve = 0;
  	acct_update_integrals(current);
-@@ -1553,6 +1670,14 @@ static int do_execve_common(const char *filename,
+@@ -1554,6 +1671,14 @@ static int do_execve_common(const char *filename,
  		put_files_struct(displaced);
  	return retval;
  
@@ -44380,7 +43751,7 @@ index ae42277..32c9035 100644
  out:
  	if (bprm->mm) {
  		acct_arg_size(bprm, 0);
-@@ -1626,7 +1751,7 @@ static int expand_corename(struct core_name *cn)
+@@ -1627,7 +1752,7 @@ static int expand_corename(struct core_name *cn)
  {
  	char *old_corename = cn->corename;
  
@@ -44389,7 +43760,7 @@ index ae42277..32c9035 100644
  	cn->corename = krealloc(old_corename, cn->size, GFP_KERNEL);
  
  	if (!cn->corename) {
-@@ -1723,7 +1848,7 @@ static int format_corename(struct core_name *cn, long signr)
+@@ -1724,7 +1849,7 @@ static int format_corename(struct core_name *cn, long signr)
  	int pid_in_pattern = 0;
  	int err = 0;
  
@@ -44398,7 +43769,7 @@ index ae42277..32c9035 100644
  	cn->corename = kmalloc(cn->size, GFP_KERNEL);
  	cn->used = 0;
  
-@@ -1820,6 +1945,228 @@ out:
+@@ -1821,6 +1946,228 @@ out:
  	return ispipe;
  }
  
@@ -44627,7 +43998,7 @@ index ae42277..32c9035 100644
  static int zap_process(struct task_struct *start, int exit_code)
  {
  	struct task_struct *t;
-@@ -2017,17 +2364,17 @@ static void wait_for_dump_helpers(struct file *file)
+@@ -2018,17 +2365,17 @@ static void wait_for_dump_helpers(struct file *file)
  	pipe = file->f_path.dentry->d_inode->i_pipe;
  
  	pipe_lock(pipe);
@@ -44650,7 +44021,7 @@ index ae42277..32c9035 100644
  	pipe_unlock(pipe);
  
  }
-@@ -2088,7 +2435,7 @@ void do_coredump(long signr, int exit_code, struct pt_regs *regs)
+@@ -2089,7 +2436,7 @@ void do_coredump(long signr, int exit_code, struct pt_regs *regs)
  	int retval = 0;
  	int flag = 0;
  	int ispipe;
@@ -44659,7 +44030,7 @@ index ae42277..32c9035 100644
  	struct coredump_params cprm = {
  		.signr = signr,
  		.regs = regs,
-@@ -2103,6 +2450,9 @@ void do_coredump(long signr, int exit_code, struct pt_regs *regs)
+@@ -2104,6 +2451,9 @@ void do_coredump(long signr, int exit_code, struct pt_regs *regs)
  
  	audit_core_dumps(signr);
  
@@ -44669,7 +44040,7 @@ index ae42277..32c9035 100644
  	binfmt = mm->binfmt;
  	if (!binfmt || !binfmt->core_dump)
  		goto fail;
-@@ -2170,7 +2520,7 @@ void do_coredump(long signr, int exit_code, struct pt_regs *regs)
+@@ -2171,7 +2521,7 @@ void do_coredump(long signr, int exit_code, struct pt_regs *regs)
  		}
  		cprm.limit = RLIM_INFINITY;
  
@@ -44678,7 +44049,7 @@ index ae42277..32c9035 100644
  		if (core_pipe_limit && (core_pipe_limit < dump_count)) {
  			printk(KERN_WARNING "Pid %d(%s) over core_pipe_limit\n",
  			       task_tgid_vnr(current), current->comm);
-@@ -2197,6 +2547,8 @@ void do_coredump(long signr, int exit_code, struct pt_regs *regs)
+@@ -2198,6 +2548,8 @@ void do_coredump(long signr, int exit_code, struct pt_regs *regs)
  	} else {
  		struct inode *inode;
  
@@ -44687,7 +44058,7 @@ index ae42277..32c9035 100644
  		if (cprm.limit < binfmt->min_coredump)
  			goto fail_unlock;
  
-@@ -2240,7 +2592,7 @@ close_fail:
+@@ -2241,7 +2593,7 @@ close_fail:
  		filp_close(cprm.file, NULL);
  fail_dropcount:
  	if (ispipe)
@@ -44696,7 +44067,7 @@ index ae42277..32c9035 100644
  fail_unlock:
  	kfree(cn.corename);
  fail_corename:
-@@ -2259,7 +2611,7 @@ fail:
+@@ -2260,7 +2612,7 @@ fail:
   */
  int dump_write(struct file *file, const void *addr, int nr)
  {
@@ -44719,10 +44090,10 @@ index a8cbe1b..fed04cb 100644
  		(sbi->s_resgid == 0 || !in_group_p (sbi->s_resgid))) {
  		return 0;
 diff --git a/fs/ext3/balloc.c b/fs/ext3/balloc.c
-index a203892..4e64db5 100644
+index baac1b1..1499b62 100644
 --- a/fs/ext3/balloc.c
 +++ b/fs/ext3/balloc.c
-@@ -1446,9 +1446,10 @@ static int ext3_has_free_blocks(struct ext3_sb_info *sbi, int use_reservation)
+@@ -1438,9 +1438,10 @@ static int ext3_has_free_blocks(struct ext3_sb_info *sbi, int use_reservation)
  
  	free_blocks = percpu_counter_read_positive(&sbi->s_freeblocks_counter);
  	root_blocks = le32_to_cpu(sbi->s_es->s_r_blocks_count);
@@ -44736,10 +44107,10 @@ index a203892..4e64db5 100644
  	}
  	return 1;
 diff --git a/fs/ext4/balloc.c b/fs/ext4/balloc.c
-index f9e2cd8..bfdc476 100644
+index 4bbd07a..a37bee6 100644
 --- a/fs/ext4/balloc.c
 +++ b/fs/ext4/balloc.c
-@@ -438,8 +438,8 @@ static int ext4_has_free_clusters(struct ext4_sb_info *sbi,
+@@ -463,8 +463,8 @@ static int ext4_has_free_clusters(struct ext4_sb_info *sbi,
  	/* Hm, nope.  Are (enough) root reserved clusters available? */
  	if (sbi->s_resuid == current_fsuid() ||
  	    ((sbi->s_resgid != 0) && in_group_p(sbi->s_resgid)) ||
@@ -44751,10 +44122,10 @@ index f9e2cd8..bfdc476 100644
  		if (free_clusters >= (nclusters + dirty_clusters))
  			return 1;
 diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h
-index 9983ba8..2a5272c 100644
+index 0e01e90..ae2bd5e 100644
 --- a/fs/ext4/ext4.h
 +++ b/fs/ext4/ext4.h
-@@ -1217,19 +1217,19 @@ struct ext4_sb_info {
+@@ -1225,19 +1225,19 @@ struct ext4_sb_info {
  	unsigned long s_mb_last_start;
  
  	/* stats for buddy allocator */
@@ -44785,10 +44156,10 @@ index 9983ba8..2a5272c 100644
  
  	/* locality groups */
 diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c
-index cb990b2..4820141 100644
+index 99ab428..7b65ba1 100644
 --- a/fs/ext4/mballoc.c
 +++ b/fs/ext4/mballoc.c
-@@ -1794,7 +1794,7 @@ void ext4_mb_simple_scan_group(struct ext4_allocation_context *ac,
+@@ -1747,7 +1747,7 @@ void ext4_mb_simple_scan_group(struct ext4_allocation_context *ac,
  		BUG_ON(ac->ac_b_ex.fe_len != ac->ac_g_ex.fe_len);
  
  		if (EXT4_SB(sb)->s_mb_stats)
@@ -44797,7 +44168,7 @@ index cb990b2..4820141 100644
  
  		break;
  	}
-@@ -2088,7 +2088,7 @@ repeat:
+@@ -2041,7 +2041,7 @@ repeat:
  			ac->ac_status = AC_STATUS_CONTINUE;
  			ac->ac_flags |= EXT4_MB_HINT_FIRST;
  			cr = 3;
@@ -44806,7 +44177,7 @@ index cb990b2..4820141 100644
  			goto repeat;
  		}
  	}
-@@ -2592,25 +2592,25 @@ int ext4_mb_release(struct super_block *sb)
+@@ -2542,25 +2542,25 @@ int ext4_mb_release(struct super_block *sb)
  	if (sbi->s_mb_stats) {
  		ext4_msg(sb, KERN_INFO,
  		       "mballoc: %u blocks %u reqs (%u success)",
@@ -44842,7 +44213,7 @@ index cb990b2..4820141 100644
  	}
  
  	free_percpu(sbi->s_locality_groups);
-@@ -3096,16 +3096,16 @@ static void ext4_mb_collect_stats(struct ext4_allocation_context *ac)
+@@ -3044,16 +3044,16 @@ static void ext4_mb_collect_stats(struct ext4_allocation_context *ac)
  	struct ext4_sb_info *sbi = EXT4_SB(ac->ac_sb);
  
  	if (sbi->s_mb_stats && ac->ac_g_ex.fe_len > 1) {
@@ -44865,7 +44236,7 @@ index cb990b2..4820141 100644
  	}
  
  	if (ac->ac_op == EXT4_MB_HISTORY_ALLOC)
-@@ -3509,7 +3509,7 @@ ext4_mb_new_inode_pa(struct ext4_allocation_context *ac)
+@@ -3457,7 +3457,7 @@ ext4_mb_new_inode_pa(struct ext4_allocation_context *ac)
  	trace_ext4_mb_new_inode_pa(ac, pa);
  
  	ext4_mb_use_inode_pa(ac, pa);
@@ -44874,7 +44245,7 @@ index cb990b2..4820141 100644
  
  	ei = EXT4_I(ac->ac_inode);
  	grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
-@@ -3569,7 +3569,7 @@ ext4_mb_new_group_pa(struct ext4_allocation_context *ac)
+@@ -3517,7 +3517,7 @@ ext4_mb_new_group_pa(struct ext4_allocation_context *ac)
  	trace_ext4_mb_new_group_pa(ac, pa);
  
  	ext4_mb_use_group_pa(ac, pa);
@@ -44883,7 +44254,7 @@ index cb990b2..4820141 100644
  
  	grp = ext4_get_group_info(sb, ac->ac_b_ex.fe_group);
  	lg = ac->ac_lg;
-@@ -3658,7 +3658,7 @@ ext4_mb_release_inode_pa(struct ext4_buddy *e4b, struct buffer_head *bitmap_bh,
+@@ -3606,7 +3606,7 @@ ext4_mb_release_inode_pa(struct ext4_buddy *e4b, struct buffer_head *bitmap_bh,
  		 * from the bitmap and continue.
  		 */
  	}
@@ -44892,7 +44263,7 @@ index cb990b2..4820141 100644
  
  	return err;
  }
-@@ -3676,7 +3676,7 @@ ext4_mb_release_group_pa(struct ext4_buddy *e4b,
+@@ -3624,7 +3624,7 @@ ext4_mb_release_group_pa(struct ext4_buddy *e4b,
  	ext4_get_group_no_and_offset(sb, pa->pa_pstart, &group, &bit);
  	BUG_ON(group != e4b->bd_group && pa->pa_len != 0);
  	mb_free_blocks(pa->pa_inode, e4b, bit, pa->pa_len);
@@ -44902,7 +44273,7 @@ index cb990b2..4820141 100644
  
  	return 0;
 diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c
-index f9d948f..8601f4b 100644
+index 59fa0be..53589ff 100644
 --- a/fs/ext4/resize.c
 +++ b/fs/ext4/resize.c
 @@ -161,6 +161,8 @@ static struct ext4_new_flex_group_data *alloc_flex_gd(unsigned long flexbg_size)
@@ -44915,7 +44286,7 @@ index f9d948f..8601f4b 100644
  
  	flex_gd->groups = kmalloc(sizeof(struct ext4_new_group_data) *
 diff --git a/fs/fcntl.c b/fs/fcntl.c
-index 22764c7..86372c9 100644
+index 75e7c1f..1eb3e4d 100644
 --- a/fs/fcntl.c
 +++ b/fs/fcntl.c
 @@ -224,6 +224,11 @@ int __f_setown(struct file *filp, struct pid *pid, enum pid_type type,
@@ -45031,7 +44402,7 @@ index b1a524d..4ee270e 100644
  
  err_nocleanup:
 diff --git a/fs/file.c b/fs/file.c
-index 4c6992d..104cdea 100644
+index ba3f605..fade102 100644
 --- a/fs/file.c
 +++ b/fs/file.c
 @@ -15,6 +15,7 @@
@@ -45042,7 +44413,7 @@ index 4c6992d..104cdea 100644
  #include <linux/fdtable.h>
  #include <linux/bitops.h>
  #include <linux/interrupt.h>
-@@ -254,6 +255,7 @@ int expand_files(struct files_struct *files, int nr)
+@@ -255,6 +256,7 @@ int expand_files(struct files_struct *files, int nr)
  	 * N.B. For clone tasks sharing a files structure, this test
  	 * will limit the total number of files that can be opened.
  	 */
@@ -45068,7 +44439,7 @@ index 96f2428..f5eeb8e 100644
  
  	if (dot && fs && !(fs->fs_flags & FS_HAS_SUBTYPE)) {
 diff --git a/fs/fs_struct.c b/fs/fs_struct.c
-index 78b519c..a8b4979 100644
+index e159e68..e7d2a6f 100644
 --- a/fs/fs_struct.c
 +++ b/fs/fs_struct.c
 @@ -4,6 +4,7 @@
@@ -45080,32 +44451,51 @@ index 78b519c..a8b4979 100644
  
  static inline void path_get_longterm(struct path *path)
 @@ -31,6 +32,7 @@ void set_fs_root(struct fs_struct *fs, struct path *path)
+ 	write_seqcount_begin(&fs->seq);
  	old_root = fs->root;
  	fs->root = *path;
- 	path_get_longterm(path);
 +	gr_set_chroot_entries(current, path);
  	write_seqcount_end(&fs->seq);
  	spin_unlock(&fs->lock);
  	if (old_root.dentry)
-@@ -74,6 +76,7 @@ void chroot_fs_refs(struct path *old_root, struct path *new_root)
- 			    && fs->root.mnt == old_root->mnt) {
- 				path_get_longterm(new_root);
- 				fs->root = *new_root;
-+				gr_set_chroot_entries(p, new_root);
- 				count++;
- 			}
- 			if (fs->pwd.dentry == old_root->dentry
-@@ -109,7 +112,8 @@ void exit_fs(struct task_struct *tsk)
+@@ -65,6 +67,17 @@ static inline int replace_path(struct path *p, const struct path *old, const str
+ 	return 1;
+ }
+ 
++static inline int replace_root_path(struct task_struct *task, struct path *p, const struct path *old, struct path *new)
++{
++	if (likely(p->dentry != old->dentry || p->mnt != old->mnt))
++		return 0;
++	*p = *new;
++
++	gr_set_chroot_entries(task, new);
++
++	return 1;
++}
++
+ void chroot_fs_refs(struct path *old_root, struct path *new_root)
+ {
+ 	struct task_struct *g, *p;
+@@ -79,7 +92,7 @@ void chroot_fs_refs(struct path *old_root, struct path *new_root)
+ 			int hits = 0;
+ 			spin_lock(&fs->lock);
+ 			write_seqcount_begin(&fs->seq);
+-			hits += replace_path(&fs->root, old_root, new_root);
++			hits += replace_root_path(p, &fs->root, old_root, new_root);
+ 			hits += replace_path(&fs->pwd, old_root, new_root);
+ 			write_seqcount_end(&fs->seq);
+ 			while (hits--) {
+@@ -111,7 +124,8 @@ void exit_fs(struct task_struct *tsk)
+ 		task_lock(tsk);
  		spin_lock(&fs->lock);
- 		write_seqcount_begin(&fs->seq);
  		tsk->fs = NULL;
 -		kill = !--fs->users;
 +		gr_clear_chroot_entries(tsk);
 +		kill = !atomic_dec_return(&fs->users);
- 		write_seqcount_end(&fs->seq);
  		spin_unlock(&fs->lock);
  		task_unlock(tsk);
-@@ -123,7 +127,7 @@ struct fs_struct *copy_fs_struct(struct fs_struct *old)
+ 		if (kill)
+@@ -124,7 +138,7 @@ struct fs_struct *copy_fs_struct(struct fs_struct *old)
  	struct fs_struct *fs = kmem_cache_alloc(fs_cachep, GFP_KERNEL);
  	/* We don't need to lock fs - think why ;-) */
  	if (fs) {
@@ -45114,7 +44504,7 @@ index 78b519c..a8b4979 100644
  		fs->in_exec = 0;
  		spin_lock_init(&fs->lock);
  		seqcount_init(&fs->seq);
-@@ -132,6 +136,9 @@ struct fs_struct *copy_fs_struct(struct fs_struct *old)
+@@ -133,6 +147,9 @@ struct fs_struct *copy_fs_struct(struct fs_struct *old)
  		spin_lock(&old->lock);
  		fs->root = old->root;
  		path_get_longterm(&fs->root);
@@ -45124,7 +44514,7 @@ index 78b519c..a8b4979 100644
  		fs->pwd = old->pwd;
  		path_get_longterm(&fs->pwd);
  		spin_unlock(&old->lock);
-@@ -150,8 +157,9 @@ int unshare_fs_struct(void)
+@@ -151,8 +168,9 @@ int unshare_fs_struct(void)
  
  	task_lock(current);
  	spin_lock(&fs->lock);
@@ -45135,7 +44525,7 @@ index 78b519c..a8b4979 100644
  	spin_unlock(&fs->lock);
  	task_unlock(current);
  
-@@ -164,13 +172,13 @@ EXPORT_SYMBOL_GPL(unshare_fs_struct);
+@@ -165,13 +183,13 @@ EXPORT_SYMBOL_GPL(unshare_fs_struct);
  
  int current_umask(void)
  {
@@ -45151,7 +44541,7 @@ index 78b519c..a8b4979 100644
  	.lock		= __SPIN_LOCK_UNLOCKED(init_fs.lock),
  	.seq		= SEQCNT_ZERO,
  	.umask		= 0022,
-@@ -186,12 +194,13 @@ void daemonize_fs_struct(void)
+@@ -187,12 +205,13 @@ void daemonize_fs_struct(void)
  		task_lock(current);
  
  		spin_lock(&init_fs.lock);
@@ -46494,7 +45884,7 @@ index 3426521..3b75162 100644
  	cuse_class = class_create(THIS_MODULE, "cuse");
  	if (IS_ERR(cuse_class))
 diff --git a/fs/fuse/dev.c b/fs/fuse/dev.c
-index 5f3368a..8306426 100644
+index 7df2b5e..5804aa7 100644
 --- a/fs/fuse/dev.c
 +++ b/fs/fuse/dev.c
 @@ -1242,7 +1242,7 @@ static ssize_t fuse_dev_splice_read(struct file *in, loff_t *ppos,
@@ -46507,10 +45897,10 @@ index 5f3368a..8306426 100644
  		if (!ret)
  			ret = -EPIPE;
 diff --git a/fs/fuse/dir.c b/fs/fuse/dir.c
-index 2066328..f5add3b 100644
+index df5ac04..08cee2a 100644
 --- a/fs/fuse/dir.c
 +++ b/fs/fuse/dir.c
-@@ -1175,7 +1175,7 @@ static char *read_link(struct dentry *dentry)
+@@ -1180,7 +1180,7 @@ static char *read_link(struct dentry *dentry)
  	return link;
  }
  
@@ -46520,10 +45910,10 @@ index 2066328..f5add3b 100644
  	if (!IS_ERR(link))
  		free_page((unsigned long) link);
 diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c
-index 5698746..6086012 100644
+index a9ba244..d9df391 100644
 --- a/fs/gfs2/inode.c
 +++ b/fs/gfs2/inode.c
-@@ -1487,7 +1487,7 @@ out:
+@@ -1496,7 +1496,7 @@ out:
  
  static void gfs2_put_link(struct dentry *dentry, struct nameidata *nd, void *p)
  {
@@ -46533,10 +45923,10 @@ index 5698746..6086012 100644
  		kfree(s);
  }
 diff --git a/fs/hugetlbfs/inode.c b/fs/hugetlbfs/inode.c
-index c60267e..193d9e4 100644
+index 001ef01..f7d5f07 100644
 --- a/fs/hugetlbfs/inode.c
 +++ b/fs/hugetlbfs/inode.c
-@@ -902,7 +902,7 @@ static struct file_system_type hugetlbfs_fs_type = {
+@@ -920,7 +920,7 @@ static struct file_system_type hugetlbfs_fs_type = {
  	.kill_sb	= kill_litter_super,
  };
  
@@ -46546,10 +45936,10 @@ index c60267e..193d9e4 100644
  static int can_do_hugetlb_shm(void)
  {
 diff --git a/fs/inode.c b/fs/inode.c
-index 83ab215..8842101 100644
+index 9f4f5fe..6214688 100644
 --- a/fs/inode.c
 +++ b/fs/inode.c
-@@ -870,8 +870,8 @@ unsigned int get_next_ino(void)
+@@ -860,8 +860,8 @@ unsigned int get_next_ino(void)
  
  #ifdef CONFIG_SMP
  	if (unlikely((res & (LAST_INO_BATCH-1)) == 0)) {
@@ -46561,10 +45951,10 @@ index 83ab215..8842101 100644
  		res = next - LAST_INO_BATCH;
  	}
 diff --git a/fs/jffs2/erase.c b/fs/jffs2/erase.c
-index eafb8d3..f423d37 100644
+index 4a6cf28..d3a29d3 100644
 --- a/fs/jffs2/erase.c
 +++ b/fs/jffs2/erase.c
-@@ -438,7 +438,8 @@ static void jffs2_mark_erased_block(struct jffs2_sb_info *c, struct jffs2_eraseb
+@@ -452,7 +452,8 @@ static void jffs2_mark_erased_block(struct jffs2_sb_info *c, struct jffs2_eraseb
  		struct jffs2_unknown_node marker = {
  			.magic =	cpu_to_je16(JFFS2_MAGIC_BITMASK),
  			.nodetype =	cpu_to_je16(JFFS2_NODETYPE_CLEANMARKER),
@@ -46575,10 +45965,10 @@ index eafb8d3..f423d37 100644
  
  		jffs2_prealloc_raw_node_refs(c, jeb, 1);
 diff --git a/fs/jffs2/wbuf.c b/fs/jffs2/wbuf.c
-index 30e8f47..21f600c 100644
+index 74d9be1..d5dd140 100644
 --- a/fs/jffs2/wbuf.c
 +++ b/fs/jffs2/wbuf.c
-@@ -1012,7 +1012,8 @@ static const struct jffs2_unknown_node oob_cleanmarker =
+@@ -1022,7 +1022,8 @@ static const struct jffs2_unknown_node oob_cleanmarker =
  {
  	.magic = constant_cpu_to_je16(JFFS2_MAGIC_BITMASK),
  	.nodetype = constant_cpu_to_je16(JFFS2_NODETYPE_CLEANMARKER),
@@ -46589,7 +45979,7 @@ index 30e8f47..21f600c 100644
  
  /*
 diff --git a/fs/jfs/super.c b/fs/jfs/super.c
-index 682bca6..86b8e6e 100644
+index 4a82950..bcaa0cb 100644
 --- a/fs/jfs/super.c
 +++ b/fs/jfs/super.c
 @@ -801,7 +801,7 @@ static int __init init_jfs_fs(void)
@@ -46602,7 +45992,7 @@ index 682bca6..86b8e6e 100644
  	if (jfs_inode_cachep == NULL)
  		return -ENOMEM;
 diff --git a/fs/libfs.c b/fs/libfs.c
-index 5b2dbb3..7442d54 100644
+index 18d08f5..fe3dc64 100644
 --- a/fs/libfs.c
 +++ b/fs/libfs.c
 @@ -165,6 +165,9 @@ int dcache_readdir(struct file * filp, void * dirent, filldir_t filldir)
@@ -46673,7 +46063,7 @@ index 0d68f1f..f216b79 100644
  
  	lock_flocks();
 diff --git a/fs/namei.c b/fs/namei.c
-index 46ea9cc..c7cf3a3 100644
+index c427919..e37fd3f 100644
 --- a/fs/namei.c
 +++ b/fs/namei.c
 @@ -278,16 +278,32 @@ int generic_permission(struct inode *inode, int mask)
@@ -46748,7 +46138,7 @@ index 46ea9cc..c7cf3a3 100644
  		error = 0;
  		if (s)
  			error = __vfs_follow_link(nd, s);
-@@ -1650,6 +1666,21 @@ static int path_lookupat(int dfd, const char *name,
+@@ -1753,6 +1769,21 @@ static int path_lookupat(int dfd, const char *name,
  	if (!err)
  		err = complete_walk(nd);
  
@@ -46770,7 +46160,7 @@ index 46ea9cc..c7cf3a3 100644
  	if (!err && nd->flags & LOOKUP_DIRECTORY) {
  		if (!nd->inode->i_op->lookup) {
  			path_put(&nd->path);
-@@ -1677,6 +1708,15 @@ static int do_path_lookup(int dfd, const char *name,
+@@ -1780,6 +1811,15 @@ static int do_path_lookup(int dfd, const char *name,
  		retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
  
  	if (likely(!retval)) {
@@ -46786,7 +46176,7 @@ index 46ea9cc..c7cf3a3 100644
  		if (unlikely(!audit_dummy_context())) {
  			if (nd->path.dentry && nd->inode)
  				audit_inode(name, nd->path.dentry);
-@@ -2071,6 +2111,13 @@ static int may_open(struct path *path, int acc_mode, int flag)
+@@ -2126,6 +2166,13 @@ static int may_open(struct path *path, int acc_mode, int flag)
  	if (flag & O_NOATIME && !inode_owner_or_capable(inode))
  		return -EPERM;
  
@@ -46800,7 +46190,7 @@ index 46ea9cc..c7cf3a3 100644
  	return 0;
  }
  
-@@ -2132,6 +2179,16 @@ static struct file *do_last(struct nameidata *nd, struct path *path,
+@@ -2187,6 +2234,16 @@ static struct file *do_last(struct nameidata *nd, struct path *path,
  		error = complete_walk(nd);
  		if (error)
  			return ERR_PTR(error);
@@ -46817,7 +46207,7 @@ index 46ea9cc..c7cf3a3 100644
  		audit_inode(pathname, nd->path.dentry);
  		if (open_flag & O_CREAT) {
  			error = -EISDIR;
-@@ -2142,6 +2199,16 @@ static struct file *do_last(struct nameidata *nd, struct path *path,
+@@ -2197,6 +2254,16 @@ static struct file *do_last(struct nameidata *nd, struct path *path,
  		error = complete_walk(nd);
  		if (error)
  			return ERR_PTR(error);
@@ -46834,7 +46224,7 @@ index 46ea9cc..c7cf3a3 100644
  		audit_inode(pathname, dir);
  		goto ok;
  	}
-@@ -2163,6 +2230,16 @@ static struct file *do_last(struct nameidata *nd, struct path *path,
+@@ -2218,6 +2285,16 @@ static struct file *do_last(struct nameidata *nd, struct path *path,
  		error = complete_walk(nd);
  		if (error)
  			return ERR_PTR(error);
@@ -46851,7 +46241,7 @@ index 46ea9cc..c7cf3a3 100644
  
  		error = -ENOTDIR;
  		if (nd->flags & LOOKUP_DIRECTORY) {
-@@ -2203,6 +2280,12 @@ static struct file *do_last(struct nameidata *nd, struct path *path,
+@@ -2258,6 +2335,12 @@ static struct file *do_last(struct nameidata *nd, struct path *path,
  	/* Negative dentry, just create the file */
  	if (!dentry->d_inode) {
  		umode_t mode = op->mode;
@@ -46864,7 +46254,7 @@ index 46ea9cc..c7cf3a3 100644
  		if (!IS_POSIXACL(dir->d_inode))
  			mode &= ~current_umask();
  		/*
-@@ -2226,6 +2309,8 @@ static struct file *do_last(struct nameidata *nd, struct path *path,
+@@ -2281,6 +2364,8 @@ static struct file *do_last(struct nameidata *nd, struct path *path,
  		error = vfs_create(dir->d_inode, dentry, mode, nd);
  		if (error)
  			goto exit_mutex_unlock;
@@ -46873,7 +46263,7 @@ index 46ea9cc..c7cf3a3 100644
  		mutex_unlock(&dir->d_inode->i_mutex);
  		dput(nd->path.dentry);
  		nd->path.dentry = dentry;
-@@ -2235,6 +2320,19 @@ static struct file *do_last(struct nameidata *nd, struct path *path,
+@@ -2290,6 +2375,19 @@ static struct file *do_last(struct nameidata *nd, struct path *path,
  	/*
  	 * It already exists.
  	 */
@@ -46893,7 +46283,7 @@ index 46ea9cc..c7cf3a3 100644
  	mutex_unlock(&dir->d_inode->i_mutex);
  	audit_inode(pathname, path->dentry);
  
-@@ -2447,6 +2545,11 @@ struct dentry *kern_path_create(int dfd, const char *pathname, struct path *path
+@@ -2502,6 +2600,11 @@ struct dentry *kern_path_create(int dfd, const char *pathname, struct path *path
  	*path = nd.path;
  	return dentry;
  eexist:
@@ -46905,7 +46295,7 @@ index 46ea9cc..c7cf3a3 100644
  	dput(dentry);
  	dentry = ERR_PTR(-EEXIST);
  fail:
-@@ -2469,6 +2572,20 @@ struct dentry *user_path_create(int dfd, const char __user *pathname, struct pat
+@@ -2524,6 +2627,20 @@ struct dentry *user_path_create(int dfd, const char __user *pathname, struct pat
  }
  EXPORT_SYMBOL(user_path_create);
  
@@ -46926,7 +46316,7 @@ index 46ea9cc..c7cf3a3 100644
  int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
  {
  	int error = may_create(dir, dentry);
-@@ -2536,6 +2653,17 @@ SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
+@@ -2591,6 +2708,17 @@ SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
  	error = mnt_want_write(path.mnt);
  	if (error)
  		goto out_dput;
@@ -46944,7 +46334,7 @@ index 46ea9cc..c7cf3a3 100644
  	error = security_path_mknod(&path, dentry, mode, dev);
  	if (error)
  		goto out_drop_write;
-@@ -2553,6 +2681,9 @@ SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
+@@ -2608,6 +2736,9 @@ SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
  	}
  out_drop_write:
  	mnt_drop_write(path.mnt);
@@ -46954,7 +46344,7 @@ index 46ea9cc..c7cf3a3 100644
  out_dput:
  	dput(dentry);
  	mutex_unlock(&path.dentry->d_inode->i_mutex);
-@@ -2602,12 +2733,21 @@ SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
+@@ -2661,12 +2792,21 @@ SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
  	error = mnt_want_write(path.mnt);
  	if (error)
  		goto out_dput;
@@ -46976,7 +46366,7 @@ index 46ea9cc..c7cf3a3 100644
  out_dput:
  	dput(dentry);
  	mutex_unlock(&path.dentry->d_inode->i_mutex);
-@@ -2687,6 +2827,8 @@ static long do_rmdir(int dfd, const char __user *pathname)
+@@ -2746,6 +2886,8 @@ static long do_rmdir(int dfd, const char __user *pathname)
  	char * name;
  	struct dentry *dentry;
  	struct nameidata nd;
@@ -46985,7 +46375,7 @@ index 46ea9cc..c7cf3a3 100644
  
  	error = user_path_parent(dfd, pathname, &nd, &name);
  	if (error)
-@@ -2715,6 +2857,15 @@ static long do_rmdir(int dfd, const char __user *pathname)
+@@ -2774,6 +2916,15 @@ static long do_rmdir(int dfd, const char __user *pathname)
  		error = -ENOENT;
  		goto exit3;
  	}
@@ -47001,7 +46391,7 @@ index 46ea9cc..c7cf3a3 100644
  	error = mnt_want_write(nd.path.mnt);
  	if (error)
  		goto exit3;
-@@ -2722,6 +2873,8 @@ static long do_rmdir(int dfd, const char __user *pathname)
+@@ -2781,6 +2932,8 @@ static long do_rmdir(int dfd, const char __user *pathname)
  	if (error)
  		goto exit4;
  	error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
@@ -47010,7 +46400,7 @@ index 46ea9cc..c7cf3a3 100644
  exit4:
  	mnt_drop_write(nd.path.mnt);
  exit3:
-@@ -2784,6 +2937,8 @@ static long do_unlinkat(int dfd, const char __user *pathname)
+@@ -2843,6 +2996,8 @@ static long do_unlinkat(int dfd, const char __user *pathname)
  	struct dentry *dentry;
  	struct nameidata nd;
  	struct inode *inode = NULL;
@@ -47019,7 +46409,7 @@ index 46ea9cc..c7cf3a3 100644
  
  	error = user_path_parent(dfd, pathname, &nd, &name);
  	if (error)
-@@ -2806,6 +2961,16 @@ static long do_unlinkat(int dfd, const char __user *pathname)
+@@ -2865,6 +3020,16 @@ static long do_unlinkat(int dfd, const char __user *pathname)
  		if (!inode)
  			goto slashes;
  		ihold(inode);
@@ -47036,7 +46426,7 @@ index 46ea9cc..c7cf3a3 100644
  		error = mnt_want_write(nd.path.mnt);
  		if (error)
  			goto exit2;
-@@ -2813,6 +2978,8 @@ static long do_unlinkat(int dfd, const char __user *pathname)
+@@ -2872,6 +3037,8 @@ static long do_unlinkat(int dfd, const char __user *pathname)
  		if (error)
  			goto exit3;
  		error = vfs_unlink(nd.path.dentry->d_inode, dentry);
@@ -47045,7 +46435,7 @@ index 46ea9cc..c7cf3a3 100644
  exit3:
  		mnt_drop_write(nd.path.mnt);
  	exit2:
-@@ -2888,10 +3055,18 @@ SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
+@@ -2947,10 +3114,18 @@ SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
  	error = mnt_want_write(path.mnt);
  	if (error)
  		goto out_dput;
@@ -47064,7 +46454,7 @@ index 46ea9cc..c7cf3a3 100644
  out_drop_write:
  	mnt_drop_write(path.mnt);
  out_dput:
-@@ -2963,6 +3138,7 @@ SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
+@@ -3025,6 +3200,7 @@ SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
  {
  	struct dentry *new_dentry;
  	struct path old_path, new_path;
@@ -47072,7 +46462,7 @@ index 46ea9cc..c7cf3a3 100644
  	int how = 0;
  	int error;
  
-@@ -2986,7 +3162,7 @@ SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
+@@ -3048,7 +3224,7 @@ SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
  	if (error)
  		return error;
  
@@ -47081,7 +46471,7 @@ index 46ea9cc..c7cf3a3 100644
  	error = PTR_ERR(new_dentry);
  	if (IS_ERR(new_dentry))
  		goto out;
-@@ -2997,13 +3173,30 @@ SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
+@@ -3059,13 +3235,30 @@ SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
  	error = mnt_want_write(new_path.mnt);
  	if (error)
  		goto out_dput;
@@ -47112,7 +46502,7 @@ index 46ea9cc..c7cf3a3 100644
  	dput(new_dentry);
  	mutex_unlock(&new_path.dentry->d_inode->i_mutex);
  	path_put(&new_path);
-@@ -3231,6 +3424,12 @@ SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
+@@ -3299,6 +3492,12 @@ SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
  	if (new_dentry == trap)
  		goto exit5;
  
@@ -47125,7 +46515,7 @@ index 46ea9cc..c7cf3a3 100644
  	error = mnt_want_write(oldnd.path.mnt);
  	if (error)
  		goto exit5;
-@@ -3240,6 +3439,9 @@ SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
+@@ -3308,6 +3507,9 @@ SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
  		goto exit6;
  	error = vfs_rename(old_dir->d_inode, old_dentry,
  				   new_dir->d_inode, new_dentry);
@@ -47135,7 +46525,7 @@ index 46ea9cc..c7cf3a3 100644
  exit6:
  	mnt_drop_write(oldnd.path.mnt);
  exit5:
-@@ -3265,6 +3467,8 @@ SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newna
+@@ -3333,6 +3535,8 @@ SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newna
  
  int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
  {
@@ -47144,7 +46534,7 @@ index 46ea9cc..c7cf3a3 100644
  	int len;
  
  	len = PTR_ERR(link);
-@@ -3274,7 +3478,14 @@ int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const c
+@@ -3342,7 +3546,14 @@ int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const c
  	len = strlen(link);
  	if (len > (unsigned) buflen)
  		len = buflen;
@@ -47224,10 +46614,10 @@ index e608199..9609cb9 100644
  	error = lock_mount(&old);
  	if (error)
 diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c
-index f649fba..236bf92 100644
+index e8bbfa5..864f936 100644
 --- a/fs/nfs/inode.c
 +++ b/fs/nfs/inode.c
-@@ -151,7 +151,7 @@ static void nfs_zap_caches_locked(struct inode *inode)
+@@ -152,7 +152,7 @@ static void nfs_zap_caches_locked(struct inode *inode)
  	nfsi->attrtimeo = NFS_MINATTRTIMEO(inode);
  	nfsi->attrtimeo_timestamp = jiffies;
  
@@ -47236,7 +46626,7 @@ index f649fba..236bf92 100644
  	if (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))
  		nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL|NFS_INO_REVAL_PAGECACHE;
  	else
-@@ -1003,16 +1003,16 @@ static int nfs_size_need_update(const struct inode *inode, const struct nfs_fatt
+@@ -1005,16 +1005,16 @@ static int nfs_size_need_update(const struct inode *inode, const struct nfs_fatt
  	return nfs_size_to_loff_t(fattr->size) > i_size_read(inode);
  }
  
@@ -47257,10 +46647,10 @@ index f649fba..236bf92 100644
  
  void nfs_fattr_init(struct nfs_fattr *fattr)
 diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c
-index b96fe94..a4dbece 100644
+index 5686661..80a9a3a 100644
 --- a/fs/nfsd/vfs.c
 +++ b/fs/nfsd/vfs.c
-@@ -925,7 +925,7 @@ nfsd_vfs_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
+@@ -933,7 +933,7 @@ nfsd_vfs_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
  	} else {
  		oldfs = get_fs();
  		set_fs(KERNEL_DS);
@@ -47269,7 +46659,7 @@ index b96fe94..a4dbece 100644
  		set_fs(oldfs);
  	}
  
-@@ -1029,7 +1029,7 @@ nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
+@@ -1037,7 +1037,7 @@ nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file,
  
  	/* Write the data. */
  	oldfs = get_fs(); set_fs(KERNEL_DS);
@@ -47278,12 +46668,12 @@ index b96fe94..a4dbece 100644
  	set_fs(oldfs);
  	if (host_err < 0)
  		goto out_nfserr;
-@@ -1564,7 +1564,7 @@ nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
+@@ -1573,7 +1573,7 @@ nfsd_readlink(struct svc_rqst *rqstp, struct svc_fh *fhp, char *buf, int *lenp)
  	 */
  
  	oldfs = get_fs(); set_fs(KERNEL_DS);
--	host_err = inode->i_op->readlink(dentry, buf, *lenp);
-+	host_err = inode->i_op->readlink(dentry, (char __force_user *)buf, *lenp);
+-	host_err = inode->i_op->readlink(path.dentry, buf, *lenp);
++	host_err = inode->i_op->readlink(path.dentry, (char __force_user *)buf, *lenp);
  	set_fs(oldfs);
  
  	if (host_err < 0)
@@ -47302,7 +46692,7 @@ index 3568c8a..e0240d8 100644
  		goto out_kill_access_response;
  
 diff --git a/fs/notify/notification.c b/fs/notify/notification.c
-index ee18815..7aa5d01 100644
+index c887b13..0fdf472 100644
 --- a/fs/notify/notification.c
 +++ b/fs/notify/notification.c
 @@ -57,7 +57,7 @@ static struct kmem_cache *fsnotify_event_holder_cachep;
@@ -47337,7 +46727,7 @@ index 99e3610..02c1068 100644
  				"inode 0x%lx or driver bug.", vdir->i_ino);
  		goto err_out;
 diff --git a/fs/ntfs/file.c b/fs/ntfs/file.c
-index c587e2d..3641eaa 100644
+index 8639169..76697aa 100644
 --- a/fs/ntfs/file.c
 +++ b/fs/ntfs/file.c
 @@ -2229,6 +2229,6 @@ const struct inode_operations ntfs_file_inode_ops = {
@@ -47442,7 +46832,7 @@ index f169da4..9112253 100644
  		}
  	}
 diff --git a/fs/ocfs2/super.c b/fs/ocfs2/super.c
-index 604e12c..8426483 100644
+index 68f4541..89cfe6a 100644
 --- a/fs/ocfs2/super.c
 +++ b/fs/ocfs2/super.c
 @@ -301,11 +301,11 @@ static int ocfs2_osb_dump(struct ocfs2_super *osb, char *buf, int len)
@@ -47462,7 +46852,7 @@ index 604e12c..8426483 100644
  
  	out += snprintf(buf + out, len - out,
  			"%10s => State: %u  Descriptor: %llu  Size: %u bits  "
-@@ -2117,11 +2117,11 @@ static int ocfs2_initialize_super(struct super_block *sb,
+@@ -2116,11 +2116,11 @@ static int ocfs2_initialize_super(struct super_block *sb,
  	spin_lock_init(&osb->osb_xattr_lock);
  	ocfs2_init_steal_slots(osb);
  
@@ -47493,7 +46883,7 @@ index 5d22872..523db20 100644
  		kfree(link);
  }
 diff --git a/fs/open.c b/fs/open.c
-index 77becc0..aad7bd9 100644
+index 5720854..2707e82 100644
 --- a/fs/open.c
 +++ b/fs/open.c
 @@ -112,6 +112,10 @@ static long do_sys_truncate(const char __user *pathname, loff_t length)
@@ -47582,10 +46972,10 @@ index 77becc0..aad7bd9 100644
  	if (user != (uid_t) -1) {
  		newattrs.ia_valid |= ATTR_UID;
 diff --git a/fs/pipe.c b/fs/pipe.c
-index 82e651b..8a68573 100644
+index fec5e4a..f4210f9 100644
 --- a/fs/pipe.c
 +++ b/fs/pipe.c
-@@ -437,9 +437,9 @@ redo:
+@@ -438,9 +438,9 @@ redo:
  		}
  		if (bufs)	/* More to do? */
  			continue;
@@ -47597,7 +46987,7 @@ index 82e651b..8a68573 100644
  			/* syscall merging: Usually we must not sleep
  			 * if O_NONBLOCK is set, or if we got some data.
  			 * But if a writer sleeps in kernel space, then
-@@ -503,7 +503,7 @@ pipe_write(struct kiocb *iocb, const struct iovec *_iov,
+@@ -504,7 +504,7 @@ pipe_write(struct kiocb *iocb, const struct iovec *_iov,
  	mutex_lock(&inode->i_mutex);
  	pipe = inode->i_pipe;
  
@@ -47606,7 +46996,7 @@ index 82e651b..8a68573 100644
  		send_sig(SIGPIPE, current, 0);
  		ret = -EPIPE;
  		goto out;
-@@ -552,7 +552,7 @@ redo1:
+@@ -553,7 +553,7 @@ redo1:
  	for (;;) {
  		int bufs;
  
@@ -47615,7 +47005,7 @@ index 82e651b..8a68573 100644
  			send_sig(SIGPIPE, current, 0);
  			if (!ret)
  				ret = -EPIPE;
-@@ -643,9 +643,9 @@ redo2:
+@@ -644,9 +644,9 @@ redo2:
  			kill_fasync(&pipe->fasync_readers, SIGIO, POLL_IN);
  			do_wakeup = 0;
  		}
@@ -47627,7 +47017,7 @@ index 82e651b..8a68573 100644
  	}
  out:
  	mutex_unlock(&inode->i_mutex);
-@@ -712,7 +712,7 @@ pipe_poll(struct file *filp, poll_table *wait)
+@@ -713,7 +713,7 @@ pipe_poll(struct file *filp, poll_table *wait)
  	mask = 0;
  	if (filp->f_mode & FMODE_READ) {
  		mask = (nrbufs > 0) ? POLLIN | POLLRDNORM : 0;
@@ -47636,7 +47026,7 @@ index 82e651b..8a68573 100644
  			mask |= POLLHUP;
  	}
  
-@@ -722,7 +722,7 @@ pipe_poll(struct file *filp, poll_table *wait)
+@@ -723,7 +723,7 @@ pipe_poll(struct file *filp, poll_table *wait)
  		 * Most Unices do not set POLLERR for FIFOs but on Linux they
  		 * behave exactly like pipes for poll().
  		 */
@@ -47645,7 +47035,7 @@ index 82e651b..8a68573 100644
  			mask |= POLLERR;
  	}
  
-@@ -736,10 +736,10 @@ pipe_release(struct inode *inode, int decr, int decw)
+@@ -737,10 +737,10 @@ pipe_release(struct inode *inode, int decr, int decw)
  
  	mutex_lock(&inode->i_mutex);
  	pipe = inode->i_pipe;
@@ -47659,7 +47049,7 @@ index 82e651b..8a68573 100644
  		free_pipe_info(inode);
  	} else {
  		wake_up_interruptible_sync_poll(&pipe->wait, POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM | POLLERR | POLLHUP);
-@@ -829,7 +829,7 @@ pipe_read_open(struct inode *inode, struct file *filp)
+@@ -830,7 +830,7 @@ pipe_read_open(struct inode *inode, struct file *filp)
  
  	if (inode->i_pipe) {
  		ret = 0;
@@ -47668,7 +47058,7 @@ index 82e651b..8a68573 100644
  	}
  
  	mutex_unlock(&inode->i_mutex);
-@@ -846,7 +846,7 @@ pipe_write_open(struct inode *inode, struct file *filp)
+@@ -847,7 +847,7 @@ pipe_write_open(struct inode *inode, struct file *filp)
  
  	if (inode->i_pipe) {
  		ret = 0;
@@ -47677,7 +47067,7 @@ index 82e651b..8a68573 100644
  	}
  
  	mutex_unlock(&inode->i_mutex);
-@@ -864,9 +864,9 @@ pipe_rdwr_open(struct inode *inode, struct file *filp)
+@@ -865,9 +865,9 @@ pipe_rdwr_open(struct inode *inode, struct file *filp)
  	if (inode->i_pipe) {
  		ret = 0;
  		if (filp->f_mode & FMODE_READ)
@@ -47689,7 +47079,7 @@ index 82e651b..8a68573 100644
  	}
  
  	mutex_unlock(&inode->i_mutex);
-@@ -958,7 +958,7 @@ void free_pipe_info(struct inode *inode)
+@@ -959,7 +959,7 @@ void free_pipe_info(struct inode *inode)
  	inode->i_pipe = NULL;
  }
  
@@ -47698,7 +47088,7 @@ index 82e651b..8a68573 100644
  
  /*
   * pipefs_dname() is called from d_path().
-@@ -988,7 +988,8 @@ static struct inode * get_pipe_inode(void)
+@@ -989,7 +989,8 @@ static struct inode * get_pipe_inode(void)
  		goto fail_iput;
  	inode->i_pipe = pipe;
  
@@ -47740,7 +47130,7 @@ index 15af622..0e9f4467 100644
   	help
  	  Various /proc files exist to monitor process memory utilization:
 diff --git a/fs/proc/array.c b/fs/proc/array.c
-index c602b8d..a7de642 100644
+index f9bd395..acb7847 100644
 --- a/fs/proc/array.c
 +++ b/fs/proc/array.c
 @@ -60,6 +60,7 @@
@@ -47832,23 +47222,39 @@ index c602b8d..a7de642 100644
  	/* scale priority and nice values from timeslices to -20..20 */
  	/* to make it look like a "normal" Unix priority/nice value  */
  	priority = task_prio(task);
-@@ -489,9 +540,15 @@ static int do_task_stat(struct seq_file *m, struct pid_namespace *ns,
- 		vsize,
- 		mm ? get_mm_rss(mm) : 0,
- 		rsslim,
+@@ -485,9 +536,15 @@ static int do_task_stat(struct seq_file *m, struct pid_namespace *ns,
+ 	seq_put_decimal_ull(m, ' ', vsize);
+ 	seq_put_decimal_ll(m, ' ', mm ? get_mm_rss(mm) : 0);
+ 	seq_put_decimal_ull(m, ' ', rsslim);
 +#ifdef CONFIG_GRKERNSEC_PROC_MEMMAP
-+		PAX_RAND_FLAGS(mm) ? 1 : (mm ? (permitted ? mm->start_code : 1) : 0),
-+		PAX_RAND_FLAGS(mm) ? 1 : (mm ? (permitted ? mm->end_code : 1) : 0),
-+		PAX_RAND_FLAGS(mm) ? 0 : ((permitted && mm) ? mm->start_stack : 0),
++	seq_put_decimal_ull(m, ' ', PAX_RAND_FLAGS(mm) ? 1 : (mm ? (permitted ? mm->start_code : 1) : 0));
++	seq_put_decimal_ull(m, ' ', PAX_RAND_FLAGS(mm) ? 1 : (mm ? (permitted ? mm->end_code : 1) : 0));
++	seq_put_decimal_ull(m, ' ', PAX_RAND_FLAGS(mm) ? 0 : ((permitted && mm) ? mm->start_stack : 0));
 +#else
- 		mm ? (permitted ? mm->start_code : 1) : 0,
- 		mm ? (permitted ? mm->end_code : 1) : 0,
- 		(permitted && mm) ? mm->start_stack : 0,
-+#endif
- 		esp,
- 		eip,
- 		/* The signal information here is obsolete.
-@@ -536,8 +593,15 @@ int proc_pid_statm(struct seq_file *m, struct pid_namespace *ns,
+ 	seq_put_decimal_ull(m, ' ', mm ? (permitted ? mm->start_code : 1) : 0);
+ 	seq_put_decimal_ull(m, ' ', mm ? (permitted ? mm->end_code : 1) : 0);
+ 	seq_put_decimal_ull(m, ' ', (permitted && mm) ? mm->start_stack : 0);
++#endif
+ 	seq_put_decimal_ull(m, ' ', esp);
+ 	seq_put_decimal_ull(m, ' ', eip);
+ 	/* The signal information here is obsolete.
+@@ -508,9 +565,15 @@ static int do_task_stat(struct seq_file *m, struct pid_namespace *ns,
+ 	seq_put_decimal_ull(m, ' ', delayacct_blkio_ticks(task));
+ 	seq_put_decimal_ull(m, ' ', cputime_to_clock_t(gtime));
+ 	seq_put_decimal_ll(m, ' ', cputime_to_clock_t(cgtime));
++#ifdef CONFIG_GRKERNSEC_PROC_MEMMAP
++	seq_put_decimal_ull(m, ' ', PAX_RAND_FLAGS(mm) ? 0 : ((mm && permitted) ? mm->start_data : 0));
++	seq_put_decimal_ull(m, ' ', PAX_RAND_FLAGS(mm) ? 0 : ((mm && permitted) ? mm->end_data : 0));
++	seq_put_decimal_ull(m, ' ', PAX_RAND_FLAGS(mm) ? 0 : ((mm && permitted) ? mm->start_brk : 0));
++#else
+ 	seq_put_decimal_ull(m, ' ', (mm && permitted) ? mm->start_data : 0);
+ 	seq_put_decimal_ull(m, ' ', (mm && permitted) ? mm->end_data : 0);
+ 	seq_put_decimal_ull(m, ' ', (mm && permitted) ? mm->start_brk : 0);
++#endif
+ 	seq_putc(m, '\n');
+ 	if (mm)
+ 		mmput(mm);
+@@ -533,8 +596,15 @@ int proc_pid_statm(struct seq_file *m, struct pid_namespace *ns,
  			struct pid *pid, struct task_struct *task)
  {
  	unsigned long size = 0, resident = 0, shared = 0, text = 0, data = 0;
@@ -47865,7 +47271,7 @@ index c602b8d..a7de642 100644
  	if (mm) {
  		size = task_statm(mm, &shared, &text, &data, &resident);
  		mmput(mm);
-@@ -547,3 +611,18 @@ int proc_pid_statm(struct seq_file *m, struct pid_namespace *ns,
+@@ -556,3 +626,18 @@ int proc_pid_statm(struct seq_file *m, struct pid_namespace *ns,
  
  	return 0;
  }
@@ -47885,7 +47291,7 @@ index c602b8d..a7de642 100644
 +}
 +#endif
 diff --git a/fs/proc/base.c b/fs/proc/base.c
-index d4548dd..d101f84 100644
+index 57b8159..7a08ad5 100644
 --- a/fs/proc/base.c
 +++ b/fs/proc/base.c
 @@ -109,6 +109,14 @@ struct pid_entry {
@@ -48077,7 +47483,7 @@ index d4548dd..d101f84 100644
  	ret = -ENOMEM;
  	page = (char *)__get_free_page(GFP_TEMPORARY);
  	if (!page)
-@@ -1434,7 +1511,7 @@ static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
+@@ -1433,7 +1510,7 @@ static void *proc_pid_follow_link(struct dentry *dentry, struct nameidata *nd)
  	path_put(&nd->path);
  
  	/* Are we allowed to snoop on the tasks file descriptors? */
@@ -48086,7 +47492,7 @@ index d4548dd..d101f84 100644
  		goto out;
  
  	error = PROC_I(inode)->op.proc_get_link(dentry, &nd->path);
-@@ -1473,8 +1550,18 @@ static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int b
+@@ -1472,8 +1549,18 @@ static int proc_pid_readlink(struct dentry * dentry, char __user * buffer, int b
  	struct path path;
  
  	/* Are we allowed to snoop on the tasks file descriptors? */
@@ -48107,7 +47513,7 @@ index d4548dd..d101f84 100644
  
  	error = PROC_I(inode)->op.proc_get_link(dentry, &path);
  	if (error)
-@@ -1539,7 +1626,11 @@ struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *t
+@@ -1538,7 +1625,11 @@ struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *t
  		rcu_read_lock();
  		cred = __task_cred(task);
  		inode->i_uid = cred->euid;
@@ -48119,7 +47525,7 @@ index d4548dd..d101f84 100644
  		rcu_read_unlock();
  	}
  	security_task_to_inode(task, inode);
-@@ -1575,10 +1666,19 @@ int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
+@@ -1574,10 +1665,19 @@ int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
  			return -ENOENT;
  		}
  		if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
@@ -48139,7 +47545,7 @@ index d4548dd..d101f84 100644
  		}
  	}
  	rcu_read_unlock();
-@@ -1616,11 +1716,20 @@ int pid_revalidate(struct dentry *dentry, struct nameidata *nd)
+@@ -1615,11 +1715,20 @@ int pid_revalidate(struct dentry *dentry, struct nameidata *nd)
  
  	if (task) {
  		if ((inode->i_mode == (S_IFDIR|S_IRUGO|S_IXUGO)) ||
@@ -48160,7 +47566,7 @@ index d4548dd..d101f84 100644
  			rcu_read_unlock();
  		} else {
  			inode->i_uid = 0;
-@@ -1738,7 +1847,8 @@ static int proc_fd_info(struct inode *inode, struct path *path, char *info)
+@@ -1737,7 +1846,8 @@ static int proc_fd_info(struct inode *inode, struct path *path, char *info)
  	int fd = proc_fd(inode);
  
  	if (task) {
@@ -48170,7 +47576,7 @@ index d4548dd..d101f84 100644
  		put_task_struct(task);
  	}
  	if (files) {
-@@ -2355,11 +2465,21 @@ static const struct file_operations proc_map_files_operations = {
+@@ -2335,11 +2445,21 @@ static const struct file_operations proc_map_files_operations = {
   */
  static int proc_fd_permission(struct inode *inode, int mask)
  {
@@ -48194,7 +47600,7 @@ index d4548dd..d101f84 100644
  	return rv;
  }
  
-@@ -2469,6 +2589,9 @@ static struct dentry *proc_pident_lookup(struct inode *dir,
+@@ -2449,6 +2569,9 @@ static struct dentry *proc_pident_lookup(struct inode *dir,
  	if (!task)
  		goto out_no_task;
  
@@ -48204,7 +47610,7 @@ index d4548dd..d101f84 100644
  	/*
  	 * Yes, it does not scale. And it should not. Don't add
  	 * new entries into /proc/<tgid>/ without very good reasons.
-@@ -2513,6 +2636,9 @@ static int proc_pident_readdir(struct file *filp,
+@@ -2493,6 +2616,9 @@ static int proc_pident_readdir(struct file *filp,
  	if (!task)
  		goto out_no_task;
  
@@ -48214,7 +47620,7 @@ index d4548dd..d101f84 100644
  	ret = 0;
  	i = filp->f_pos;
  	switch (i) {
-@@ -2783,7 +2909,7 @@ static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd)
+@@ -2763,7 +2889,7 @@ static void *proc_self_follow_link(struct dentry *dentry, struct nameidata *nd)
  static void proc_self_put_link(struct dentry *dentry, struct nameidata *nd,
  				void *cookie)
  {
@@ -48223,7 +47629,7 @@ index d4548dd..d101f84 100644
  	if (!IS_ERR(s))
  		__putname(s);
  }
-@@ -2984,7 +3110,7 @@ static const struct pid_entry tgid_base_stuff[] = {
+@@ -2964,7 +3090,7 @@ static const struct pid_entry tgid_base_stuff[] = {
  	REG("autogroup",  S_IRUGO|S_IWUSR, proc_pid_sched_autogroup_operations),
  #endif
  	REG("comm",      S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
@@ -48232,7 +47638,7 @@ index d4548dd..d101f84 100644
  	INF("syscall",    S_IRUGO, proc_pid_syscall),
  #endif
  	INF("cmdline",    S_IRUGO, proc_pid_cmdline),
-@@ -3009,10 +3135,10 @@ static const struct pid_entry tgid_base_stuff[] = {
+@@ -2989,10 +3115,10 @@ static const struct pid_entry tgid_base_stuff[] = {
  #ifdef CONFIG_SECURITY
  	DIR("attr",       S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
  #endif
@@ -48245,7 +47651,7 @@ index d4548dd..d101f84 100644
  	ONE("stack",      S_IRUGO, proc_pid_stack),
  #endif
  #ifdef CONFIG_SCHEDSTATS
-@@ -3046,6 +3172,9 @@ static const struct pid_entry tgid_base_stuff[] = {
+@@ -3026,6 +3152,9 @@ static const struct pid_entry tgid_base_stuff[] = {
  #ifdef CONFIG_HARDWALL
  	INF("hardwall",   S_IRUGO, proc_pid_hardwall),
  #endif
@@ -48255,7 +47661,7 @@ index d4548dd..d101f84 100644
  };
  
  static int proc_tgid_base_readdir(struct file * filp,
-@@ -3172,7 +3301,14 @@ static struct dentry *proc_pid_instantiate(struct inode *dir,
+@@ -3152,7 +3281,14 @@ static struct dentry *proc_pid_instantiate(struct inode *dir,
  	if (!inode)
  		goto out;
  
@@ -48270,7 +47676,7 @@ index d4548dd..d101f84 100644
  	inode->i_op = &proc_tgid_base_inode_operations;
  	inode->i_fop = &proc_tgid_base_operations;
  	inode->i_flags|=S_IMMUTABLE;
-@@ -3214,7 +3350,11 @@ struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct
+@@ -3194,7 +3330,11 @@ struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct
  	if (!task)
  		goto out;
  
@@ -48282,7 +47688,7 @@ index d4548dd..d101f84 100644
  	put_task_struct(task);
  out:
  	return result;
-@@ -3277,6 +3417,8 @@ static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldi
+@@ -3257,6 +3397,8 @@ static int proc_pid_fill_cache(struct file *filp, void *dirent, filldir_t filldi
  static int fake_filldir(void *buf, const char *name, int namelen,
  			loff_t offset, u64 ino, unsigned d_type)
  {
@@ -48291,7 +47697,7 @@ index d4548dd..d101f84 100644
  	return 0;
  }
  
-@@ -3343,7 +3485,7 @@ static const struct pid_entry tid_base_stuff[] = {
+@@ -3323,7 +3465,7 @@ static const struct pid_entry tid_base_stuff[] = {
  	REG("sched",     S_IRUGO|S_IWUSR, proc_pid_sched_operations),
  #endif
  	REG("comm",      S_IRUGO|S_IWUSR, proc_pid_set_comm_operations),
@@ -48300,7 +47706,7 @@ index d4548dd..d101f84 100644
  	INF("syscall",   S_IRUGO, proc_pid_syscall),
  #endif
  	INF("cmdline",   S_IRUGO, proc_pid_cmdline),
-@@ -3367,10 +3509,10 @@ static const struct pid_entry tid_base_stuff[] = {
+@@ -3347,10 +3489,10 @@ static const struct pid_entry tid_base_stuff[] = {
  #ifdef CONFIG_SECURITY
  	DIR("attr",      S_IRUGO|S_IXUGO, proc_attr_dir_inode_operations, proc_attr_dir_operations),
  #endif
@@ -48346,16 +47752,15 @@ index b143471..bb105e5 100644
  }
  module_init(proc_devices_init);
 diff --git a/fs/proc/inode.c b/fs/proc/inode.c
-index 84fd323..f698a32 100644
+index 205c922..2ee4c57 100644
 --- a/fs/proc/inode.c
 +++ b/fs/proc/inode.c
-@@ -21,12 +21,18 @@
+@@ -21,11 +21,17 @@
  #include <linux/seq_file.h>
  #include <linux/slab.h>
  #include <linux/mount.h>
 +#include <linux/grsecurity.h>
  
- #include <asm/system.h>
  #include <asm/uaccess.h>
  
  #include "internal.h"
@@ -48368,7 +47773,7 @@ index 84fd323..f698a32 100644
  static void proc_evict_inode(struct inode *inode)
  {
  	struct proc_dir_entry *de;
-@@ -52,6 +58,13 @@ static void proc_evict_inode(struct inode *inode)
+@@ -51,6 +57,13 @@ static void proc_evict_inode(struct inode *inode)
  	ns_ops = PROC_I(inode)->ns_ops;
  	if (ns_ops && ns_ops->put)
  		ns_ops->put(PROC_I(inode)->ns);
@@ -48382,7 +47787,7 @@ index 84fd323..f698a32 100644
  }
  
  static struct kmem_cache * proc_inode_cachep;
-@@ -457,7 +470,11 @@ struct inode *proc_get_inode(struct super_block *sb, struct proc_dir_entry *de)
+@@ -456,7 +469,11 @@ struct inode *proc_get_inode(struct super_block *sb, struct proc_dir_entry *de)
  		if (de->mode) {
  			inode->i_mode = de->mode;
  			inode->i_uid = de->uid;
@@ -48395,10 +47800,10 @@ index 84fd323..f698a32 100644
  		if (de->size)
  			inode->i_size = de->size;
 diff --git a/fs/proc/internal.h b/fs/proc/internal.h
-index 2925775..4f08fae 100644
+index 5f79bb8..eeccee4 100644
 --- a/fs/proc/internal.h
 +++ b/fs/proc/internal.h
-@@ -51,6 +51,9 @@ extern int proc_pid_status(struct seq_file *m, struct pid_namespace *ns,
+@@ -54,6 +54,9 @@ extern int proc_pid_status(struct seq_file *m, struct pid_namespace *ns,
  				struct pid *pid, struct task_struct *task);
  extern int proc_pid_statm(struct seq_file *m, struct pid_namespace *ns,
  				struct pid *pid, struct task_struct *task);
@@ -48407,12 +47812,12 @@ index 2925775..4f08fae 100644
 +#endif
  extern loff_t mem_lseek(struct file *file, loff_t offset, int orig);
  
- extern const struct file_operations proc_maps_operations;
+ extern const struct file_operations proc_pid_maps_operations;
 diff --git a/fs/proc/kcore.c b/fs/proc/kcore.c
-index d245cb2..f4e8498 100644
+index 86c67ee..cdca321 100644
 --- a/fs/proc/kcore.c
 +++ b/fs/proc/kcore.c
-@@ -478,9 +478,10 @@ read_kcore(struct file *file, char __user *buffer, size_t buflen, loff_t *fpos)
+@@ -480,9 +480,10 @@ read_kcore(struct file *file, char __user *buffer, size_t buflen, loff_t *fpos)
  	 * the addresses in the elf_phdr on our list.
  	 */
  	start = kc_offset_to_vaddr(*fpos - elf_buflen);
@@ -48425,7 +47830,7 @@ index d245cb2..f4e8498 100644
  	while (buflen) {
  		struct kcore_list *m;
  
-@@ -509,20 +510,23 @@ read_kcore(struct file *file, char __user *buffer, size_t buflen, loff_t *fpos)
+@@ -511,20 +512,23 @@ read_kcore(struct file *file, char __user *buffer, size_t buflen, loff_t *fpos)
  			kfree(elf_buf);
  		} else {
  			if (kern_addr_valid(start)) {
@@ -48435,7 +47840,7 @@ index d245cb2..f4e8498 100644
  
 -				n = copy_to_user(buffer, (char *)start, tsz);
 -				/*
--				 * We cannot distingush between fault on source
+-				 * We cannot distinguish between fault on source
 -				 * and fault on destination. When this happens
 -				 * we clear too and hope it will trigger the
 -				 * EFAULT again.
@@ -48460,7 +47865,7 @@ index d245cb2..f4e8498 100644
  			} else {
  				if (clear_user(buffer, tsz))
  					return -EFAULT;
-@@ -542,6 +546,9 @@ read_kcore(struct file *file, char __user *buffer, size_t buflen, loff_t *fpos)
+@@ -544,6 +548,9 @@ read_kcore(struct file *file, char __user *buffer, size_t buflen, loff_t *fpos)
  
  static int open_kcore(struct inode *inode, struct file *filp)
  {
@@ -48519,14 +47924,16 @@ index 06e1cc1..177cd98 100644
  	rcu_read_lock();
  	task = pid_task(proc_pid(dir), PIDTYPE_PID);
 diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c
-index 53c3bce..10ad159 100644
+index 21d836f..bebf3ee 100644
 --- a/fs/proc/proc_sysctl.c
 +++ b/fs/proc/proc_sysctl.c
-@@ -9,11 +9,13 @@
- #include <linux/namei.h>
+@@ -12,11 +12,15 @@
+ #include <linux/module.h>
  #include "internal.h"
  
-+extern __u32 gr_handle_sysctl(const struct ctl_table *table, const int op);
++extern int gr_handle_chroot_sysctl(const int op);
++extern int gr_handle_sysctl_mod(const char *dirname, const char *name,
++				const int op);
 +
  static const struct dentry_operations proc_sys_dentry_operations;
  static const struct file_operations proc_sys_file_operations;
@@ -48538,7 +47945,7 @@ index 53c3bce..10ad159 100644
  
  void proc_sys_poll_notify(struct ctl_table_poll *poll)
  {
-@@ -131,8 +133,14 @@ static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry,
+@@ -470,8 +474,14 @@ static struct dentry *proc_sys_lookup(struct inode *dir, struct dentry *dentry,
  
  	err = NULL;
  	d_set_d_op(dentry, &proc_sys_dentry_operations);
@@ -48547,18 +47954,50 @@ index 53c3bce..10ad159 100644
 +
  	d_add(dentry, inode);
  
-+	if (gr_handle_sysctl(p, MAY_EXEC))
++	if (!gr_acl_handle_hidden_file(dentry, nd->path.mnt))
 +		err = ERR_PTR(-ENOENT);
 +
  out:
  	sysctl_head_finish(head);
  	return err;
-@@ -163,6 +171,12 @@ static ssize_t proc_sys_call_handler(struct file *filp, void __user *buf,
+@@ -483,18 +493,20 @@ static ssize_t proc_sys_call_handler(struct file *filp, void __user *buf,
+ 	struct inode *inode = filp->f_path.dentry->d_inode;
+ 	struct ctl_table_header *head = grab_header(inode);
+ 	struct ctl_table *table = PROC_I(inode)->sysctl_entry;
++	int op = write ? MAY_WRITE : MAY_READ;
+ 	ssize_t error;
+ 	size_t res;
+ 
+ 	if (IS_ERR(head))
+ 		return PTR_ERR(head);
+ 
++
+ 	/*
+ 	 * At this point we know that the sysctl was not unregistered
+ 	 * and won't be until we finish.
+ 	 */
+ 	error = -EPERM;
+-	if (sysctl_perm(head->root, table, write ? MAY_WRITE : MAY_READ))
++	if (sysctl_perm(head->root, table, op))
+ 		goto out;
+ 
+ 	/* if that can happen at all, it should be -EINVAL, not -EISDIR */
+@@ -502,6 +514,22 @@ static ssize_t proc_sys_call_handler(struct file *filp, void __user *buf,
  	if (!table->proc_handler)
  		goto out;
  
 +#ifdef CONFIG_GRKERNSEC
 +	error = -EPERM;
++	if (gr_handle_chroot_sysctl(op))
++		goto out;
++	dget(filp->f_path.dentry);
++	if (gr_handle_sysctl_mod(filp->f_path.dentry->d_parent->d_name.name, table->procname, op)) {
++		dput(filp->f_path.dentry);
++		goto out;
++	}
++	dput(filp->f_path.dentry);
++	if (!gr_acl_handle_open(filp->f_path.dentry, filp->f_path.mnt, op))
++		goto out;
 +	if (write && !capable(CAP_SYS_ADMIN))
 +		goto out;
 +#endif
@@ -48566,7 +48005,7 @@ index 53c3bce..10ad159 100644
  	/* careful: calling conventions are nasty here */
  	res = count;
  	error = table->proc_handler(table, write, buf, &res, ppos);
-@@ -260,6 +274,9 @@ static int proc_sys_fill_cache(struct file *filp, void *dirent,
+@@ -599,6 +627,9 @@ static int proc_sys_fill_cache(struct file *filp, void *dirent,
  				return -ENOMEM;
  			} else {
  				d_set_d_op(child, &proc_sys_dentry_operations);
@@ -48576,27 +48015,27 @@ index 53c3bce..10ad159 100644
  				d_add(child, inode);
  			}
  		} else {
-@@ -288,6 +305,9 @@ static int scan(struct ctl_table_header *head, ctl_table *table,
- 		if (*pos < file->f_pos)
- 			continue;
+@@ -642,6 +673,9 @@ static int scan(struct ctl_table_header *head, ctl_table *table,
+ 	if ((*pos)++ < file->f_pos)
+ 		return 0;
  
-+		if (gr_handle_sysctl(table, 0))
-+			continue;
++	if (!gr_acl_handle_hidden_file(file->f_path.dentry, file->f_path.mnt))
++		return 0;
 +
- 		res = proc_sys_fill_cache(file, dirent, filldir, head, table);
- 		if (res)
- 			return res;
-@@ -413,6 +433,9 @@ static int proc_sys_getattr(struct vfsmount *mnt, struct dentry *dentry, struct
+ 	if (unlikely(S_ISLNK(table->mode)))
+ 		res = proc_sys_link_fill_cache(file, dirent, filldir, head, table);
+ 	else
+@@ -759,6 +793,9 @@ static int proc_sys_getattr(struct vfsmount *mnt, struct dentry *dentry, struct
  	if (IS_ERR(head))
  		return PTR_ERR(head);
  
-+	if (table && gr_handle_sysctl(table, MAY_EXEC))
++	if (table && !gr_acl_handle_hidden_file(dentry, mnt))
 +		return -ENOENT;
 +
  	generic_fillattr(inode, stat);
  	if (table)
  		stat->mode = (stat->mode & S_IFMT) | table->mode;
-@@ -435,13 +458,13 @@ static const struct file_operations proc_sys_dir_file_operations = {
+@@ -781,13 +818,13 @@ static const struct file_operations proc_sys_dir_file_operations = {
  	.llseek		= generic_file_llseek,
  };
  
@@ -48613,10 +48052,10 @@ index 53c3bce..10ad159 100644
  	.permission	= proc_sys_permission,
  	.setattr	= proc_sys_setattr,
 diff --git a/fs/proc/root.c b/fs/proc/root.c
-index 46a15d8..335631a 100644
+index eed44bf..abeb499 100644
 --- a/fs/proc/root.c
 +++ b/fs/proc/root.c
-@@ -187,7 +187,15 @@ void __init proc_root_init(void)
+@@ -188,7 +188,15 @@ void __init proc_root_init(void)
  #ifdef CONFIG_PROC_DEVICETREE
  	proc_device_tree_init();
  #endif
@@ -48633,10 +48072,10 @@ index 46a15d8..335631a 100644
  }
  
 diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
-index 3efa725..23c925b 100644
+index 1030a71..096c28b 100644
 --- a/fs/proc/task_mmu.c
 +++ b/fs/proc/task_mmu.c
-@@ -11,6 +11,7 @@
+@@ -11,12 +11,19 @@
  #include <linux/rmap.h>
  #include <linux/swap.h>
  #include <linux/swapops.h>
@@ -48644,7 +48083,19 @@ index 3efa725..23c925b 100644
  
  #include <asm/elf.h>
  #include <asm/uaccess.h>
-@@ -52,8 +53,13 @@ void task_mem(struct seq_file *m, struct mm_struct *mm)
+ #include <asm/tlbflush.h>
+ #include "internal.h"
+ 
++#ifdef CONFIG_GRKERNSEC_PROC_MEMMAP
++#define PAX_RAND_FLAGS(_mm) (_mm != NULL && _mm != current->mm && \
++			     (_mm->pax_flags & MF_PAX_RANDMMAP || \
++			      _mm->pax_flags & MF_PAX_SEGMEXEC))
++#endif
++
+ void task_mem(struct seq_file *m, struct mm_struct *mm)
+ {
+ 	unsigned long data, text, lib, swap;
+@@ -52,8 +59,13 @@ void task_mem(struct seq_file *m, struct mm_struct *mm)
  		"VmExe:\t%8lu kB\n"
  		"VmLib:\t%8lu kB\n"
  		"VmPTE:\t%8lu kB\n"
@@ -48660,7 +48111,7 @@ index 3efa725..23c925b 100644
  		(total_vm - mm->reserved_vm) << (PAGE_SHIFT-10),
  		mm->locked_vm << (PAGE_SHIFT-10),
  		mm->pinned_vm << (PAGE_SHIFT-10),
-@@ -62,7 +68,13 @@ void task_mem(struct seq_file *m, struct mm_struct *mm)
+@@ -62,7 +74,19 @@ void task_mem(struct seq_file *m, struct mm_struct *mm)
  		data << (PAGE_SHIFT-10),
  		mm->stack_vm << (PAGE_SHIFT-10), text, lib,
  		(PTRS_PER_PTE*sizeof(pte_t)*mm->nr_ptes) >> 10,
@@ -48668,27 +48119,20 @@ index 3efa725..23c925b 100644
 +		swap << (PAGE_SHIFT-10)
 +
 +#ifdef CONFIG_ARCH_TRACK_EXEC_LIMIT
-+		, mm->context.user_cs_base, mm->context.user_cs_limit
++#ifdef CONFIG_GRKERNSEC_PROC_MEMMAP
++		, PAX_RAND_FLAGS(mm) ? 0 : mm->context.user_cs_base
++		, PAX_RAND_FLAGS(mm) ? 0 : mm->context.user_cs_limit
++#else
++		, mm->context.user_cs_base
++		, mm->context.user_cs_limit
++#endif
 +#endif
 +
 +	);
  }
  
  unsigned long task_vsize(struct mm_struct *mm)
-@@ -209,6 +221,12 @@ static int do_maps_open(struct inode *inode, struct file *file,
- 	return ret;
- }
- 
-+#ifdef CONFIG_GRKERNSEC_PROC_MEMMAP
-+#define PAX_RAND_FLAGS(_mm) (_mm != NULL && _mm != current->mm && \
-+			     (_mm->pax_flags & MF_PAX_RANDMMAP || \
-+			      _mm->pax_flags & MF_PAX_SEGMEXEC))
-+#endif
-+
- static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
- {
- 	struct mm_struct *mm = vma->vm_mm;
-@@ -227,13 +245,13 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
+@@ -231,13 +255,13 @@ show_map_vma(struct seq_file *m, struct vm_area_struct *vma, int is_pid)
  		pgoff = ((loff_t)vma->vm_pgoff) << PAGE_SHIFT;
  	}
  
@@ -48707,7 +48151,7 @@ index 3efa725..23c925b 100644
  
  	seq_printf(m, "%08lx-%08lx %c%c%c%c %08llx %02x:%02x %lu %n",
  			start,
-@@ -242,7 +260,11 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
+@@ -246,7 +270,11 @@ show_map_vma(struct seq_file *m, struct vm_area_struct *vma, int is_pid)
  			flags & VM_WRITE ? 'w' : '-',
  			flags & VM_EXEC ? 'x' : '-',
  			flags & VM_MAYSHARE ? 's' : 'p',
@@ -48719,28 +48163,28 @@ index 3efa725..23c925b 100644
  			MAJOR(dev), MINOR(dev), ino, &len);
  
  	/*
-@@ -251,7 +273,7 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
+@@ -255,7 +283,7 @@ show_map_vma(struct seq_file *m, struct vm_area_struct *vma, int is_pid)
  	 */
  	if (file) {
  		pad_len_spaces(m, len);
 -		seq_path(m, &file->f_path, "\n");
 +		seq_path(m, &file->f_path, "\n\\");
- 	} else {
- 		const char *name = arch_vma_name(vma);
- 		if (!name) {
-@@ -259,8 +281,9 @@ static void show_map_vma(struct seq_file *m, struct vm_area_struct *vma)
- 				if (vma->vm_start <= mm->brk &&
- 						vma->vm_end >= mm->start_brk) {
- 					name = "[heap]";
--				} else if (vma->vm_start <= mm->start_stack &&
--					   vma->vm_end >= mm->start_stack) {
-+				} else if ((vma->vm_flags & (VM_GROWSDOWN | VM_GROWSUP)) ||
-+					   (vma->vm_start <= mm->start_stack &&
-+					    vma->vm_end >= mm->start_stack)) {
- 					name = "[stack]";
- 				}
+ 		goto done;
+ 	}
+ 
+@@ -281,8 +309,9 @@ show_map_vma(struct seq_file *m, struct vm_area_struct *vma, int is_pid)
+ 			 * Thread stack in /proc/PID/task/TID/maps or
+ 			 * the main process stack.
+ 			 */
+-			if (!is_pid || (vma->vm_start <= mm->start_stack &&
+-			    vma->vm_end >= mm->start_stack)) {
++			if (!is_pid || (vma->vm_flags & (VM_GROWSDOWN | VM_GROWSUP)) ||
++			    (vma->vm_start <= mm->start_stack &&
++			     vma->vm_end >= mm->start_stack)) {
+ 				name = "[stack]";
  			} else {
-@@ -281,6 +304,13 @@ static int show_map(struct seq_file *m, void *v)
+ 				/* Thread stack in /proc/PID/maps */
+@@ -306,6 +335,13 @@ static int show_map(struct seq_file *m, void *v, int is_pid)
  	struct proc_maps_private *priv = m->private;
  	struct task_struct *task = priv->task;
  
@@ -48751,10 +48195,10 @@ index 3efa725..23c925b 100644
 +	}
 +#endif
 +
- 	show_map_vma(m, vma);
+ 	show_map_vma(m, vma, is_pid);
  
  	if (m->count < m->size)  /* vma is copied successfully */
-@@ -437,12 +467,23 @@ static int show_smap(struct seq_file *m, void *v)
+@@ -482,12 +518,23 @@ static int show_smap(struct seq_file *m, void *v, int is_pid)
  		.private = &mss,
  	};
  
@@ -48780,10 +48224,10 @@ index 3efa725..23c925b 100644
 +#ifdef CONFIG_GRKERNSEC_PROC_MEMMAP
 +	}
 +#endif
- 	show_map_vma(m, vma);
+ 	show_map_vma(m, vma, is_pid);
  
  	seq_printf(m,
-@@ -460,7 +501,11 @@ static int show_smap(struct seq_file *m, void *v)
+@@ -505,7 +552,11 @@ static int show_smap(struct seq_file *m, void *v, int is_pid)
  		   "KernelPageSize: %8lu kB\n"
  		   "MMUPageSize:    %8lu kB\n"
  		   "Locked:         %8lu kB\n",
@@ -48795,7 +48239,16 @@ index 3efa725..23c925b 100644
  		   mss.resident >> 10,
  		   (unsigned long)(mss.pss >> (10 + PSS_SHIFT)),
  		   mss.shared_clean  >> 10,
-@@ -1024,6 +1069,13 @@ static int show_numa_map(struct seq_file *m, void *v)
+@@ -784,7 +835,7 @@ static int pagemap_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end,
+ 
+ 	/* find the first VMA at or above 'addr' */
+ 	vma = find_vma(walk->mm, addr);
+-	if (pmd_trans_huge_lock(pmd, vma) == 1) {
++	if (vma && pmd_trans_huge_lock(pmd, vma) == 1) {
+ 		for (; addr != end; addr += PAGE_SIZE) {
+ 			unsigned long offset;
+ 
+@@ -1138,6 +1189,13 @@ static int show_numa_map(struct seq_file *m, void *v, int is_pid)
  	int n;
  	char buffer[50];
  
@@ -48809,7 +48262,7 @@ index 3efa725..23c925b 100644
  	if (!mm)
  		return 0;
  
-@@ -1041,11 +1093,15 @@ static int show_numa_map(struct seq_file *m, void *v)
+@@ -1155,11 +1213,15 @@ static int show_numa_map(struct seq_file *m, void *v, int is_pid)
  	mpol_to_str(buffer, sizeof(buffer), pol, 0);
  	mpol_cond_put(pol);
  
@@ -48825,9 +48278,9 @@ index 3efa725..23c925b 100644
 +		seq_path(m, &file->f_path, "\n\t\\= ");
  	} else if (vma->vm_start <= mm->brk && vma->vm_end >= mm->start_brk) {
  		seq_printf(m, " heap");
- 	} else if (vma->vm_start <= mm->start_stack &&
+ 	} else {
 diff --git a/fs/proc/task_nommu.c b/fs/proc/task_nommu.c
-index 980de54..2a4db5f 100644
+index 74fe164..899e77b 100644
 --- a/fs/proc/task_nommu.c
 +++ b/fs/proc/task_nommu.c
 @@ -51,7 +51,7 @@ void task_mem(struct seq_file *m, struct mm_struct *mm)
@@ -48839,15 +48292,15 @@ index 980de54..2a4db5f 100644
  		sbytes += kobjsize(current->fs);
  	else
  		bytes += kobjsize(current->fs);
-@@ -166,7 +166,7 @@ static int nommu_vma_show(struct seq_file *m, struct vm_area_struct *vma)
+@@ -168,7 +168,7 @@ static int nommu_vma_show(struct seq_file *m, struct vm_area_struct *vma,
  
  	if (file) {
  		pad_len_spaces(m, len);
 -		seq_path(m, &file->f_path, "");
 +		seq_path(m, &file->f_path, "\n\\");
  	} else if (mm) {
- 		if (vma->vm_start <= mm->start_stack &&
- 			vma->vm_end >= mm->start_stack) {
+ 		pid_t tid = vm_is_stack(priv->task, vma, is_pid);
+ 
 diff --git a/fs/quota/netlink.c b/fs/quota/netlink.c
 index d67908b..d13f6a6 100644
 --- a/fs/quota/netlink.c
@@ -48871,7 +48324,7 @@ index d67908b..d13f6a6 100644
  	if (!msg_head) {
  		printk(KERN_ERR
 diff --git a/fs/readdir.c b/fs/readdir.c
-index 356f715..c918d38 100644
+index cc0a822..43cb195 100644
 --- a/fs/readdir.c
 +++ b/fs/readdir.c
 @@ -17,6 +17,7 @@
@@ -48973,7 +48426,7 @@ index 356f715..c918d38 100644
  			error = -EFAULT;
  		else
 diff --git a/fs/reiserfs/do_balan.c b/fs/reiserfs/do_balan.c
-index 60c0804..d814f98 100644
+index 2b7882b..1c5ef48 100644
 --- a/fs/reiserfs/do_balan.c
 +++ b/fs/reiserfs/do_balan.c
 @@ -2051,7 +2051,7 @@ void do_balance(struct tree_balance *tb,	/* tree_balance structure */
@@ -48986,10 +48439,10 @@ index 60c0804..d814f98 100644
  
  	/* balance leaf returns 0 except if combining L R and S into
 diff --git a/fs/reiserfs/procfs.c b/fs/reiserfs/procfs.c
-index 7a99811..a7c96c4 100644
+index 2c1ade6..8c59d8d 100644
 --- a/fs/reiserfs/procfs.c
 +++ b/fs/reiserfs/procfs.c
-@@ -113,7 +113,7 @@ static int show_super(struct seq_file *m, struct super_block *sb)
+@@ -112,7 +112,7 @@ static int show_super(struct seq_file *m, struct super_block *sb)
  		   "SMALL_TAILS " : "NO_TAILS ",
  		   replay_only(sb) ? "REPLAY_ONLY " : "",
  		   convert_reiserfs(sb) ? "CONV " : "",
@@ -48998,19 +48451,41 @@ index 7a99811..a7c96c4 100644
  		   SF(s_disk_reads), SF(s_disk_writes), SF(s_fix_nodes),
  		   SF(s_do_balance), SF(s_unneeded_left_neighbor),
  		   SF(s_good_search_by_key_reada), SF(s_bmaps),
+diff --git a/fs/reiserfs/reiserfs.h b/fs/reiserfs/reiserfs.h
+index a59d271..e12d1cf 100644
+--- a/fs/reiserfs/reiserfs.h
++++ b/fs/reiserfs/reiserfs.h
+@@ -453,7 +453,7 @@ struct reiserfs_sb_info {
+ 	/* Comment? -Hans */
+ 	wait_queue_head_t s_wait;
+ 	/* To be obsoleted soon by per buffer seals.. -Hans */
+-	atomic_t s_generation_counter;	// increased by one every time the
++	atomic_unchecked_t s_generation_counter;	// increased by one every time the
+ 	// tree gets re-balanced
+ 	unsigned long s_properties;	/* File system properties. Currently holds
+ 					   on-disk FS format */
+@@ -1973,7 +1973,7 @@ static inline loff_t max_reiserfs_offset(struct inode *inode)
+ #define REISERFS_USER_MEM		1	/* reiserfs user memory mode            */
+ 
+ #define fs_generation(s) (REISERFS_SB(s)->s_generation_counter)
+-#define get_generation(s) atomic_read (&fs_generation(s))
++#define get_generation(s) atomic_read_unchecked (&fs_generation(s))
+ #define FILESYSTEM_CHANGED_TB(tb)  (get_generation((tb)->tb_sb) != (tb)->fs_gen)
+ #define __fs_changed(gen,s) (gen != get_generation (s))
+ #define fs_changed(gen,s)		\
 diff --git a/fs/select.c b/fs/select.c
-index e782258..3b4b44c 100644
+index 17d33d0..da0bf5c 100644
 --- a/fs/select.c
 +++ b/fs/select.c
 @@ -20,6 +20,7 @@
- #include <linux/module.h>
+ #include <linux/export.h>
  #include <linux/slab.h>
  #include <linux/poll.h>
 +#include <linux/security.h>
  #include <linux/personality.h> /* for STICKY_TIMEOUTS */
  #include <linux/file.h>
  #include <linux/fdtable.h>
-@@ -837,6 +838,7 @@ int do_sys_poll(struct pollfd __user *ufds, unsigned int nfds,
+@@ -833,6 +834,7 @@ int do_sys_poll(struct pollfd __user *ufds, unsigned int nfds,
   	struct poll_list *walk = head;
   	unsigned long todo = nfds;
  
@@ -49019,18 +48494,18 @@ index e782258..3b4b44c 100644
  		return -EINVAL;
  
 diff --git a/fs/seq_file.c b/fs/seq_file.c
-index 4023d6b..ab46c6a 100644
+index 0cbd049..cab1127 100644
 --- a/fs/seq_file.c
 +++ b/fs/seq_file.c
 @@ -9,6 +9,7 @@
- #include <linux/module.h>
+ #include <linux/export.h>
  #include <linux/seq_file.h>
  #include <linux/slab.h>
 +#include <linux/sched.h>
  
  #include <asm/uaccess.h>
  #include <asm/page.h>
-@@ -40,6 +41,9 @@ int seq_open(struct file *file, const struct seq_operations *op)
+@@ -56,6 +57,9 @@ int seq_open(struct file *file, const struct seq_operations *op)
  	memset(p, 0, sizeof(*p));
  	mutex_init(&p->lock);
  	p->op = op;
@@ -49040,7 +48515,7 @@ index 4023d6b..ab46c6a 100644
  
  	/*
  	 * Wrappers around seq_open(e.g. swaps_open) need to be
-@@ -549,7 +553,7 @@ static void single_stop(struct seq_file *p, void *v)
+@@ -567,7 +571,7 @@ static void single_stop(struct seq_file *p, void *v)
  int single_open(struct file *file, int (*show)(struct seq_file *, void *),
  		void *data)
  {
@@ -49050,7 +48525,7 @@ index 4023d6b..ab46c6a 100644
  
  	if (op) {
 diff --git a/fs/splice.c b/fs/splice.c
-index 96d7b28..fd465ac 100644
+index f847684..156619e 100644
 --- a/fs/splice.c
 +++ b/fs/splice.c
 @@ -194,7 +194,7 @@ ssize_t splice_to_pipe(struct pipe_inode_info *pipe,
@@ -49101,7 +48576,7 @@ index 96d7b28..fd465ac 100644
  		vec[i].iov_len = this_len;
  		spd.pages[i] = page;
  		spd.nr_pages++;
-@@ -848,10 +848,10 @@ EXPORT_SYMBOL(splice_from_pipe_feed);
+@@ -845,10 +845,10 @@ EXPORT_SYMBOL(splice_from_pipe_feed);
  int splice_from_pipe_next(struct pipe_inode_info *pipe, struct splice_desc *sd)
  {
  	while (!pipe->nrbufs) {
@@ -49114,7 +48589,7 @@ index 96d7b28..fd465ac 100644
  			return 0;
  
  		if (sd->flags & SPLICE_F_NONBLOCK)
-@@ -1184,7 +1184,7 @@ ssize_t splice_direct_to_actor(struct file *in, struct splice_desc *sd,
+@@ -1181,7 +1181,7 @@ ssize_t splice_direct_to_actor(struct file *in, struct splice_desc *sd,
  		 * out of the pipe right after the splice_to_pipe(). So set
  		 * PIPE_READERS appropriately.
  		 */
@@ -49123,7 +48598,7 @@ index 96d7b28..fd465ac 100644
  
  		current->splice_pipe = pipe;
  	}
-@@ -1736,9 +1736,9 @@ static int ipipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
+@@ -1733,9 +1733,9 @@ static int ipipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
  			ret = -ERESTARTSYS;
  			break;
  		}
@@ -49135,7 +48610,7 @@ index 96d7b28..fd465ac 100644
  			if (flags & SPLICE_F_NONBLOCK) {
  				ret = -EAGAIN;
  				break;
-@@ -1770,7 +1770,7 @@ static int opipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
+@@ -1767,7 +1767,7 @@ static int opipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
  	pipe_lock(pipe);
  
  	while (pipe->nrbufs >= pipe->buffers) {
@@ -49144,7 +48619,7 @@ index 96d7b28..fd465ac 100644
  			send_sig(SIGPIPE, current, 0);
  			ret = -EPIPE;
  			break;
-@@ -1783,9 +1783,9 @@ static int opipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
+@@ -1780,9 +1780,9 @@ static int opipe_prep(struct pipe_inode_info *pipe, unsigned int flags)
  			ret = -ERESTARTSYS;
  			break;
  		}
@@ -49156,7 +48631,7 @@ index 96d7b28..fd465ac 100644
  	}
  
  	pipe_unlock(pipe);
-@@ -1821,14 +1821,14 @@ retry:
+@@ -1818,14 +1818,14 @@ retry:
  	pipe_double_lock(ipipe, opipe);
  
  	do {
@@ -49173,7 +48648,7 @@ index 96d7b28..fd465ac 100644
  			break;
  
  		/*
-@@ -1925,7 +1925,7 @@ static int link_pipe(struct pipe_inode_info *ipipe,
+@@ -1922,7 +1922,7 @@ static int link_pipe(struct pipe_inode_info *ipipe,
  	pipe_double_lock(ipipe, opipe);
  
  	do {
@@ -49182,7 +48657,7 @@ index 96d7b28..fd465ac 100644
  			send_sig(SIGPIPE, current, 0);
  			if (!ret)
  				ret = -EPIPE;
-@@ -1970,7 +1970,7 @@ static int link_pipe(struct pipe_inode_info *ipipe,
+@@ -1967,7 +1967,7 @@ static int link_pipe(struct pipe_inode_info *ipipe,
  	 * return EAGAIN if we have the potential of some data in the
  	 * future, otherwise just return 0
  	 */
@@ -49192,10 +48667,10 @@ index 96d7b28..fd465ac 100644
  
  	pipe_unlock(ipipe);
 diff --git a/fs/sysfs/dir.c b/fs/sysfs/dir.c
-index 7fdf6a7..e6cd8ad 100644
+index 35a36d3..23424b2 100644
 --- a/fs/sysfs/dir.c
 +++ b/fs/sysfs/dir.c
-@@ -642,6 +642,18 @@ static int create_dir(struct kobject *kobj, struct sysfs_dirent *parent_sd,
+@@ -657,6 +657,18 @@ static int create_dir(struct kobject *kobj, struct sysfs_dirent *parent_sd,
  	struct sysfs_dirent *sd;
  	int rc;
  
@@ -49315,10 +48790,10 @@ index ba653f3..06ea4b1 100644
  	error = notify_change(path->dentry, &newattrs);
  	mutex_unlock(&inode->i_mutex);
 diff --git a/fs/xattr.c b/fs/xattr.c
-index 82f4337..236473c 100644
+index 3c8c1cc..a83c398 100644
 --- a/fs/xattr.c
 +++ b/fs/xattr.c
-@@ -315,7 +315,7 @@ EXPORT_SYMBOL_GPL(vfs_removexattr);
+@@ -316,7 +316,7 @@ EXPORT_SYMBOL_GPL(vfs_removexattr);
   * Extended attribute SET operations
   */
  static long
@@ -49327,8 +48802,8 @@ index 82f4337..236473c 100644
  	 size_t size, int flags)
  {
  	int error;
-@@ -339,7 +339,13 @@ setxattr(struct dentry *d, const char __user *name, const void __user *value,
- 			return PTR_ERR(kvalue);
+@@ -349,7 +349,12 @@ setxattr(struct dentry *d, const char __user *name, const void __user *value,
+ 		}
  	}
  
 -	error = vfs_setxattr(d, kname, kvalue, size, flags);
@@ -49338,11 +48813,10 @@ index 82f4337..236473c 100644
 +	}
 +
 +	error = vfs_setxattr(path->dentry, kname, kvalue, size, flags);
-+out:
- 	kfree(kvalue);
- 	return error;
- }
-@@ -356,7 +362,7 @@ SYSCALL_DEFINE5(setxattr, const char __user *, pathname,
+ out:
+ 	if (vvalue)
+ 		vfree(vvalue);
+@@ -370,7 +375,7 @@ SYSCALL_DEFINE5(setxattr, const char __user *, pathname,
  		return error;
  	error = mnt_want_write(path.mnt);
  	if (!error) {
@@ -49351,7 +48825,7 @@ index 82f4337..236473c 100644
  		mnt_drop_write(path.mnt);
  	}
  	path_put(&path);
-@@ -375,7 +381,7 @@ SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
+@@ -389,7 +394,7 @@ SYSCALL_DEFINE5(lsetxattr, const char __user *, pathname,
  		return error;
  	error = mnt_want_write(path.mnt);
  	if (!error) {
@@ -49360,7 +48834,7 @@ index 82f4337..236473c 100644
  		mnt_drop_write(path.mnt);
  	}
  	path_put(&path);
-@@ -386,17 +392,15 @@ SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
+@@ -400,17 +405,15 @@ SYSCALL_DEFINE5(fsetxattr, int, fd, const char __user *, name,
  		const void __user *,value, size_t, size, int, flags)
  {
  	struct file *f;
@@ -49381,7 +48855,7 @@ index 82f4337..236473c 100644
  	}
  	fput(f);
 diff --git a/fs/xattr_acl.c b/fs/xattr_acl.c
-index 8d5a506..7f62712 100644
+index 69d06b0..c0996e5 100644
 --- a/fs/xattr_acl.c
 +++ b/fs/xattr_acl.c
 @@ -17,8 +17,8 @@
@@ -49396,7 +48870,7 @@ index 8d5a506..7f62712 100644
  	struct posix_acl *acl;
  	struct posix_acl_entry *acl_e;
 diff --git a/fs/xfs/xfs_bmap.c b/fs/xfs/xfs_bmap.c
-index 188ef2f..adcf864 100644
+index 85e7e32..5344e52 100644
 --- a/fs/xfs/xfs_bmap.c
 +++ b/fs/xfs/xfs_bmap.c
 @@ -190,7 +190,7 @@ xfs_bmap_validate_ret(
@@ -49430,7 +48904,7 @@ index 79d05e8..e3e5861 100644
  			*offset = off & 0x7fffffff;
  			return 0;
 diff --git a/fs/xfs/xfs_ioctl.c b/fs/xfs/xfs_ioctl.c
-index 76f3ca5..f57f712 100644
+index 91f8ff5..0ce68f9 100644
 --- a/fs/xfs/xfs_ioctl.c
 +++ b/fs/xfs/xfs_ioctl.c
 @@ -128,7 +128,7 @@ xfs_find_handle(
@@ -49443,10 +48917,10 @@ index 76f3ca5..f57f712 100644
  		goto out_put;
  
 diff --git a/fs/xfs/xfs_iops.c b/fs/xfs/xfs_iops.c
-index ab30253..4d86958 100644
+index 3011b87..1ab03e9 100644
 --- a/fs/xfs/xfs_iops.c
 +++ b/fs/xfs/xfs_iops.c
-@@ -447,7 +447,7 @@ xfs_vn_put_link(
+@@ -397,7 +397,7 @@ xfs_vn_put_link(
  	struct nameidata *nd,
  	void		*p)
  {
@@ -50586,10 +50060,10 @@ index 0000000..1b9afa9
 +endif
 diff --git a/grsecurity/gracl.c b/grsecurity/gracl.c
 new file mode 100644
-index 0000000..a6d83f0
+index 0000000..00b6c54
 --- /dev/null
 +++ b/grsecurity/gracl.c
-@@ -0,0 +1,4193 @@
+@@ -0,0 +1,4012 @@
 +#include <linux/kernel.h>
 +#include <linux/module.h>
 +#include <linux/sched.h>
@@ -50878,7 +50352,7 @@ index 0000000..a6d83f0
 +	char *res;
 +	struct path path;
 +	struct path root;
-+	struct task_struct *reaper = &init_task;
++	struct task_struct *reaper = init_pid_ns.child_reaper;
 +
 +	path.dentry = (struct dentry *)dentry;
 +	path.mnt = (struct vfsmount *)vfsmnt;
@@ -51452,7 +50926,7 @@ index 0000000..a6d83f0
 +static int
 +init_variables(const struct gr_arg *arg)
 +{
-+	struct task_struct *reaper = &init_task;
++	struct task_struct *reaper = init_pid_ns.child_reaper;
 +	unsigned int stacksize;
 +
 +	subj_map_set.s_size = arg->role_db.num_subjects;
@@ -52624,20 +52098,6 @@ index 0000000..a6d83f0
 +}
 +
 +static void
-+gr_log_learn_sysctl(const char *path, const __u32 mode)
-+{
-+	struct task_struct *task = current;
-+	const struct cred *cred = current_cred();
-+
-+	security_learn(GR_LEARN_AUDIT_MSG, task->role->rolename, task->role->roletype,
-+		       cred->uid, cred->gid, task->exec_file ? gr_to_filename1(task->exec_file->f_path.dentry,
-+		       task->exec_file->f_path.mnt) : task->acl->filename, task->acl->filename,
-+		       1UL, 1UL, path, (unsigned long) mode, &task->signal->saved_ip);
-+
-+	return;
-+}
-+
-+static void
 +gr_log_learn_id_change(const char type, const unsigned int real, 
 +		       const unsigned int effective, const unsigned int fs)
 +{
@@ -54203,173 +53663,6 @@ index 0000000..a6d83f0
 +}
 +#endif
 +
-+#ifdef CONFIG_SYSCTL
-+/* Eric Biederman likes breaking userland ABI and every inode-based security
-+   system to save 35kb of memory */
-+
-+/* we modify the passed in filename, but adjust it back before returning */
-+static struct acl_object_label *gr_lookup_by_name(char *name, unsigned int len)
-+{
-+	struct name_entry *nmatch;
-+	char *p, *lastp = NULL;
-+	struct acl_object_label *obj = NULL, *tmp;
-+	struct acl_subject_label *tmpsubj;
-+	char c = '\0';
-+
-+	read_lock(&gr_inode_lock);
-+
-+	p = name + len - 1;
-+	do {
-+		nmatch = lookup_name_entry(name);
-+		if (lastp != NULL)
-+			*lastp = c;
-+
-+		if (nmatch == NULL)
-+			goto next_component;
-+		tmpsubj = current->acl;
-+		do {
-+			obj = lookup_acl_obj_label(nmatch->inode, nmatch->device, tmpsubj);
-+			if (obj != NULL) {
-+				tmp = obj->globbed;
-+				while (tmp) {
-+					if (!glob_match(tmp->filename, name)) {
-+						obj = tmp;
-+						goto found_obj;
-+					}
-+					tmp = tmp->next;
-+				}
-+				goto found_obj;
-+			}
-+		} while ((tmpsubj = tmpsubj->parent_subject));
-+next_component:
-+		/* end case */
-+		if (p == name)
-+			break;
-+
-+		while (*p != '/')
-+			p--;
-+		if (p == name)
-+			lastp = p + 1;
-+		else {
-+			lastp = p;
-+			p--;
-+		}
-+		c = *lastp;
-+		*lastp = '\0';
-+	} while (1);
-+found_obj:
-+	read_unlock(&gr_inode_lock);
-+	/* obj returned will always be non-null */
-+	return obj;
-+}
-+
-+/* returns 0 when allowing, non-zero on error
-+   op of 0 is used for readdir, so we don't log the names of hidden files
-+*/
-+__u32
-+gr_handle_sysctl(const struct ctl_table *table, const int op)
-+{
-+	struct ctl_table *tmp;
-+	const char *proc_sys = "/proc/sys";
-+	char *path;
-+	struct acl_object_label *obj;
-+	unsigned short len = 0, pos = 0, depth = 0, i;
-+	__u32 err = 0;
-+	__u32 mode = 0;
-+
-+	if (unlikely(!(gr_status & GR_READY)))
-+		return 0;
-+
-+	/* for now, ignore operations on non-sysctl entries if it's not a
-+	   readdir*/
-+	if (table->child != NULL && op != 0)
-+		return 0;
-+
-+	mode |= GR_FIND;
-+	/* it's only a read if it's an entry, read on dirs is for readdir */
-+	if (op & MAY_READ)
-+		mode |= GR_READ;
-+	if (op & MAY_WRITE)
-+		mode |= GR_WRITE;
-+
-+	preempt_disable();
-+
-+	path = per_cpu_ptr(gr_shared_page[0], smp_processor_id());
-+
-+	/* it's only a read/write if it's an actual entry, not a dir
-+	   (which are opened for readdir)
-+	*/
-+
-+	/* convert the requested sysctl entry into a pathname */
-+
-+	for (tmp = (struct ctl_table *)table; tmp != NULL; tmp = tmp->parent) {
-+		len += strlen(tmp->procname);
-+		len++;
-+		depth++;
-+	}
-+
-+	if ((len + depth + strlen(proc_sys) + 1) > PAGE_SIZE) {
-+		/* deny */
-+		goto out;
-+	}
-+
-+	memset(path, 0, PAGE_SIZE);
-+
-+	memcpy(path, proc_sys, strlen(proc_sys));
-+
-+	pos += strlen(proc_sys);
-+
-+	for (; depth > 0; depth--) {
-+		path[pos] = '/';
-+		pos++;
-+		for (i = 1, tmp = (struct ctl_table *)table; tmp != NULL; tmp = tmp->parent) {
-+			if (depth == i) {
-+				memcpy(path + pos, tmp->procname,
-+				       strlen(tmp->procname));
-+				pos += strlen(tmp->procname);
-+			}
-+			i++;
-+		}
-+	}
-+
-+	obj = gr_lookup_by_name(path, pos);
-+	err = obj->mode & (mode | to_gr_audit(mode) | GR_SUPPRESS);
-+
-+	if (unlikely((current->acl->mode & (GR_LEARN | GR_INHERITLEARN)) &&
-+		     ((err & mode) != mode))) {
-+		__u32 new_mode = mode;
-+
-+		new_mode &= ~(GR_AUDITS | GR_SUPPRESS);
-+
-+		err = 0;
-+		gr_log_learn_sysctl(path, new_mode);
-+	} else if (!(err & GR_FIND) && !(err & GR_SUPPRESS) && op != 0) {
-+		gr_log_hidden_sysctl(GR_DONT_AUDIT, GR_HIDDEN_ACL_MSG, path);
-+		err = -ENOENT;
-+	} else if (!(err & GR_FIND)) {
-+		err = -ENOENT;
-+	} else if (((err & mode) & ~GR_FIND) != (mode & ~GR_FIND) && !(err & GR_SUPPRESS)) {
-+		gr_log_str4(GR_DONT_AUDIT, GR_SYSCTL_ACL_MSG, "denied",
-+			       path, (mode & GR_READ) ? " reading" : "",
-+			       (mode & GR_WRITE) ? " writing" : "");
-+		err = -EACCES;
-+	} else if ((err & mode) != mode) {
-+		err = -EACCES;
-+	} else if ((((err & mode) & ~GR_FIND) == (mode & ~GR_FIND)) && (err & GR_AUDITS)) {
-+		gr_log_str4(GR_DO_AUDIT, GR_SYSCTL_ACL_MSG, "successful",
-+			       path, (mode & GR_READ) ? " reading" : "",
-+			       (mode & GR_WRITE) ? " writing" : "");
-+		err = 0;
-+	} else
-+		err = 0;
-+
-+      out:
-+	preempt_enable();
-+
-+	return err;
-+}
-+#endif
-+
 +int
 +gr_handle_proc_ptrace(struct task_struct *task)
 +{
@@ -58877,10 +58170,10 @@ index 0000000..4030d57
 +}
 diff --git a/grsecurity/grsec_sysctl.c b/grsecurity/grsec_sysctl.c
 new file mode 100644
-index 0000000..a1aedd7
+index 0000000..8316f6f
 --- /dev/null
 +++ b/grsecurity/grsec_sysctl.c
-@@ -0,0 +1,451 @@
+@@ -0,0 +1,453 @@
 +#include <linux/kernel.h>
 +#include <linux/sched.h>
 +#include <linux/sysctl.h>
@@ -58891,6 +58184,8 @@ index 0000000..a1aedd7
 +gr_handle_sysctl_mod(const char *dirname, const char *name, const int op)
 +{
 +#ifdef CONFIG_GRKERNSEC_SYSCTL
++	if (dirname == NULL || name == NULL)
++		return 0;
 +	if (!strcmp(dirname, "grsecurity") && grsec_lock && (op & MAY_WRITE)) {
 +		gr_log_str(GR_DONT_AUDIT, GR_SYSCTL_MSG, name);
 +		return -EACCES;
@@ -59501,7 +58796,7 @@ index 0000000..9f7b1ac
 +	return retval;
 +}
 diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h
-index 6cd5b64..f620d2d 100644
+index f1c8ca6..b5c1cc7 100644
 --- a/include/acpi/acpi_bus.h
 +++ b/include/acpi/acpi_bus.h
 @@ -107,7 +107,7 @@ struct acpi_device_ops {
@@ -59984,10 +59279,10 @@ index 810431d..0ec4804f 100644
   * (puds are folded into pgds so this doesn't get actually called,
   * but the define is needed for a generic inline function.)
 diff --git a/include/asm-generic/pgtable.h b/include/asm-generic/pgtable.h
-index a03c098..19751cf 100644
+index 125c54e..e95c18e 100644
 --- a/include/asm-generic/pgtable.h
 +++ b/include/asm-generic/pgtable.h
-@@ -445,6 +445,18 @@ static inline int pmd_write(pmd_t pmd)
+@@ -446,6 +446,18 @@ static inline int pmd_write(pmd_t pmd)
  #endif /* __HAVE_ARCH_PMD_WRITE */
  #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
  
@@ -60006,7 +59301,7 @@ index a03c098..19751cf 100644
  /*
   * This function is meant to be used by sites walking pagetables with
   * the mmap_sem hold in read mode to protect against MADV_DONTNEED and
-@@ -458,11 +470,17 @@ static inline int pmd_write(pmd_t pmd)
+@@ -459,11 +471,17 @@ static inline int pmd_write(pmd_t pmd)
   * undefined so behaving like if the pmd was none is safe (because it
   * can return none anyway). The compiler level barrier() is critically
   * important to compute the two checks atomically on the same pmdval.
@@ -60026,7 +59321,7 @@ index a03c098..19751cf 100644
  	/*
  	 * The barrier will stabilize the pmdval in a register or on
  	 * the stack so that it will stop changing under the code.
-@@ -502,6 +520,14 @@ static inline int pmd_trans_unstable(pmd_t *pmd)
+@@ -503,6 +521,14 @@ static inline int pmd_trans_unstable(pmd_t *pmd)
  #endif
  }
  
@@ -60042,10 +59337,10 @@ index a03c098..19751cf 100644
  
  #endif /* !__ASSEMBLY__ */
 diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h
-index b5e2e4c..6a5373e 100644
+index 8aeadf6..f1dc019 100644
 --- a/include/asm-generic/vmlinux.lds.h
 +++ b/include/asm-generic/vmlinux.lds.h
-@@ -217,6 +217,7 @@
+@@ -218,6 +218,7 @@
  	.rodata           : AT(ADDR(.rodata) - LOAD_OFFSET) {		\
  		VMLINUX_SYMBOL(__start_rodata) = .;			\
  		*(.rodata) *(.rodata.*)					\
@@ -60053,7 +59348,7 @@ index b5e2e4c..6a5373e 100644
  		*(__vermagic)		/* Kernel version magic */	\
  		. = ALIGN(8);						\
  		VMLINUX_SYMBOL(__start___tracepoints_ptrs) = .;		\
-@@ -722,17 +723,18 @@
+@@ -716,17 +717,18 @@
   * section in the linker script will go there too.  @phdr should have
   * a leading colon.
   *
@@ -60077,7 +59372,7 @@ index b5e2e4c..6a5373e 100644
  /**
   * PERCPU_SECTION - define output section for percpu area, simple version
 diff --git a/include/drm/drmP.h b/include/drm/drmP.h
-index 92f0981..d44a37c 100644
+index dd73104..fde86bd 100644
 --- a/include/drm/drmP.h
 +++ b/include/drm/drmP.h
 @@ -72,6 +72,7 @@
@@ -60088,7 +59383,7 @@ index 92f0981..d44a37c 100644
  #include "drm.h"
  
  #include <linux/idr.h>
-@@ -1038,7 +1039,7 @@ struct drm_device {
+@@ -1074,7 +1075,7 @@ struct drm_device {
  
  	/** \name Usage Counters */
  	/*@{ */
@@ -60097,7 +59392,7 @@ index 92f0981..d44a37c 100644
  	atomic_t ioctl_count;		/**< Outstanding IOCTLs pending */
  	atomic_t vma_count;		/**< Outstanding vma areas open */
  	int buf_use;			/**< Buffers in use -- cannot alloc */
-@@ -1049,7 +1050,7 @@ struct drm_device {
+@@ -1085,7 +1086,7 @@ struct drm_device {
  	/*@{ */
  	unsigned long counters;
  	enum drm_stat_type types[15];
@@ -60129,10 +59424,10 @@ index 37515d1..34fa8b0 100644
  struct drm_connector_helper_funcs {
  	int (*get_modes)(struct drm_connector *connector);
 diff --git a/include/drm/ttm/ttm_memory.h b/include/drm/ttm/ttm_memory.h
-index 26c1f78..6722682 100644
+index d6d1da4..fdd1ac5 100644
 --- a/include/drm/ttm/ttm_memory.h
 +++ b/include/drm/ttm/ttm_memory.h
-@@ -47,7 +47,7 @@
+@@ -48,7 +48,7 @@
  
  struct ttm_mem_shrink {
  	int (*do_shrink) (struct ttm_mem_shrink *);
@@ -60161,7 +59456,7 @@ index e86dfca..40cc55f 100644
  #define N_MAGIC(exec) ((exec).a_info & 0xffff)
  #endif
 diff --git a/include/linux/atmdev.h b/include/linux/atmdev.h
-index f4ff882..84b53a6 100644
+index 06fd4bb..1caec0d 100644
 --- a/include/linux/atmdev.h
 +++ b/include/linux/atmdev.h
 @@ -237,7 +237,7 @@ struct compat_atm_iobuf {
@@ -60174,7 +59469,7 @@ index f4ff882..84b53a6 100644
  #undef __HANDLE_ITEM
  };
 diff --git a/include/linux/binfmts.h b/include/linux/binfmts.h
-index 0092102..8a801b4 100644
+index 366422b..1fa7f84 100644
 --- a/include/linux/binfmts.h
 +++ b/include/linux/binfmts.h
 @@ -89,6 +89,7 @@ struct linux_binfmt {
@@ -60186,10 +59481,10 @@ index 0092102..8a801b4 100644
  };
  
 diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h
-index 606cf33..b72c577 100644
+index 4d4ac24..2c3ccce 100644
 --- a/include/linux/blkdev.h
 +++ b/include/linux/blkdev.h
-@@ -1379,7 +1379,7 @@ struct block_device_operations {
+@@ -1376,7 +1376,7 @@ struct block_device_operations {
  	/* this callback is with swap_lock and sometimes page table lock held */
  	void (*swap_slot_free_notify) (struct block_device *, unsigned long);
  	struct module *owner;
@@ -60308,13 +59603,13 @@ index 12d52de..b5f7fa7 100644
  /* audit system wants to get cap info from files as well */
  extern int get_vfs_caps_from_disk(const struct dentry *dentry, struct cpu_vfs_cap_data *cpu_caps);
 diff --git a/include/linux/cleancache.h b/include/linux/cleancache.h
-index 04ffb2e..6799180 100644
+index 42e55de..1cd0e66 100644
 --- a/include/linux/cleancache.h
 +++ b/include/linux/cleancache.h
 @@ -31,7 +31,7 @@ struct cleancache_ops {
- 	void (*flush_page)(int, struct cleancache_filekey, pgoff_t);
- 	void (*flush_inode)(int, struct cleancache_filekey);
- 	void (*flush_fs)(int);
+ 	void (*invalidate_page)(int, struct cleancache_filekey, pgoff_t);
+ 	void (*invalidate_inode)(int, struct cleancache_filekey);
+ 	void (*invalidate_fs)(int);
 -};
 +} __no_const;
  
@@ -60354,7 +59649,7 @@ index 2f40791..a62d196 100644
  
  #if __GNUC_MINOR__ > 0
 diff --git a/include/linux/compiler.h b/include/linux/compiler.h
-index 4a24354..7149ac2 100644
+index 923d093..726c17f 100644
 --- a/include/linux/compiler.h
 +++ b/include/linux/compiler.h
 @@ -5,31 +5,62 @@
@@ -60481,19 +59776,6 @@ index 4a24354..7149ac2 100644
 +#define ACCESS_ONCE_RW(x) (*(volatile typeof(x) *)&(x))
  
  #endif /* __LINUX_COMPILER_H */
-diff --git a/include/linux/cpuset.h b/include/linux/cpuset.h
-index e9eaec5..bfeb9bb 100644
---- a/include/linux/cpuset.h
-+++ b/include/linux/cpuset.h
-@@ -118,7 +118,7 @@ static inline void put_mems_allowed(void)
- 	 * nodemask.
- 	 */
- 	smp_mb();
--	--ACCESS_ONCE(current->mems_allowed_change_disable);
-+	--ACCESS_ONCE_RW(current->mems_allowed_change_disable);
- }
- 
- static inline void set_mems_allowed(nodemask_t nodemask)
 diff --git a/include/linux/cred.h b/include/linux/cred.h
 index adadf71..6af5560 100644
 --- a/include/linux/cred.h
@@ -60509,10 +59791,10 @@ index adadf71..6af5560 100644
  
  /**
 diff --git a/include/linux/crypto.h b/include/linux/crypto.h
-index 8a94217..15d49e3 100644
+index b92eadf..b4ecdc1 100644
 --- a/include/linux/crypto.h
 +++ b/include/linux/crypto.h
-@@ -365,7 +365,7 @@ struct cipher_tfm {
+@@ -373,7 +373,7 @@ struct cipher_tfm {
  	                  const u8 *key, unsigned int keylen);
  	void (*cit_encrypt_one)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
  	void (*cit_decrypt_one)(struct crypto_tfm *tfm, u8 *dst, const u8 *src);
@@ -60521,7 +59803,7 @@ index 8a94217..15d49e3 100644
  
  struct hash_tfm {
  	int (*init)(struct hash_desc *desc);
-@@ -386,13 +386,13 @@ struct compress_tfm {
+@@ -394,13 +394,13 @@ struct compress_tfm {
  	int (*cot_decompress)(struct crypto_tfm *tfm,
  	                      const u8 *src, unsigned int slen,
  	                      u8 *dst, unsigned int *dlen);
@@ -60551,10 +59833,10 @@ index 7925bf0..d5143d2 100644
  
  #define large_malloc(a) vmalloc(a)
 diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h
-index e13117c..e9fc938 100644
+index dfc099e..e583e66 100644
 --- a/include/linux/dma-mapping.h
 +++ b/include/linux/dma-mapping.h
-@@ -46,7 +46,7 @@ struct dma_map_ops {
+@@ -51,7 +51,7 @@ struct dma_map_ops {
  	u64 (*get_required_mask)(struct device *dev);
  #endif
  	int is_phys;
@@ -60564,10 +59846,10 @@ index e13117c..e9fc938 100644
  #define DMA_BIT_MASK(n)	(((n) == 64) ? ~0ULL : ((1ULL<<(n))-1))
  
 diff --git a/include/linux/efi.h b/include/linux/efi.h
-index 7cce0ea..c2085e4 100644
+index ec45ccd..9923c32 100644
 --- a/include/linux/efi.h
 +++ b/include/linux/efi.h
-@@ -591,7 +591,7 @@ struct efivar_operations {
+@@ -635,7 +635,7 @@ struct efivar_operations {
  	efi_get_variable_t *get_variable;
  	efi_get_next_variable_t *get_next_variable;
  	efi_set_variable_t *set_variable;
@@ -60675,10 +59957,10 @@ index 8eeb205..d59bfa2 100644
  	struct sock_filter     	insns[0];
  };
 diff --git a/include/linux/firewire.h b/include/linux/firewire.h
-index 84ccf8e..2e9b14c 100644
+index cdc9b71..ce69fb5 100644
 --- a/include/linux/firewire.h
 +++ b/include/linux/firewire.h
-@@ -428,7 +428,7 @@ struct fw_iso_context {
+@@ -413,7 +413,7 @@ struct fw_iso_context {
  	union {
  		fw_iso_callback_t sc;
  		fw_iso_mc_callback_t mc;
@@ -60688,10 +59970,10 @@ index 84ccf8e..2e9b14c 100644
  };
  
 diff --git a/include/linux/fs.h b/include/linux/fs.h
-index fd65e0d..7232c62 100644
+index 25c40b9..1bfd4f4 100644
 --- a/include/linux/fs.h
 +++ b/include/linux/fs.h
-@@ -1628,7 +1628,8 @@ struct file_operations {
+@@ -1634,7 +1634,8 @@ struct file_operations {
  	int (*setlease)(struct file *, long, struct file_lock **);
  	long (*fallocate)(struct file *file, int mode, loff_t offset,
  			  loff_t len);
@@ -60737,10 +60019,10 @@ index ce31408..b1ad003 100644
  	op->release = release;
  	INIT_LIST_HEAD(&op->pend_link);
 diff --git a/include/linux/fsnotify.h b/include/linux/fsnotify.h
-index 2a53f10..0187fdf 100644
+index a6dfe69..569586df 100644
 --- a/include/linux/fsnotify.h
 +++ b/include/linux/fsnotify.h
-@@ -314,7 +314,7 @@ static inline void fsnotify_change(struct dentry *dentry, unsigned int ia_valid)
+@@ -315,7 +315,7 @@ static inline void fsnotify_change(struct dentry *dentry, unsigned int ia_valid)
   */
  static inline const unsigned char *fsnotify_oldname_init(const unsigned char *name)
  {
@@ -60762,7 +60044,7 @@ index 91d0e0a3..035666b 100644
  /*
   * A group is a "thing" that wants to receive notification about filesystem
 diff --git a/include/linux/ftrace_event.h b/include/linux/ftrace_event.h
-index c3da42d..c70e0df 100644
+index 176a939..1462211 100644
 --- a/include/linux/ftrace_event.h
 +++ b/include/linux/ftrace_event.h
 @@ -97,7 +97,7 @@ struct trace_event_functions {
@@ -60774,7 +60056,7 @@ index c3da42d..c70e0df 100644
  
  struct trace_event {
  	struct hlist_node		node;
-@@ -254,7 +254,7 @@ extern int trace_define_field(struct ftrace_event_call *call, const char *type,
+@@ -263,7 +263,7 @@ extern int trace_define_field(struct ftrace_event_call *call, const char *type,
  extern int trace_add_event_call(struct ftrace_event_call *call);
  extern void trace_remove_event_call(struct ftrace_event_call *call);
  
@@ -60798,7 +60080,7 @@ index 017a7fb..33a8507 100644
  	struct blk_integrity *integrity;
 diff --git a/include/linux/gracl.h b/include/linux/gracl.h
 new file mode 100644
-index 0000000..8a130b6
+index 0000000..c938b1f
 --- /dev/null
 +++ b/include/linux/gracl.h
 @@ -0,0 +1,319 @@
@@ -60813,8 +60095,8 @@ index 0000000..8a130b6
 +
 +/* Major status information */
 +
-+#define GR_VERSION  "grsecurity 2.9"
-+#define GRSECURITY_VERSION 0x2900
++#define GR_VERSION  "grsecurity 2.9.1"
++#define GRSECURITY_VERSION 0x2901
 +
 +enum {
 +	GR_SHUTDOWN = 0,
@@ -61901,11 +61183,11 @@ index 3a95da6..51986f1 100644
  #define	PM_HINT_FULLON	1<<5
  #define PM_HINT_NORMAL	1<<1
 diff --git a/include/linux/highmem.h b/include/linux/highmem.h
-index 3a93f73..b19d0b3 100644
+index d3999b4..1304cb4 100644
 --- a/include/linux/highmem.h
 +++ b/include/linux/highmem.h
-@@ -185,6 +185,18 @@ static inline void clear_highpage(struct page *page)
- 	kunmap_atomic(kaddr, KM_USER0);
+@@ -221,6 +221,18 @@ static inline void clear_highpage(struct page *page)
+ 	kunmap_atomic(kaddr);
  }
  
 +static inline void sanitize_highpage(struct page *page)
@@ -61914,9 +61196,9 @@ index 3a93f73..b19d0b3 100644
 +	unsigned long flags;
 +
 +	local_irq_save(flags);
-+	kaddr = kmap_atomic(page, KM_CLEARPAGE);
++	kaddr = kmap_atomic(page);
 +	clear_page(kaddr);
-+	kunmap_atomic(kaddr, KM_CLEARPAGE);
++	kunmap_atomic(kaddr);
 +	local_irq_restore(flags);
 +}
 +
@@ -61924,10 +61206,10 @@ index 3a93f73..b19d0b3 100644
  	unsigned start1, unsigned end1,
  	unsigned start2, unsigned end2)
 diff --git a/include/linux/i2c.h b/include/linux/i2c.h
-index 8e25a91..551b161 100644
+index 195d8b3..e20cfab 100644
 --- a/include/linux/i2c.h
 +++ b/include/linux/i2c.h
-@@ -364,6 +364,7 @@ struct i2c_algorithm {
+@@ -365,6 +365,7 @@ struct i2c_algorithm {
  	/* To determine what the adapter supports */
  	u32 (*functionality) (struct i2c_adapter *);
  };
@@ -61936,10 +61218,10 @@ index 8e25a91..551b161 100644
  /*
   * i2c_adapter is the structure used to identify a physical i2c bus along
 diff --git a/include/linux/i2o.h b/include/linux/i2o.h
-index a6deef4..c56a7f2 100644
+index d23c3c2..eb63c81 100644
 --- a/include/linux/i2o.h
 +++ b/include/linux/i2o.h
-@@ -564,7 +564,7 @@ struct i2o_controller {
+@@ -565,7 +565,7 @@ struct i2o_controller {
  	struct i2o_device *exec;	/* Executive */
  #if BITS_PER_LONG == 64
  	spinlock_t context_list_lock;	/* lock for context_list */
@@ -61990,10 +61272,10 @@ index 6b95109..4aca62c 100644
  	void cleanup_module(void) __attribute__((alias(#exitfn)));
  
 diff --git a/include/linux/init_task.h b/include/linux/init_task.h
-index 9c66b1a..a3fdded 100644
+index e4baff5..83bb175 100644
 --- a/include/linux/init_task.h
 +++ b/include/linux/init_task.h
-@@ -127,6 +127,12 @@ extern struct cred init_cred;
+@@ -134,6 +134,12 @@ extern struct cred init_cred;
  
  #define INIT_TASK_COMM "swapper"
  
@@ -62006,7 +61288,7 @@ index 9c66b1a..a3fdded 100644
  /*
   *  INIT_TASK is used to set up the first task table, touch at
   * your own risk!. Base=0, limit=0x1fffff (=2MB)
-@@ -165,6 +171,7 @@ extern struct cred init_cred;
+@@ -172,6 +178,7 @@ extern struct cred init_cred;
  	RCU_INIT_POINTER(.cred, &init_cred),				\
  	.comm		= INIT_TASK_COMM,				\
  	.thread		= INIT_THREAD,					\
@@ -62028,10 +61310,10 @@ index e6ca56d..8583707 100644
  enum {
  	SR_DMAR_FECTL_REG,
 diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
-index a64b00e..464d8bc 100644
+index 2aea5d2..0b82f0c 100644
 --- a/include/linux/interrupt.h
 +++ b/include/linux/interrupt.h
-@@ -441,7 +441,7 @@ enum
+@@ -439,7 +439,7 @@ enum
  /* map softirq index to softirq name. update 'softirq_to_name' in
   * kernel/softirq.c when adding a new softirq.
   */
@@ -62040,7 +61322,7 @@ index a64b00e..464d8bc 100644
  
  /* softirq mask and active fields moved to irq_cpustat_t in
   * asm/hardirq.h to get better cache usage.  KAO
-@@ -449,12 +449,12 @@ extern char *softirq_to_name[NR_SOFTIRQS];
+@@ -447,12 +447,12 @@ extern char *softirq_to_name[NR_SOFTIRQS];
  
  struct softirq_action
  {
@@ -62053,8 +61335,8 @@ index a64b00e..464d8bc 100644
 -extern void open_softirq(int nr, void (*action)(struct softirq_action *));
 +extern void open_softirq(int nr, void (*action)(void));
  extern void softirq_init(void);
- static inline void __raise_softirq_irqoff(unsigned int nr)
- {
+ extern void __raise_softirq_irqoff(unsigned int nr);
+ 
 diff --git a/include/linux/kallsyms.h b/include/linux/kallsyms.h
 index 3875719..4cd454c 100644
 --- a/include/linux/kallsyms.h
@@ -62118,7 +61400,7 @@ index c4d2fc1..5df9c19 100644
  extern struct kgdb_arch		arch_kgdb_ops;
  
 diff --git a/include/linux/kmod.h b/include/linux/kmod.h
-index 0fb48ef..1b680b2 100644
+index dd99c32..da06047 100644
 --- a/include/linux/kmod.h
 +++ b/include/linux/kmod.h
 @@ -34,6 +34,8 @@ extern char modprobe_path[]; /* for sysctl */
@@ -62144,10 +61426,10 @@ index 9c07dce..a92fa71 100644
  	if (atomic_sub_and_test((int) count, &kref->refcount)) {
  		release(kref);
 diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h
-index 4c4e83d..695674f 100644
+index 72cbf08..dd0201d 100644
 --- a/include/linux/kvm_host.h
 +++ b/include/linux/kvm_host.h
-@@ -326,7 +326,7 @@ void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
+@@ -322,7 +322,7 @@ void kvm_vcpu_uninit(struct kvm_vcpu *vcpu);
  void vcpu_load(struct kvm_vcpu *vcpu);
  void vcpu_put(struct kvm_vcpu *vcpu);
  
@@ -62156,7 +61438,7 @@ index 4c4e83d..695674f 100644
  		  struct module *module);
  void kvm_exit(void);
  
-@@ -485,7 +485,7 @@ int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
+@@ -486,7 +486,7 @@ int kvm_arch_vcpu_ioctl_set_guest_debug(struct kvm_vcpu *vcpu,
  					struct kvm_guest_debug *dbg);
  int kvm_arch_vcpu_ioctl_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run);
  
@@ -62166,7 +61448,7 @@ index 4c4e83d..695674f 100644
  
  int kvm_arch_vcpu_init(struct kvm_vcpu *vcpu);
 diff --git a/include/linux/libata.h b/include/linux/libata.h
-index cafc09a..d7e7829 100644
+index e926df7..1713bd8 100644
 --- a/include/linux/libata.h
 +++ b/include/linux/libata.h
 @@ -909,7 +909,7 @@ struct ata_port_operations {
@@ -62205,10 +61487,10 @@ index 1ac7f6e..a5794d0 100644
  /*
   * Kernel text modification mutex, used for code patching. Users of this lock
 diff --git a/include/linux/mfd/abx500.h b/include/linux/mfd/abx500.h
-index 9970337..9444122 100644
+index ee96cd5..7823c3a 100644
 --- a/include/linux/mfd/abx500.h
 +++ b/include/linux/mfd/abx500.h
-@@ -188,6 +188,7 @@ struct abx500_ops {
+@@ -455,6 +455,7 @@ struct abx500_ops {
  	int (*event_registers_startup_state_get) (struct device *, u8 *);
  	int (*startup_irq_enabled) (struct device *, unsigned int);
  };
@@ -62216,11 +61498,24 @@ index 9970337..9444122 100644
  
  int abx500_register_ops(struct device *core_dev, struct abx500_ops *ops);
  void abx500_remove_ops(struct device *dev);
+diff --git a/include/linux/mfd/abx500/ux500_chargalg.h b/include/linux/mfd/abx500/ux500_chargalg.h
+index 9b07725..3d55001 100644
+--- a/include/linux/mfd/abx500/ux500_chargalg.h
++++ b/include/linux/mfd/abx500/ux500_chargalg.h
+@@ -19,7 +19,7 @@ struct ux500_charger_ops {
+ 	int (*enable) (struct ux500_charger *, int, int, int);
+ 	int (*kick_wd) (struct ux500_charger *);
+ 	int (*update_curr) (struct ux500_charger *, int);
+-};
++} __no_const;
+ 
+ /**
+  * struct ux500_charger - power supply ux500 charger sub class
 diff --git a/include/linux/mm.h b/include/linux/mm.h
-index 17b27cd..baea141 100644
+index 74aa71b..4ae97ba 100644
 --- a/include/linux/mm.h
 +++ b/include/linux/mm.h
-@@ -115,7 +115,14 @@ extern unsigned int kobjsize(const void *objp);
+@@ -116,7 +116,14 @@ extern unsigned int kobjsize(const void *objp);
  
  #define VM_CAN_NONLINEAR 0x08000000	/* Has ->fault & does nonlinear pages */
  #define VM_MIXEDMAP	0x10000000	/* Can contain "struct page" and pure PFN pages */
@@ -62235,7 +61530,7 @@ index 17b27cd..baea141 100644
  #define VM_PFN_AT_MMAP	0x40000000	/* PFNMAP vma that is fully mapped at mmap time */
  #define VM_MERGEABLE	0x80000000	/* KSM may merge identical pages */
  
-@@ -1012,34 +1019,6 @@ int set_page_dirty(struct page *page);
+@@ -1013,34 +1020,6 @@ int set_page_dirty(struct page *page);
  int set_page_dirty_lock(struct page *page);
  int clear_page_dirty_for_io(struct page *page);
  
@@ -62267,10 +61562,10 @@ index 17b27cd..baea141 100644
 -		!vma_growsup(vma->vm_next, addr);
 -}
 -
- extern unsigned long move_page_tables(struct vm_area_struct *vma,
- 		unsigned long old_addr, struct vm_area_struct *new_vma,
- 		unsigned long new_addr, unsigned long len);
-@@ -1134,6 +1113,15 @@ static inline void sync_mm_rss(struct task_struct *task, struct mm_struct *mm)
+ extern pid_t
+ vm_is_stack(struct task_struct *task, struct vm_area_struct *vma, int in_group);
+ 
+@@ -1139,6 +1118,15 @@ static inline void sync_mm_rss(struct mm_struct *mm)
  }
  #endif
  
@@ -62286,7 +61581,7 @@ index 17b27cd..baea141 100644
  int vma_wants_writenotify(struct vm_area_struct *vma);
  
  extern pte_t *__get_locked_pte(struct mm_struct *mm, unsigned long addr,
-@@ -1152,8 +1140,15 @@ static inline int __pud_alloc(struct mm_struct *mm, pgd_t *pgd,
+@@ -1157,8 +1145,15 @@ static inline int __pud_alloc(struct mm_struct *mm, pgd_t *pgd,
  {
  	return 0;
  }
@@ -62302,7 +61597,7 @@ index 17b27cd..baea141 100644
  #endif
  
  #ifdef __PAGETABLE_PMD_FOLDED
-@@ -1162,8 +1157,15 @@ static inline int __pmd_alloc(struct mm_struct *mm, pud_t *pud,
+@@ -1167,8 +1162,15 @@ static inline int __pmd_alloc(struct mm_struct *mm, pud_t *pud,
  {
  	return 0;
  }
@@ -62318,7 +61613,7 @@ index 17b27cd..baea141 100644
  #endif
  
  int __pte_alloc(struct mm_struct *mm, struct vm_area_struct *vma,
-@@ -1181,11 +1183,23 @@ static inline pud_t *pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long a
+@@ -1186,11 +1188,23 @@ static inline pud_t *pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long a
  		NULL: pud_offset(pgd, address);
  }
  
@@ -62342,15 +61637,15 @@ index 17b27cd..baea141 100644
  #endif /* CONFIG_MMU && !__ARCH_HAS_4LEVEL_HACK */
  
  #if USE_SPLIT_PTLOCKS
-@@ -1409,6 +1423,7 @@ out:
- }
- 
+@@ -1400,6 +1414,7 @@ extern unsigned long do_mmap(struct file *, unsigned long,
+         unsigned long, unsigned long,
+         unsigned long, unsigned long);
  extern int do_munmap(struct mm_struct *, unsigned long, size_t);
 +extern int __do_munmap(struct mm_struct *, unsigned long, size_t);
  
- extern unsigned long do_brk(unsigned long, unsigned long);
- 
-@@ -1466,6 +1481,10 @@ extern struct vm_area_struct * find_vma(struct mm_struct * mm, unsigned long add
+ /* These take the mm semaphore themselves */
+ extern unsigned long vm_brk(unsigned long, unsigned long);
+@@ -1462,6 +1477,10 @@ extern struct vm_area_struct * find_vma(struct mm_struct * mm, unsigned long add
  extern struct vm_area_struct * find_vma_prev(struct mm_struct * mm, unsigned long addr,
  					     struct vm_area_struct **pprev);
  
@@ -62361,7 +61656,7 @@ index 17b27cd..baea141 100644
  /* Look up the first VMA which intersects the interval start_addr..end_addr-1,
     NULL if none.  Assume start_addr < end_addr. */
  static inline struct vm_area_struct * find_vma_intersection(struct mm_struct * mm, unsigned long start_addr, unsigned long end_addr)
-@@ -1494,15 +1513,6 @@ static inline struct vm_area_struct *find_exact_vma(struct mm_struct *mm,
+@@ -1490,15 +1509,6 @@ static inline struct vm_area_struct *find_exact_vma(struct mm_struct *mm,
  	return vma;
  }
  
@@ -62377,7 +61672,7 @@ index 17b27cd..baea141 100644
  struct vm_area_struct *find_extend_vma(struct mm_struct *, unsigned long addr);
  int remap_pfn_range(struct vm_area_struct *, unsigned long addr,
  			unsigned long pfn, unsigned long size, pgprot_t);
-@@ -1606,7 +1616,7 @@ extern int unpoison_memory(unsigned long pfn);
+@@ -1602,7 +1612,7 @@ extern int unpoison_memory(unsigned long pfn);
  extern int sysctl_memory_failure_early_kill;
  extern int sysctl_memory_failure_recovery;
  extern void shake_page(struct page *p, int access);
@@ -62386,7 +61681,7 @@ index 17b27cd..baea141 100644
  extern int soft_offline_page(struct page *page, int flags);
  
  extern void dump_page(struct page *page);
-@@ -1637,5 +1647,11 @@ static inline unsigned int debug_guardpage_minorder(void) { return 0; }
+@@ -1633,5 +1643,11 @@ static inline unsigned int debug_guardpage_minorder(void) { return 0; }
  static inline bool page_is_guard(struct page *page) { return false; }
  #endif /* CONFIG_DEBUG_PAGEALLOC */
  
@@ -62466,10 +61761,10 @@ index 1d1b1e1..2a13c78 100644
  
  #define pmdp_clear_flush_notify(__vma, __address, __pmdp)		\
 diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h
-index 650ba2f..af0a58c 100644
+index dff7115..0e001c8 100644
 --- a/include/linux/mmzone.h
 +++ b/include/linux/mmzone.h
-@@ -379,7 +379,7 @@ struct zone {
+@@ -380,7 +380,7 @@ struct zone {
  	unsigned long		flags;		   /* zone flags, see below */
  
  	/* Zone statistics */
@@ -62479,7 +61774,7 @@ index 650ba2f..af0a58c 100644
  	/*
  	 * The target ratio of ACTIVE_ANON to INACTIVE_ANON pages on
 diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h
-index 83ac071..2656e0e 100644
+index 501da4c..ba79bb4 100644
 --- a/include/linux/mod_devicetable.h
 +++ b/include/linux/mod_devicetable.h
 @@ -12,7 +12,7 @@
@@ -62501,7 +61796,7 @@ index 83ac071..2656e0e 100644
  struct hid_device_id {
  	__u16 bus;
 diff --git a/include/linux/module.h b/include/linux/module.h
-index 4598bf0..e069d7f 100644
+index fbcafe2..e5d9587 100644
 --- a/include/linux/module.h
 +++ b/include/linux/module.h
 @@ -17,6 +17,7 @@
@@ -62512,7 +61807,7 @@ index 4598bf0..e069d7f 100644
  
  #include <linux/percpu.h>
  #include <asm/module.h>
-@@ -275,19 +276,16 @@ struct module
+@@ -273,19 +274,16 @@ struct module
  	int (*init)(void);
  
  	/* If this is non-NULL, vfree after init() returns */
@@ -62536,7 +61831,7 @@ index 4598bf0..e069d7f 100644
  
  	/* Arch-specific module values */
  	struct mod_arch_specific arch;
-@@ -343,6 +341,10 @@ struct module
+@@ -341,6 +339,10 @@ struct module
  #ifdef CONFIG_EVENT_TRACING
  	struct ftrace_event_call **trace_events;
  	unsigned int num_trace_events;
@@ -62547,7 +61842,7 @@ index 4598bf0..e069d7f 100644
  #endif
  #ifdef CONFIG_FTRACE_MCOUNT_RECORD
  	unsigned int num_ftrace_callsites;
-@@ -390,16 +392,46 @@ bool is_module_address(unsigned long addr);
+@@ -388,16 +390,46 @@ bool is_module_address(unsigned long addr);
  bool is_module_percpu_address(unsigned long addr);
  bool is_module_text_address(unsigned long addr);
  
@@ -62599,19 +61894,22 @@ index 4598bf0..e069d7f 100644
  
  /* Search for module by name: must hold module_mutex. */
 diff --git a/include/linux/moduleloader.h b/include/linux/moduleloader.h
-index b2be02e..0a61daa 100644
+index b2be02e..72d2f78 100644
 --- a/include/linux/moduleloader.h
 +++ b/include/linux/moduleloader.h
-@@ -25,9 +25,21 @@ unsigned int arch_mod_section_prepend(struct module *mod, unsigned int section);
-    sections.  Returns NULL on failure. */
- void *module_alloc(unsigned long size);
+@@ -23,11 +23,23 @@ unsigned int arch_mod_section_prepend(struct module *mod, unsigned int section);
  
+ /* Allocator used for allocating struct module, core sections and init
+    sections.  Returns NULL on failure. */
+-void *module_alloc(unsigned long size);
++void *module_alloc(unsigned long size) __size_overflow(1);
++
 +#ifdef CONFIG_PAX_KERNEXEC
 +void *module_alloc_exec(unsigned long size) __size_overflow(1);
 +#else
 +#define module_alloc_exec(x) module_alloc(x)
 +#endif
-+
+ 
  /* Free memory returned from module_alloc. */
  void module_free(struct module *mod, void *module_region);
  
@@ -62625,10 +61923,10 @@ index b2be02e..0a61daa 100644
     or 0. */
  int apply_relocate(Elf_Shdr *sechdrs,
 diff --git a/include/linux/moduleparam.h b/include/linux/moduleparam.h
-index c47f4d6..23f9bdb 100644
+index ea36486..91e70f4 100644
 --- a/include/linux/moduleparam.h
 +++ b/include/linux/moduleparam.h
-@@ -260,7 +260,7 @@ static inline void __kernel_param_unlock(void)
+@@ -286,7 +286,7 @@ static inline void __kernel_param_unlock(void)
   * @len is usually just sizeof(string).
   */
  #define module_param_string(name, string, len, perm)			\
@@ -62637,7 +61935,7 @@ index c47f4d6..23f9bdb 100644
  		= { len, string };					\
  	__module_param_call(MODULE_PARAM_PREFIX, name,			\
  			    &param_ops_string,				\
-@@ -396,7 +396,7 @@ extern int param_set_bint(const char *val, const struct kernel_param *kp);
+@@ -424,7 +424,7 @@ extern int param_set_bint(const char *val, const struct kernel_param *kp);
   */
  #define module_param_array_named(name, array, type, nump, perm)		\
  	param_check_##type(name, &(array)[0]);				\
@@ -62675,10 +61973,10 @@ index ffc0213..2c1f2cb 100644
  	return nd->saved_names[nd->depth];
  }
 diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
-index 7e472b7..212d381 100644
+index 33900a5..2072000 100644
 --- a/include/linux/netdevice.h
 +++ b/include/linux/netdevice.h
-@@ -1002,6 +1002,7 @@ struct net_device_ops {
+@@ -1003,6 +1003,7 @@ struct net_device_ops {
  	int			(*ndo_neigh_construct)(struct neighbour *n);
  	void			(*ndo_neigh_destroy)(struct neighbour *n);
  };
@@ -62686,7 +61984,7 @@ index 7e472b7..212d381 100644
  
  /*
   *	The DEVICE structure.
-@@ -1063,7 +1064,7 @@ struct net_device {
+@@ -1064,7 +1065,7 @@ struct net_device {
  	int			iflink;
  
  	struct net_device_stats	stats;
@@ -62739,24 +62037,11 @@ index a4c5624..79d6d88 100644
   
  /** create a directory */
  struct dentry * oprofilefs_mkdir(struct super_block * sb, struct dentry * root,
-diff --git a/include/linux/padata.h b/include/linux/padata.h
-index 4633b2f..988bc08 100644
---- a/include/linux/padata.h
-+++ b/include/linux/padata.h
-@@ -129,7 +129,7 @@ struct parallel_data {
- 	struct padata_instance		*pinst;
- 	struct padata_parallel_queue	__percpu *pqueue;
- 	struct padata_serial_queue	__percpu *squeue;
--	atomic_t			seq_nr;
-+	atomic_unchecked_t		seq_nr;
- 	atomic_t			reorder_objects;
- 	atomic_t			refcnt;
- 	unsigned int			max_seq_nr;
 diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h
-index abb2776..d8b8e15 100644
+index ddbb6a9..be1680e 100644
 --- a/include/linux/perf_event.h
 +++ b/include/linux/perf_event.h
-@@ -750,8 +750,8 @@ struct perf_event {
+@@ -879,8 +879,8 @@ struct perf_event {
  
  	enum perf_event_active_state	state;
  	unsigned int			attach_state;
@@ -62767,7 +62052,7 @@ index abb2776..d8b8e15 100644
  
  	/*
  	 * These are the total time in nanoseconds that the event
-@@ -802,8 +802,8 @@ struct perf_event {
+@@ -931,8 +931,8 @@ struct perf_event {
  	 * These accumulate total time (in nanoseconds) that children
  	 * events have been enabled and running, respectively.
  	 */
@@ -62791,10 +62076,10 @@ index 8fc7dd1a..c19d89e 100644
  
  /*
 diff --git a/include/linux/pipe_fs_i.h b/include/linux/pipe_fs_i.h
-index 0072a53..c5dcca5 100644
+index e1ac1ce..0675fed 100644
 --- a/include/linux/pipe_fs_i.h
 +++ b/include/linux/pipe_fs_i.h
-@@ -47,9 +47,9 @@ struct pipe_buffer {
+@@ -45,9 +45,9 @@ struct pipe_buffer {
  struct pipe_inode_info {
  	wait_queue_head_t wait;
  	unsigned int nrbufs, curbuf, buffers;
@@ -62836,10 +62121,10 @@ index 2110a81..13a11bb 100644
  /********** include/linux/timer.h **********/
  /*
 diff --git a/include/linux/preempt.h b/include/linux/preempt.h
-index 58969b2..ead129b 100644
+index 5a710b9..0b0dab9 100644
 --- a/include/linux/preempt.h
 +++ b/include/linux/preempt.h
-@@ -123,7 +123,7 @@ struct preempt_ops {
+@@ -126,7 +126,7 @@ struct preempt_ops {
  	void (*sched_in)(struct preempt_notifier *notifier, int cpu);
  	void (*sched_out)(struct preempt_notifier *notifier,
  			  struct task_struct *next);
@@ -62849,7 +62134,7 @@ index 58969b2..ead129b 100644
  /**
   * preempt_notifier - key for installing preemption notifiers
 diff --git a/include/linux/printk.h b/include/linux/printk.h
-index f0e22f7..82dd544 100644
+index 0525927..a5388b6 100644
 --- a/include/linux/printk.h
 +++ b/include/linux/printk.h
 @@ -94,6 +94,8 @@ void early_printk(const char *fmt, ...);
@@ -62861,7 +62146,7 @@ index f0e22f7..82dd544 100644
  #ifdef CONFIG_PRINTK
  asmlinkage __printf(1, 0)
  int vprintk(const char *fmt, va_list args);
-@@ -112,7 +114,6 @@ extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
+@@ -117,7 +119,6 @@ extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
  
  extern int printk_delay_msec;
  extern int dmesg_restrict;
@@ -62901,23 +62186,6 @@ index 85c5073..51fac8b 100644
  
  struct ctl_table_header;
  struct ctl_table;
-diff --git a/include/linux/ptrace.h b/include/linux/ptrace.h
-index c2f1f6a..6fdb196 100644
---- a/include/linux/ptrace.h
-+++ b/include/linux/ptrace.h
-@@ -199,9 +199,10 @@ static inline void ptrace_event(int event, unsigned long message)
- 	if (unlikely(ptrace_event_enabled(current, event))) {
- 		current->ptrace_message = message;
- 		ptrace_notify((event << 8) | SIGTRAP);
--	} else if (event == PTRACE_EVENT_EXEC && unlikely(current->ptrace)) {
-+	} else if (event == PTRACE_EVENT_EXEC) {
- 		/* legacy EXEC report via SIGTRAP */
--		send_sig(SIGTRAP, current, 0);
-+		if ((current->ptrace & (PT_PTRACED|PT_SEIZED)) == PT_PTRACED)
-+			send_sig(SIGTRAP, current, 0);
- 	}
- }
- 
 diff --git a/include/linux/random.h b/include/linux/random.h
 index 8f74538..02a1012 100644
 --- a/include/linux/random.h
@@ -62980,37 +62248,11 @@ index e0879a7..a12f962 100644
  #include <asm/emergency-restart.h>
  
  #endif
-diff --git a/include/linux/reiserfs_fs.h b/include/linux/reiserfs_fs.h
-index 2213ddc..650212a 100644
---- a/include/linux/reiserfs_fs.h
-+++ b/include/linux/reiserfs_fs.h
-@@ -1406,7 +1406,7 @@ static inline loff_t max_reiserfs_offset(struct inode *inode)
- #define REISERFS_USER_MEM		1	/* reiserfs user memory mode            */
- 
- #define fs_generation(s) (REISERFS_SB(s)->s_generation_counter)
--#define get_generation(s) atomic_read (&fs_generation(s))
-+#define get_generation(s) atomic_read_unchecked (&fs_generation(s))
- #define FILESYSTEM_CHANGED_TB(tb)  (get_generation((tb)->tb_sb) != (tb)->fs_gen)
- #define __fs_changed(gen,s) (gen != get_generation (s))
- #define fs_changed(gen,s)		\
-diff --git a/include/linux/reiserfs_fs_sb.h b/include/linux/reiserfs_fs_sb.h
-index 8c9e85c..1698e9a 100644
---- a/include/linux/reiserfs_fs_sb.h
-+++ b/include/linux/reiserfs_fs_sb.h
-@@ -386,7 +386,7 @@ struct reiserfs_sb_info {
- 	/* Comment? -Hans */
- 	wait_queue_head_t s_wait;
- 	/* To be obsoleted soon by per buffer seals.. -Hans */
--	atomic_t s_generation_counter;	// increased by one every time the
-+	atomic_unchecked_t s_generation_counter;	// increased by one every time the
- 	// tree gets re-balanced
- 	unsigned long s_properties;	/* File system properties. Currently holds
- 					   on-disk FS format */
 diff --git a/include/linux/relay.h b/include/linux/relay.h
-index a822fd7..62b70f6 100644
+index 91cacc3..b55ff74 100644
 --- a/include/linux/relay.h
 +++ b/include/linux/relay.h
-@@ -159,7 +159,7 @@ struct rchan_callbacks
+@@ -160,7 +160,7 @@ struct rchan_callbacks
  	 * The callback should return 0 if successful, negative if not.
  	 */
  	int (*remove_buf_file)(struct dentry *dentry);
@@ -63020,7 +62262,7 @@ index a822fd7..62b70f6 100644
  /*
   * CONFIG_RELAY kernel API, kernel/relay.c
 diff --git a/include/linux/rfkill.h b/include/linux/rfkill.h
-index c6c6084..5bf1212 100644
+index 6fdf027..ff72610 100644
 --- a/include/linux/rfkill.h
 +++ b/include/linux/rfkill.h
 @@ -147,6 +147,7 @@ struct rfkill_ops {
@@ -63045,7 +62287,7 @@ index 4d50611..c6858a2 100644
  #define RIO_RESOURCE_MEM	0x00000100
  #define RIO_RESOURCE_DOORBELL	0x00000200
 diff --git a/include/linux/rmap.h b/include/linux/rmap.h
-index 1cdd62a..e399f0d 100644
+index fd07c45..4676b8e 100644
 --- a/include/linux/rmap.h
 +++ b/include/linux/rmap.h
 @@ -119,9 +119,9 @@ static inline void anon_vma_unlock(struct anon_vma *anon_vma)
@@ -63057,14 +62299,14 @@ index 1cdd62a..e399f0d 100644
  void anon_vma_moveto_tail(struct vm_area_struct *);
 -int anon_vma_fork(struct vm_area_struct *, struct vm_area_struct *);
 +int anon_vma_fork(struct vm_area_struct *, const struct vm_area_struct *);
- void __anon_vma_link(struct vm_area_struct *);
  
  static inline void anon_vma_merge(struct vm_area_struct *vma,
+ 				  struct vm_area_struct *next)
 diff --git a/include/linux/sched.h b/include/linux/sched.h
-index 0657368..765f70f 100644
+index 81a173c..85ccd8f 100644
 --- a/include/linux/sched.h
 +++ b/include/linux/sched.h
-@@ -101,6 +101,7 @@ struct bio_list;
+@@ -100,6 +100,7 @@ struct bio_list;
  struct fs_struct;
  struct perf_event_context;
  struct blk_plug;
@@ -63086,7 +62328,7 @@ index 0657368..765f70f 100644
  extern void arch_pick_mmap_layout(struct mm_struct *mm);
  extern unsigned long
  arch_get_unmapped_area(struct file *, unsigned long, unsigned long,
-@@ -631,6 +635,17 @@ struct signal_struct {
+@@ -643,6 +647,17 @@ struct signal_struct {
  #ifdef CONFIG_TASKSTATS
  	struct taskstats *stats;
  #endif
@@ -63104,7 +62346,7 @@ index 0657368..765f70f 100644
  #ifdef CONFIG_AUDIT
  	unsigned audit_tty;
  	struct tty_audit_buf *tty_audit_buf;
-@@ -714,6 +729,11 @@ struct user_struct {
+@@ -726,6 +741,11 @@ struct user_struct {
  	struct key *session_keyring;	/* UID's default session keyring */
  #endif
  
@@ -63116,7 +62358,7 @@ index 0657368..765f70f 100644
  	/* Hash table maintenance information */
  	struct hlist_node uidhash_node;
  	uid_t uid;
-@@ -1354,8 +1374,8 @@ struct task_struct {
+@@ -1386,8 +1406,8 @@ struct task_struct {
  	struct list_head thread_group;
  
  	struct completion *vfork_done;		/* for vfork() */
@@ -63127,7 +62369,7 @@ index 0657368..765f70f 100644
  
  	cputime_t utime, stime, utimescaled, stimescaled;
  	cputime_t gtime;
-@@ -1371,13 +1391,6 @@ struct task_struct {
+@@ -1403,13 +1423,6 @@ struct task_struct {
  	struct task_cputime cputime_expires;
  	struct list_head cpu_timers[3];
  
@@ -63141,7 +62383,7 @@ index 0657368..765f70f 100644
  	char comm[TASK_COMM_LEN]; /* executable name excluding path
  				     - access with [gs]et_task_comm (which lock
  				       it with task_lock())
-@@ -1394,8 +1407,16 @@ struct task_struct {
+@@ -1426,8 +1439,16 @@ struct task_struct {
  #endif
  /* CPU-specific state of this task */
  	struct thread_struct thread;
@@ -63158,7 +62400,7 @@ index 0657368..765f70f 100644
  /* open file information */
  	struct files_struct *files;
  /* namespaces */
-@@ -1442,6 +1463,11 @@ struct task_struct {
+@@ -1469,6 +1490,11 @@ struct task_struct {
  	struct rt_mutex_waiter *pi_blocked_on;
  #endif
  
@@ -63170,7 +62412,7 @@ index 0657368..765f70f 100644
  #ifdef CONFIG_DEBUG_MUTEXES
  	/* mutex deadlock detection */
  	struct mutex_waiter *blocked_on;
-@@ -1558,6 +1584,27 @@ struct task_struct {
+@@ -1585,6 +1611,27 @@ struct task_struct {
  	unsigned long default_timer_slack_ns;
  
  	struct list_head	*scm_work_list;
@@ -63198,7 +62440,7 @@ index 0657368..765f70f 100644
  #ifdef CONFIG_FUNCTION_GRAPH_TRACER
  	/* Index of current stored address in ret_stack */
  	int curr_ret_stack;
-@@ -1592,6 +1639,51 @@ struct task_struct {
+@@ -1619,6 +1666,51 @@ struct task_struct {
  #endif
  };
  
@@ -63250,7 +62492,7 @@ index 0657368..765f70f 100644
  /* Future-safe accessor for struct task_struct's cpus_allowed. */
  #define tsk_cpus_allowed(tsk) (&(tsk)->cpus_allowed)
  
-@@ -2104,7 +2196,9 @@ void yield(void);
+@@ -2138,7 +2230,9 @@ void yield(void);
  extern struct exec_domain	default_exec_domain;
  
  union thread_union {
@@ -63260,7 +62502,7 @@ index 0657368..765f70f 100644
  	unsigned long stack[THREAD_SIZE/sizeof(long)];
  };
  
-@@ -2137,6 +2231,7 @@ extern struct pid_namespace init_pid_ns;
+@@ -2171,6 +2265,7 @@ extern struct pid_namespace init_pid_ns;
   */
  
  extern struct task_struct *find_task_by_vpid(pid_t nr);
@@ -63268,7 +62510,7 @@ index 0657368..765f70f 100644
  extern struct task_struct *find_task_by_pid_ns(pid_t nr,
  		struct pid_namespace *ns);
  
-@@ -2280,7 +2375,7 @@ extern void __cleanup_sighand(struct sighand_struct *);
+@@ -2314,7 +2409,7 @@ extern void __cleanup_sighand(struct sighand_struct *);
  extern void exit_itimers(struct signal_struct *);
  extern void flush_itimer_signals(void);
  
@@ -63277,7 +62519,7 @@ index 0657368..765f70f 100644
  
  extern void daemonize(const char *, ...);
  extern int allow_signal(int);
-@@ -2478,13 +2573,17 @@ static inline unsigned long *end_of_stack(struct task_struct *p)
+@@ -2515,13 +2610,17 @@ static inline unsigned long *end_of_stack(struct task_struct *p)
  
  #endif
  
@@ -63312,22 +62554,22 @@ index 899fbb4..1cb4138 100644
  
  #define VIDEO_TYPE_MDA		0x10	/* Monochrome Text Display	*/
 diff --git a/include/linux/security.h b/include/linux/security.h
-index 83c18e8..2d98860 100644
+index 673afbb..2b7454b 100644
 --- a/include/linux/security.h
 +++ b/include/linux/security.h
-@@ -37,6 +37,7 @@
- #include <linux/xfrm.h>
+@@ -26,6 +26,7 @@
+ #include <linux/capability.h>
  #include <linux/slab.h>
- #include <linux/xattr.h>
+ #include <linux/err.h>
 +#include <linux/grsecurity.h>
- #include <net/flow.h>
  
- /* Maximum number of letters for an LSM name string */
+ struct linux_binprm;
+ struct cred;
 diff --git a/include/linux/seq_file.h b/include/linux/seq_file.h
-index 44f1514..2bbf6c1 100644
+index fc61854..d7c490b 100644
 --- a/include/linux/seq_file.h
 +++ b/include/linux/seq_file.h
-@@ -24,6 +24,9 @@ struct seq_file {
+@@ -25,6 +25,9 @@ struct seq_file {
  	struct mutex lock;
  	const struct seq_operations *op;
  	int poll_event;
@@ -63337,7 +62579,7 @@ index 44f1514..2bbf6c1 100644
  	void *private;
  };
  
-@@ -33,6 +36,7 @@ struct seq_operations {
+@@ -34,6 +37,7 @@ struct seq_operations {
  	void * (*next) (struct seq_file *m, void *v, loff_t *pos);
  	int (*show) (struct seq_file *m, void *v);
  };
@@ -63361,10 +62603,10 @@ index 92808b8..c28cac4 100644
  
  /* shm_mode upper byte flags */
 diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
-index 42854ce..3b7d3c8 100644
+index 111f26b..1b1a2e5 100644
 --- a/include/linux/skbuff.h
 +++ b/include/linux/skbuff.h
-@@ -655,7 +655,7 @@ static inline struct skb_shared_hwtstamps *skb_hwtstamps(struct sk_buff *skb)
+@@ -666,7 +666,7 @@ static inline struct skb_shared_hwtstamps *skb_hwtstamps(struct sk_buff *skb)
   */
  static inline int skb_queue_empty(const struct sk_buff_head *list)
  {
@@ -63373,7 +62615,7 @@ index 42854ce..3b7d3c8 100644
  }
  
  /**
-@@ -668,7 +668,7 @@ static inline int skb_queue_empty(const struct sk_buff_head *list)
+@@ -679,7 +679,7 @@ static inline int skb_queue_empty(const struct sk_buff_head *list)
  static inline bool skb_queue_is_last(const struct sk_buff_head *list,
  				     const struct sk_buff *skb)
  {
@@ -63382,7 +62624,7 @@ index 42854ce..3b7d3c8 100644
  }
  
  /**
-@@ -681,7 +681,7 @@ static inline bool skb_queue_is_last(const struct sk_buff_head *list,
+@@ -692,7 +692,7 @@ static inline bool skb_queue_is_last(const struct sk_buff_head *list,
  static inline bool skb_queue_is_first(const struct sk_buff_head *list,
  				      const struct sk_buff *skb)
  {
@@ -63391,7 +62633,7 @@ index 42854ce..3b7d3c8 100644
  }
  
  /**
-@@ -1558,7 +1558,7 @@ static inline int pskb_network_may_pull(struct sk_buff *skb, unsigned int len)
+@@ -1587,7 +1587,7 @@ static inline int pskb_network_may_pull(struct sk_buff *skb, unsigned int len)
   * NET_IP_ALIGN(2) + ethernet_header(14) + IP_header(20/40) + ports(8)
   */
  #ifndef NET_SKB_PAD
@@ -63401,7 +62643,7 @@ index 42854ce..3b7d3c8 100644
  
  extern int ___pskb_trim(struct sk_buff *skb, unsigned int len);
 diff --git a/include/linux/slab.h b/include/linux/slab.h
-index 573c809..eaaf6ea 100644
+index a595dce..c403597 100644
 --- a/include/linux/slab.h
 +++ b/include/linux/slab.h
 @@ -11,12 +11,20 @@
@@ -63450,7 +62692,15 @@ index 573c809..eaaf6ea 100644
  
  /*
   * Allocator specific definitions. These are mainly used to establish optimized
-@@ -287,7 +299,7 @@ static inline void *kmem_cache_alloc_node(struct kmem_cache *cachep,
+@@ -240,6 +252,7 @@ size_t ksize(const void *);
+  * for general use, and so are not documented here. For a full list of
+  * potential flags, always refer to linux/gfp.h.
+  */
++static void *kmalloc_array(size_t n, size_t size, gfp_t flags) __size_overflow(1, 2);
+ static inline void *kmalloc_array(size_t n, size_t size, gfp_t flags)
+ {
+ 	if (size != 0 && n > ULONG_MAX / size)
+@@ -298,7 +311,7 @@ static inline void *kmem_cache_alloc_node(struct kmem_cache *cachep,
   */
  #if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_SLUB) || \
  	(defined(CONFIG_SLAB) && defined(CONFIG_TRACING))
@@ -63459,7 +62709,7 @@ index 573c809..eaaf6ea 100644
  #define kmalloc_track_caller(size, flags) \
  	__kmalloc_track_caller(size, flags, _RET_IP_)
  #else
-@@ -306,7 +318,7 @@ extern void *__kmalloc_track_caller(size_t, gfp_t, unsigned long);
+@@ -317,7 +330,7 @@ extern void *__kmalloc_track_caller(size_t, gfp_t, unsigned long);
   */
  #if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_SLUB) || \
  	(defined(CONFIG_SLAB) && defined(CONFIG_TRACING))
@@ -63527,10 +62777,10 @@ index 0ec00b3..39cb7fc 100644
  {
  	return kmalloc(size, flags);
 diff --git a/include/linux/slub_def.h b/include/linux/slub_def.h
-index a32bcfd..a80ed70 100644
+index c2f8c8b..be9e036 100644
 --- a/include/linux/slub_def.h
 +++ b/include/linux/slub_def.h
-@@ -89,7 +89,7 @@ struct kmem_cache {
+@@ -92,7 +92,7 @@ struct kmem_cache {
  	struct kmem_cache_order_objects max;
  	struct kmem_cache_order_objects min;
  	gfp_t allocflags;	/* gfp flags to use on each alloc */
@@ -63539,7 +62789,7 @@ index a32bcfd..a80ed70 100644
  	void (*ctor)(void *);
  	int inuse;		/* Offset to metadata */
  	int align;		/* Alignment */
-@@ -150,6 +150,7 @@ extern struct kmem_cache *kmalloc_caches[SLUB_PAGE_SHIFT];
+@@ -153,6 +153,7 @@ extern struct kmem_cache *kmalloc_caches[SLUB_PAGE_SHIFT];
   * Sorry that the following has to be that ugly but some versions of GCC
   * have trouble with constant propagation and loops.
   */
@@ -63547,7 +62797,7 @@ index a32bcfd..a80ed70 100644
  static __always_inline int kmalloc_index(size_t size)
  {
  	if (!size)
-@@ -215,7 +216,7 @@ static __always_inline struct kmem_cache *kmalloc_slab(size_t size)
+@@ -218,7 +219,7 @@ static __always_inline struct kmem_cache *kmalloc_slab(size_t size)
  }
  
  void *kmem_cache_alloc(struct kmem_cache *, gfp_t);
@@ -63556,7 +62806,7 @@ index a32bcfd..a80ed70 100644
  
  static __always_inline void *
  kmalloc_order(size_t size, gfp_t flags, unsigned int order)
-@@ -256,6 +257,7 @@ kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order)
+@@ -259,6 +260,7 @@ kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order)
  }
  #endif
  
@@ -63564,7 +62814,7 @@ index a32bcfd..a80ed70 100644
  static __always_inline void *kmalloc_large(size_t size, gfp_t flags)
  {
  	unsigned int order = get_order(size);
-@@ -281,7 +283,7 @@ static __always_inline void *kmalloc(size_t size, gfp_t flags)
+@@ -284,7 +286,7 @@ static __always_inline void *kmalloc(size_t size, gfp_t flags)
  }
  
  #ifdef CONFIG_NUMA
@@ -63586,32 +62836,11 @@ index de8832d..0147b46 100644
  	__SONET_ITEMS
  #undef __HANDLE_ITEM
  };
-diff --git a/include/linux/stddef.h b/include/linux/stddef.h
-index 6a40c76..1747b67 100644
---- a/include/linux/stddef.h
-+++ b/include/linux/stddef.h
-@@ -3,14 +3,10 @@
- 
- #include <linux/compiler.h>
- 
-+#ifdef __KERNEL__
-+
- #undef NULL
--#if defined(__cplusplus)
--#define NULL 0
--#else
- #define NULL ((void *)0)
--#endif
--
--#ifdef __KERNEL__
- 
- enum {
- 	false	= 0,
 diff --git a/include/linux/sunrpc/clnt.h b/include/linux/sunrpc/clnt.h
-index 2c5993a..b0e79f0 100644
+index 523547e..2cb7140 100644
 --- a/include/linux/sunrpc/clnt.h
 +++ b/include/linux/sunrpc/clnt.h
-@@ -172,9 +172,9 @@ static inline unsigned short rpc_get_port(const struct sockaddr *sap)
+@@ -174,9 +174,9 @@ static inline unsigned short rpc_get_port(const struct sockaddr *sap)
  {
  	switch (sap->sa_family) {
  	case AF_INET:
@@ -63623,7 +62852,7 @@ index 2c5993a..b0e79f0 100644
  	}
  	return 0;
  }
-@@ -207,7 +207,7 @@ static inline bool __rpc_cmp_addr4(const struct sockaddr *sap1,
+@@ -209,7 +209,7 @@ static inline bool __rpc_cmp_addr4(const struct sockaddr *sap1,
  static inline bool __rpc_copy_addr4(struct sockaddr *dst,
  				    const struct sockaddr *src)
  {
@@ -63632,7 +62861,7 @@ index 2c5993a..b0e79f0 100644
  	struct sockaddr_in *dsin = (struct sockaddr_in *) dst;
  
  	dsin->sin_family = ssin->sin_family;
-@@ -310,7 +310,7 @@ static inline u32 rpc_get_scope_id(const struct sockaddr *sa)
+@@ -312,7 +312,7 @@ static inline u32 rpc_get_scope_id(const struct sockaddr *sa)
  	if (sa->sa_family != AF_INET6)
  		return 0;
  
@@ -63642,11 +62871,11 @@ index 2c5993a..b0e79f0 100644
  
  #endif /* __KERNEL__ */
 diff --git a/include/linux/sunrpc/sched.h b/include/linux/sunrpc/sched.h
-index e775689..9e206d9 100644
+index dc0c3cc..8503fb6 100644
 --- a/include/linux/sunrpc/sched.h
 +++ b/include/linux/sunrpc/sched.h
-@@ -105,6 +105,7 @@ struct rpc_call_ops {
- 	void (*rpc_call_done)(struct rpc_task *, void *);
+@@ -106,6 +106,7 @@ struct rpc_call_ops {
+ 	void (*rpc_count_stats)(struct rpc_task *, void *);
  	void (*rpc_release)(void *);
  };
 +typedef struct rpc_call_ops __no_const rpc_call_ops_no_const;
@@ -63654,7 +62883,7 @@ index e775689..9e206d9 100644
  struct rpc_task_setup {
  	struct rpc_task *task;
 diff --git a/include/linux/sunrpc/svc_rdma.h b/include/linux/sunrpc/svc_rdma.h
-index c14fe86..393245e 100644
+index 0b8e3e6..33e0a01 100644
 --- a/include/linux/sunrpc/svc_rdma.h
 +++ b/include/linux/sunrpc/svc_rdma.h
 @@ -53,15 +53,15 @@ extern unsigned int svcrdma_ord;
@@ -63683,7 +62912,7 @@ index c14fe86..393245e 100644
  #define RPCRDMA_VERSION 1
  
 diff --git a/include/linux/sysctl.h b/include/linux/sysctl.h
-index bb9127d..34ab358 100644
+index c34b4c8..a65b67d 100644
 --- a/include/linux/sysctl.h
 +++ b/include/linux/sysctl.h
 @@ -155,7 +155,11 @@ enum
@@ -63699,7 +62928,7 @@ index bb9127d..34ab358 100644
  
  /* CTL_VM names: */
  enum
-@@ -968,6 +972,8 @@ typedef int proc_handler (struct ctl_table *ctl, int write,
+@@ -948,6 +952,8 @@ typedef int proc_handler (struct ctl_table *ctl, int write,
  
  extern int proc_dostring(struct ctl_table *, int,
  			 void __user *, size_t *, loff_t *);
@@ -63708,44 +62937,6 @@ index bb9127d..34ab358 100644
  extern int proc_dointvec(struct ctl_table *, int,
  			 void __user *, size_t *, loff_t *);
  extern int proc_dointvec_minmax(struct ctl_table *, int,
-diff --git a/include/linux/tracehook.h b/include/linux/tracehook.h
-index a71a292..51bd91d 100644
---- a/include/linux/tracehook.h
-+++ b/include/linux/tracehook.h
-@@ -54,12 +54,12 @@ struct linux_binprm;
- /*
-  * ptrace report for syscall entry and exit looks identical.
-  */
--static inline void ptrace_report_syscall(struct pt_regs *regs)
-+static inline int ptrace_report_syscall(struct pt_regs *regs)
- {
- 	int ptrace = current->ptrace;
- 
- 	if (!(ptrace & PT_PTRACED))
--		return;
-+		return 0;
- 
- 	ptrace_notify(SIGTRAP | ((ptrace & PT_TRACESYSGOOD) ? 0x80 : 0));
- 
-@@ -72,6 +72,8 @@ static inline void ptrace_report_syscall(struct pt_regs *regs)
- 		send_sig(current->exit_code, current, 1);
- 		current->exit_code = 0;
- 	}
-+
-+	return fatal_signal_pending(current);
- }
- 
- /**
-@@ -96,8 +98,7 @@ static inline void ptrace_report_syscall(struct pt_regs *regs)
- static inline __must_check int tracehook_report_syscall_entry(
- 	struct pt_regs *regs)
- {
--	ptrace_report_syscall(regs);
--	return 0;
-+	return ptrace_report_syscall(regs);
- }
- 
- /**
 diff --git a/include/linux/tty_ldisc.h b/include/linux/tty_ldisc.h
 index ff7dc08..893e1bd 100644
 --- a/include/linux/tty_ldisc.h
@@ -63760,10 +62951,10 @@ index ff7dc08..893e1bd 100644
  
  struct tty_ldisc {
 diff --git a/include/linux/types.h b/include/linux/types.h
-index e5fa503..df6e8a4 100644
+index 7f480db..175c256 100644
 --- a/include/linux/types.h
 +++ b/include/linux/types.h
-@@ -214,10 +214,26 @@ typedef struct {
+@@ -220,10 +220,26 @@ typedef struct {
  	int counter;
  } atomic_t;
  
@@ -63853,7 +63044,7 @@ index 99c1b4d..bb94261 100644
  
  static inline void put_unaligned_le16(u16 val, void *p)
 diff --git a/include/linux/usb/renesas_usbhs.h b/include/linux/usb/renesas_usbhs.h
-index 0d3f988..000f101 100644
+index 547e59c..db6ad19 100644
 --- a/include/linux/usb/renesas_usbhs.h
 +++ b/include/linux/usb/renesas_usbhs.h
 @@ -39,7 +39,7 @@ enum {
@@ -64048,7 +63239,7 @@ index 4aeff96..b378cdc 100644
  	const struct v4l2_ioctl_ops *core_ops;
  
 diff --git a/include/media/v4l2-dev.h b/include/media/v4l2-dev.h
-index c7c40f1..4f01585 100644
+index 96d2221..2292f89 100644
 --- a/include/media/v4l2-dev.h
 +++ b/include/media/v4l2-dev.h
 @@ -56,7 +56,7 @@ int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority local);
@@ -64060,7 +63251,7 @@ index c7c40f1..4f01585 100644
  	ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
  	ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
  	unsigned int (*poll) (struct file *, struct poll_table_struct *);
-@@ -68,6 +68,7 @@ struct v4l2_file_operations {
+@@ -71,6 +71,7 @@ struct v4l2_file_operations {
  	int (*open) (struct file *);
  	int (*release) (struct file *);
  };
@@ -64069,10 +63260,10 @@ index c7c40f1..4f01585 100644
  /*
   * Newer version of video_device, handled by videodev2.c
 diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h
-index 3f5d60f..44210ed 100644
+index 3cb939c..f23c6bb 100644
 --- a/include/media/v4l2-ioctl.h
 +++ b/include/media/v4l2-ioctl.h
-@@ -278,7 +278,7 @@ struct v4l2_ioctl_ops {
+@@ -281,7 +281,7 @@ struct v4l2_ioctl_ops {
  	long (*vidioc_default)	       (struct file *file, void *fh,
  					bool valid_prio, int cmd, void *arg);
  };
@@ -64082,7 +63273,7 @@ index 3f5d60f..44210ed 100644
  /* v4l debugging and diagnostics */
  
 diff --git a/include/net/caif/caif_hsi.h b/include/net/caif/caif_hsi.h
-index 8d55251..dfe5b0a 100644
+index 6db8ecf..8c23861 100644
 --- a/include/net/caif/caif_hsi.h
 +++ b/include/net/caif/caif_hsi.h
 @@ -98,7 +98,7 @@ struct cfhsi_drv {
@@ -64173,10 +63364,10 @@ index 10422ef..662570f 100644
  	 fib_info_update_nh_saddr((net), &FIB_RES_NH(res)))
  #define FIB_RES_GW(res)			(FIB_RES_NH(res).nh_gw)
 diff --git a/include/net/ip_vs.h b/include/net/ip_vs.h
-index ebe517f..1bd286b 100644
+index 72522f0..6f03a2b 100644
 --- a/include/net/ip_vs.h
 +++ b/include/net/ip_vs.h
-@@ -509,7 +509,7 @@ struct ip_vs_conn {
+@@ -510,7 +510,7 @@ struct ip_vs_conn {
  	struct ip_vs_conn       *control;       /* Master control connection */
  	atomic_t                n_control;      /* Number of controlled ones */
  	struct ip_vs_dest       *dest;          /* real server */
@@ -64185,7 +63376,7 @@ index ebe517f..1bd286b 100644
  
  	/* packet transmitter for different forwarding methods.  If it
  	   mangles the packet, it must return NF_DROP or better NF_STOLEN,
-@@ -647,7 +647,7 @@ struct ip_vs_dest {
+@@ -648,7 +648,7 @@ struct ip_vs_dest {
  	__be16			port;		/* port number of the server */
  	union nf_inet_addr	addr;		/* IP address of the server */
  	volatile unsigned	flags;		/* dest status flags */
@@ -64231,10 +63422,10 @@ index 59ba38bc..d515662 100644
  	/* Protect concurent access to :
  	 *	o self->open_count
 diff --git a/include/net/iucv/af_iucv.h b/include/net/iucv/af_iucv.h
-index 0954ec9..7413562 100644
+index cc7c197..9f2da2a 100644
 --- a/include/net/iucv/af_iucv.h
 +++ b/include/net/iucv/af_iucv.h
-@@ -138,7 +138,7 @@ struct iucv_sock {
+@@ -141,7 +141,7 @@ struct iucv_sock {
  struct iucv_sock_list {
  	struct hlist_head head;
  	rwlock_t	  lock;
@@ -64257,10 +63448,10 @@ index 34c996f..bb3b4d4 100644
  struct pneigh_entry {
  	struct pneigh_entry	*next;
 diff --git a/include/net/netlink.h b/include/net/netlink.h
-index cb1f350..3279d2c 100644
+index f394fe5..fd073f9 100644
 --- a/include/net/netlink.h
 +++ b/include/net/netlink.h
-@@ -569,7 +569,7 @@ static inline void *nlmsg_get_pos(struct sk_buff *skb)
+@@ -534,7 +534,7 @@ static inline void *nlmsg_get_pos(struct sk_buff *skb)
  static inline void nlmsg_trim(struct sk_buff *skb, const void *mark)
  {
  	if (mark)
@@ -64285,7 +63476,7 @@ index bbd023a..97c6d0d 100644
  #ifdef CONFIG_IP_MROUTE
  #ifndef CONFIG_IP_MROUTE_MULTIPLE_TABLES
 diff --git a/include/net/sctp/sctp.h b/include/net/sctp/sctp.h
-index d368561..96aaa17 100644
+index a2ef814..31a8e3f 100644
 --- a/include/net/sctp/sctp.h
 +++ b/include/net/sctp/sctp.h
 @@ -318,9 +318,9 @@ do {									\
@@ -64302,10 +63493,10 @@ index d368561..96aaa17 100644
  #define SCTP_DISABLE_DEBUG
  #define SCTP_ASSERT(expr, str, func)
 diff --git a/include/net/sock.h b/include/net/sock.h
-index 91c1c8b..15ae923 100644
+index 5a0a58a..2e3d4d0 100644
 --- a/include/net/sock.h
 +++ b/include/net/sock.h
-@@ -299,7 +299,7 @@ struct sock {
+@@ -302,7 +302,7 @@ struct sock {
  #ifdef CONFIG_RPS
  	__u32			sk_rxhash;
  #endif
@@ -64314,7 +63505,7 @@ index 91c1c8b..15ae923 100644
  	int			sk_rcvbuf;
  
  	struct sk_filter __rcu	*sk_filter;
-@@ -1660,7 +1660,7 @@ static inline void sk_nocaps_add(struct sock *sk, netdev_features_t flags)
+@@ -1691,7 +1691,7 @@ static inline void sk_nocaps_add(struct sock *sk, netdev_features_t flags)
  }
  
  static inline int skb_do_copy_data_nocache(struct sock *sk, struct sk_buff *skb,
@@ -64324,10 +63515,10 @@ index 91c1c8b..15ae923 100644
  {
  	if (skb->ip_summed == CHECKSUM_NONE) {
 diff --git a/include/net/tcp.h b/include/net/tcp.h
-index 2d80c29..aa07caf 100644
+index f75a04d..702cf06 100644
 --- a/include/net/tcp.h
 +++ b/include/net/tcp.h
-@@ -1426,7 +1426,7 @@ struct tcp_seq_afinfo {
+@@ -1425,7 +1425,7 @@ struct tcp_seq_afinfo {
  	char				*name;
  	sa_family_t			family;
  	const struct file_operations	*seq_fops;
@@ -64337,10 +63528,10 @@ index 2d80c29..aa07caf 100644
  
  struct tcp_iter_state {
 diff --git a/include/net/udp.h b/include/net/udp.h
-index e39592f..fef9680 100644
+index 5d606d9..e879f7b 100644
 --- a/include/net/udp.h
 +++ b/include/net/udp.h
-@@ -243,7 +243,7 @@ struct udp_seq_afinfo {
+@@ -244,7 +244,7 @@ struct udp_seq_afinfo {
  	sa_family_t			family;
  	struct udp_table		*udp_table;
  	const struct file_operations	*seq_fops;
@@ -64350,7 +63541,7 @@ index e39592f..fef9680 100644
  
  struct udp_iter_state {
 diff --git a/include/net/xfrm.h b/include/net/xfrm.h
-index 89174e2..1f82598 100644
+index 96239e7..c85b032 100644
 --- a/include/net/xfrm.h
 +++ b/include/net/xfrm.h
 @@ -505,7 +505,7 @@ struct xfrm_policy {
@@ -64376,10 +63567,10 @@ index 1a046b1..ee0bef0 100644
  /**
   * iw_create_cm_id - Create an IW CM identifier.
 diff --git a/include/scsi/libfc.h b/include/scsi/libfc.h
-index 6a3922f..0b73022 100644
+index 8f9dfba..610ab6c 100644
 --- a/include/scsi/libfc.h
 +++ b/include/scsi/libfc.h
-@@ -748,6 +748,7 @@ struct libfc_function_template {
+@@ -756,6 +756,7 @@ struct libfc_function_template {
  	 */
  	void (*disc_stop_final) (struct fc_lport *);
  };
@@ -64387,7 +63578,7 @@ index 6a3922f..0b73022 100644
  
  /**
   * struct fc_disc - Discovery context
-@@ -851,7 +852,7 @@ struct fc_lport {
+@@ -861,7 +862,7 @@ struct fc_lport {
  	struct fc_vport		       *vport;
  
  	/* Operational Information */
@@ -64397,10 +63588,10 @@ index 6a3922f..0b73022 100644
  	u8			       qfull;
  	enum fc_lport_state	       state;
 diff --git a/include/scsi/scsi_device.h b/include/scsi/scsi_device.h
-index 77273f2..dd4031f 100644
+index 6efb2e1..cdad57f 100644
 --- a/include/scsi/scsi_device.h
 +++ b/include/scsi/scsi_device.h
-@@ -161,9 +161,9 @@ struct scsi_device {
+@@ -162,9 +162,9 @@ struct scsi_device {
  	unsigned int max_device_blocked; /* what device_blocked counts down from  */
  #define SCSI_DEFAULT_DEVICE_BLOCKED	3
  
@@ -64414,10 +63605,10 @@ index 77273f2..dd4031f 100644
  	struct device		sdev_gendev,
  				sdev_dev;
 diff --git a/include/scsi/scsi_transport_fc.h b/include/scsi/scsi_transport_fc.h
-index 2a65167..91e01f8 100644
+index 719faf1..d1154d4 100644
 --- a/include/scsi/scsi_transport_fc.h
 +++ b/include/scsi/scsi_transport_fc.h
-@@ -711,7 +711,7 @@ struct fc_function_template {
+@@ -739,7 +739,7 @@ struct fc_function_template {
  	unsigned long	show_host_system_hostname:1;
  
  	unsigned long	disable_target_scan:1;
@@ -64466,7 +63657,7 @@ index 9ca1a49..aba1728 100644
  struct snd_info_entry_ops {
  	int (*open)(struct snd_info_entry *entry,
 diff --git a/include/sound/pcm.h b/include/sound/pcm.h
-index 0cf91b2..b70cae4 100644
+index 0d11128..814178e 100644
 --- a/include/sound/pcm.h
 +++ b/include/sound/pcm.h
 @@ -81,6 +81,7 @@ struct snd_pcm_ops {
@@ -64491,10 +63682,10 @@ index af1b49e..a5d55a5 100644
  /*
   * CSP private data
 diff --git a/include/sound/soc.h b/include/sound/soc.h
-index 0992dff..bb366fe 100644
+index 2ebf787..0276839 100644
 --- a/include/sound/soc.h
 +++ b/include/sound/soc.h
-@@ -682,7 +682,7 @@ struct snd_soc_platform_driver {
+@@ -711,7 +711,7 @@ struct snd_soc_platform_driver {
  	/* platform IO - used for platform DAPM */
  	unsigned int (*read)(struct snd_soc_platform *, unsigned int);
  	int (*write)(struct snd_soc_platform *, unsigned int, unsigned int);
@@ -64503,7 +63694,7 @@ index 0992dff..bb366fe 100644
  
  struct snd_soc_platform {
  	const char *name;
-@@ -852,7 +852,7 @@ struct snd_soc_pcm_runtime {
+@@ -887,7 +887,7 @@ struct snd_soc_pcm_runtime {
  	struct snd_soc_dai_link *dai_link;
  	struct mutex pcm_mutex;
  	enum snd_soc_pcm_subclass pcm_subclass;
@@ -64513,7 +63704,7 @@ index 0992dff..bb366fe 100644
  	unsigned int complete:1;
  	unsigned int dev_registered:1;
 diff --git a/include/sound/ymfpci.h b/include/sound/ymfpci.h
-index 444cd6b..3327cc5 100644
+index 4119966..1a4671c 100644
 --- a/include/sound/ymfpci.h
 +++ b/include/sound/ymfpci.h
 @@ -358,7 +358,7 @@ struct snd_ymfpci {
@@ -64526,10 +63717,10 @@ index 444cd6b..3327cc5 100644
  	const struct firmware *dsp_microcode;
  	const struct firmware *controller_microcode;
 diff --git a/include/target/target_core_base.h b/include/target/target_core_base.h
-index fe73eb8..56388b1 100644
+index aaccc5f..092d568 100644
 --- a/include/target/target_core_base.h
 +++ b/include/target/target_core_base.h
-@@ -443,7 +443,7 @@ struct t10_reservation_ops {
+@@ -447,7 +447,7 @@ struct t10_reservation_ops {
  	int (*t10_seq_non_holder)(struct se_cmd *, unsigned char *, u32);
  	int (*t10_pr_register)(struct se_cmd *);
  	int (*t10_pr_clear)(struct se_cmd *);
@@ -64538,18 +63729,16 @@ index fe73eb8..56388b1 100644
  
  struct t10_reservation {
  	/* Reservation effects all target ports */
-@@ -561,8 +561,8 @@ struct se_cmd {
+@@ -576,7 +576,7 @@ struct se_cmd {
  	atomic_t		t_se_count;
  	atomic_t		t_task_cdbs_left;
  	atomic_t		t_task_cdbs_ex_left;
 -	atomic_t		t_task_cdbs_sent;
--	atomic_t		t_transport_aborted;
 +	atomic_unchecked_t	t_task_cdbs_sent;
-+	atomic_unchecked_t	t_transport_aborted;
- 	atomic_t		t_transport_active;
- 	atomic_t		t_transport_complete;
- 	atomic_t		t_transport_queue_active;
-@@ -799,7 +799,7 @@ struct se_device {
+ 	unsigned int		transport_state;
+ #define CMD_T_ABORTED		(1 << 0)
+ #define CMD_T_ACTIVE		(1 << 1)
+@@ -802,7 +802,7 @@ struct se_device {
  	spinlock_t		stats_lock;
  	/* Active commands on this virtual SE device */
  	atomic_t		simple_cmds;
@@ -64612,10 +63801,10 @@ index 0993a22..32ba2fe 100644
  	void *pmi_pal;
  	u8 *vbe_state_orig;		/*
 diff --git a/init/Kconfig b/init/Kconfig
-index 3f42cd6..613f41d 100644
+index 6cfd71d..73cb68d 100644
 --- a/init/Kconfig
 +++ b/init/Kconfig
-@@ -799,6 +799,7 @@ endif # CGROUPS
+@@ -790,6 +790,7 @@ endif # CGROUPS
  
  config CHECKPOINT_RESTORE
  	bool "Checkpoint/restore support" if EXPERT
@@ -64623,7 +63812,7 @@ index 3f42cd6..613f41d 100644
  	default n
  	help
  	  Enables additional kernel features in a sake of checkpoint/restore.
-@@ -1249,7 +1250,7 @@ config SLUB_DEBUG
+@@ -1240,7 +1241,7 @@ config SLUB_DEBUG
  
  config COMPAT_BRK
  	bool "Disable heap randomization"
@@ -64633,7 +63822,7 @@ index 3f42cd6..613f41d 100644
  	  Randomizing heap placement makes heap exploits harder, but it
  	  also breaks ancient binaries (including anything libc5 based).
 diff --git a/init/do_mounts.c b/init/do_mounts.c
-index bf6edbf..4e5809c 100644
+index 42b0707..c06eef4 100644
 --- a/init/do_mounts.c
 +++ b/init/do_mounts.c
 @@ -326,11 +326,11 @@ static void __init get_fs_names(char *page)
@@ -64714,10 +63903,10 @@ index f5b978a..69dbfe8 100644
  	if (!S_ISBLK(stat.st_mode))
  		return 0;
 diff --git a/init/do_mounts_initrd.c b/init/do_mounts_initrd.c
-index 3098a38..253064e 100644
+index 9047330..de0d1fb 100644
 --- a/init/do_mounts_initrd.c
 +++ b/init/do_mounts_initrd.c
-@@ -44,13 +44,13 @@ static void __init handle_initrd(void)
+@@ -43,13 +43,13 @@ static void __init handle_initrd(void)
  	create_dev("/dev/root.old", Root_RAM0);
  	/* mount initrd on rootfs' /root */
  	mount_block_root("/dev/root.old", root_mountflags & ~MS_RDONLY);
@@ -64737,7 +63926,7 @@ index 3098a38..253064e 100644
  
  	/*
  	 * In case that a resume from disk is carried out by linuxrc or one of
-@@ -67,15 +67,15 @@ static void __init handle_initrd(void)
+@@ -66,15 +66,15 @@ static void __init handle_initrd(void)
  
  	/* move initrd to rootfs' /old */
  	sys_fchdir(old_fd);
@@ -64756,7 +63945,7 @@ index 3098a38..253064e 100644
  		return;
  	}
  
-@@ -83,17 +83,17 @@ static void __init handle_initrd(void)
+@@ -82,17 +82,17 @@ static void __init handle_initrd(void)
  	mount_root();
  
  	printk(KERN_NOTICE "Trying to move old root to /initrd ... ");
@@ -64777,7 +63966,7 @@ index 3098a38..253064e 100644
  		printk(KERN_NOTICE "Trying to free ramdisk memory ... ");
  		if (fd < 0) {
  			error = fd;
-@@ -116,11 +116,11 @@ int __init initrd_load(void)
+@@ -115,11 +115,11 @@ int __init initrd_load(void)
  		 * mounted in the normal path.
  		 */
  		if (rd_load_image("/initrd.image") && ROOT_DEV != Root_RAM0) {
@@ -64935,10 +64124,10 @@ index 8216c30..25e8e32 100644
  	next_state = Reset;
  	return 0;
 diff --git a/init/main.c b/init/main.c
-index 45a7bf5..7ba1b61 100644
+index cb54cd3..8773e3c 100644
 --- a/init/main.c
 +++ b/init/main.c
-@@ -96,6 +96,8 @@ static inline void mark_rodata_ro(void) { }
+@@ -95,6 +95,8 @@ static inline void mark_rodata_ro(void) { }
  extern void tc_init(void);
  #endif
  
@@ -64947,7 +64136,7 @@ index 45a7bf5..7ba1b61 100644
  /*
   * Debug helper: via this flag we know that we are in 'early bootup code'
   * where only the boot processor is running with IRQ disabled.  This means
-@@ -149,6 +151,49 @@ static int __init set_reset_devices(char *str)
+@@ -148,6 +150,49 @@ static int __init set_reset_devices(char *str)
  
  __setup("reset_devices", set_reset_devices);
  
@@ -64997,7 +64186,7 @@ index 45a7bf5..7ba1b61 100644
  static const char * argv_init[MAX_INIT_ARGS+2] = { "init", NULL, };
  const char * envp_init[MAX_INIT_ENVS+2] = { "HOME=/", "TERM=linux", NULL, };
  static const char *panic_later, *panic_param;
-@@ -672,6 +717,7 @@ int __init_or_module do_one_initcall(initcall_t fn)
+@@ -674,6 +719,7 @@ int __init_or_module do_one_initcall(initcall_t fn)
  {
  	int count = preempt_count();
  	int ret;
@@ -65005,7 +64194,7 @@ index 45a7bf5..7ba1b61 100644
  
  	if (initcall_debug)
  		ret = do_one_initcall_debug(fn);
-@@ -684,15 +730,15 @@ int __init_or_module do_one_initcall(initcall_t fn)
+@@ -686,15 +732,15 @@ int __init_or_module do_one_initcall(initcall_t fn)
  		sprintf(msgbuf, "error code %d ", ret);
  
  	if (preempt_count() != count) {
@@ -65025,7 +64214,7 @@ index 45a7bf5..7ba1b61 100644
  	}
  
  	return ret;
-@@ -815,7 +861,7 @@ static int __init kernel_init(void * unused)
+@@ -865,7 +911,7 @@ static int __init kernel_init(void * unused)
  	do_basic_setup();
  
  	/* Open the /dev/console on the rootfs, this should never fail */
@@ -65034,7 +64223,7 @@ index 45a7bf5..7ba1b61 100644
  		printk(KERN_WARNING "Warning: unable to open an initial console.\n");
  
  	(void) sys_dup(0);
-@@ -828,11 +874,13 @@ static int __init kernel_init(void * unused)
+@@ -878,11 +924,13 @@ static int __init kernel_init(void * unused)
  	if (!ramdisk_execute_command)
  		ramdisk_execute_command = "/init";
  
@@ -65050,7 +64239,7 @@ index 45a7bf5..7ba1b61 100644
  	 * Ok, we have completed the initial bootup, and
  	 * we're essentially up and running. Get rid of the
 diff --git a/ipc/mqueue.c b/ipc/mqueue.c
-index 86ee272..773d937 100644
+index 28bd64d..c66b72a 100644
 --- a/ipc/mqueue.c
 +++ b/ipc/mqueue.c
 @@ -156,6 +156,7 @@ static struct inode *mqueue_get_inode(struct super_block *sb,
@@ -65123,7 +64312,7 @@ index 5215a81..cfc0cac 100644
  	sem_params.flg = semflg;
  	sem_params.u.nsems = nsems;
 diff --git a/ipc/shm.c b/ipc/shm.c
-index b76be5b..859e750 100644
+index 406c5b2..bc66d67 100644
 --- a/ipc/shm.c
 +++ b/ipc/shm.c
 @@ -69,6 +69,14 @@ static void shm_destroy (struct ipc_namespace *ns, struct shmid_kernel *shp);
@@ -65230,7 +64419,7 @@ index 02e6167..54824f7 100644
  	current->signal->rlim[RLIMIT_FSIZE].rlim_cur = flim;
  	set_fs(fs);
 diff --git a/kernel/audit.c b/kernel/audit.c
-index bb0eb5b..cf2a03a 100644
+index 1c7f2c6..9ba5359 100644
 --- a/kernel/audit.c
 +++ b/kernel/audit.c
 @@ -115,7 +115,7 @@ u32		audit_sig_sid = 0;
@@ -65377,7 +64566,7 @@ index 3f1adb6..c564db0 100644
   * nsown_capable - Check superior capability to one's own user_ns
   * @cap: The capability in question
 diff --git a/kernel/compat.c b/kernel/compat.c
-index a6d0649..f44fb27 100644
+index d2c67aa..a629b2e 100644
 --- a/kernel/compat.c
 +++ b/kernel/compat.c
 @@ -13,6 +13,7 @@
@@ -65388,7 +64577,7 @@ index a6d0649..f44fb27 100644
  #include <linux/errno.h>
  #include <linux/time.h>
  #include <linux/signal.h>
-@@ -168,7 +169,7 @@ static long compat_nanosleep_restart(struct restart_block *restart)
+@@ -220,7 +221,7 @@ static long compat_nanosleep_restart(struct restart_block *restart)
  	mm_segment_t oldfs;
  	long ret;
  
@@ -65397,7 +64586,7 @@ index a6d0649..f44fb27 100644
  	oldfs = get_fs();
  	set_fs(KERNEL_DS);
  	ret = hrtimer_nanosleep_restart(restart);
-@@ -200,7 +201,7 @@ asmlinkage long compat_sys_nanosleep(struct compat_timespec __user *rqtp,
+@@ -252,7 +253,7 @@ asmlinkage long compat_sys_nanosleep(struct compat_timespec __user *rqtp,
  	oldfs = get_fs();
  	set_fs(KERNEL_DS);
  	ret = hrtimer_nanosleep(&tu,
@@ -65406,7 +64595,7 @@ index a6d0649..f44fb27 100644
  				HRTIMER_MODE_REL, CLOCK_MONOTONIC);
  	set_fs(oldfs);
  
-@@ -309,7 +310,7 @@ asmlinkage long compat_sys_sigpending(compat_old_sigset_t __user *set)
+@@ -361,7 +362,7 @@ asmlinkage long compat_sys_sigpending(compat_old_sigset_t __user *set)
  	mm_segment_t old_fs = get_fs();
  
  	set_fs(KERNEL_DS);
@@ -65415,7 +64604,7 @@ index a6d0649..f44fb27 100644
  	set_fs(old_fs);
  	if (ret == 0)
  		ret = put_user(s, set);
-@@ -399,7 +400,7 @@ asmlinkage long compat_sys_old_getrlimit(unsigned int resource,
+@@ -451,7 +452,7 @@ asmlinkage long compat_sys_old_getrlimit(unsigned int resource,
  	mm_segment_t old_fs = get_fs();
  
  	set_fs(KERNEL_DS);
@@ -65424,7 +64613,7 @@ index a6d0649..f44fb27 100644
  	set_fs(old_fs);
  
  	if (!ret) {
-@@ -471,7 +472,7 @@ asmlinkage long compat_sys_getrusage(int who, struct compat_rusage __user *ru)
+@@ -523,7 +524,7 @@ asmlinkage long compat_sys_getrusage(int who, struct compat_rusage __user *ru)
  	mm_segment_t old_fs = get_fs();
  
  	set_fs(KERNEL_DS);
@@ -65433,7 +64622,7 @@ index a6d0649..f44fb27 100644
  	set_fs(old_fs);
  
  	if (ret)
-@@ -498,8 +499,8 @@ compat_sys_wait4(compat_pid_t pid, compat_uint_t __user *stat_addr, int options,
+@@ -550,8 +551,8 @@ compat_sys_wait4(compat_pid_t pid, compat_uint_t __user *stat_addr, int options,
  		set_fs (KERNEL_DS);
  		ret = sys_wait4(pid,
  				(stat_addr ?
@@ -65444,7 +64633,7 @@ index a6d0649..f44fb27 100644
  		set_fs (old_fs);
  
  		if (ret > 0) {
-@@ -524,8 +525,8 @@ asmlinkage long compat_sys_waitid(int which, compat_pid_t pid,
+@@ -576,8 +577,8 @@ asmlinkage long compat_sys_waitid(int which, compat_pid_t pid,
  	memset(&info, 0, sizeof(info));
  
  	set_fs(KERNEL_DS);
@@ -65455,7 +64644,7 @@ index a6d0649..f44fb27 100644
  	set_fs(old_fs);
  
  	if ((ret < 0) || (info.si_signo == 0))
-@@ -655,8 +656,8 @@ long compat_sys_timer_settime(timer_t timer_id, int flags,
+@@ -707,8 +708,8 @@ long compat_sys_timer_settime(timer_t timer_id, int flags,
  	oldfs = get_fs();
  	set_fs(KERNEL_DS);
  	err = sys_timer_settime(timer_id, flags,
@@ -65466,7 +64655,7 @@ index a6d0649..f44fb27 100644
  	set_fs(oldfs);
  	if (!err && old && put_compat_itimerspec(old, &oldts))
  		return -EFAULT;
-@@ -673,7 +674,7 @@ long compat_sys_timer_gettime(timer_t timer_id,
+@@ -725,7 +726,7 @@ long compat_sys_timer_gettime(timer_t timer_id,
  	oldfs = get_fs();
  	set_fs(KERNEL_DS);
  	err = sys_timer_gettime(timer_id,
@@ -65475,7 +64664,7 @@ index a6d0649..f44fb27 100644
  	set_fs(oldfs);
  	if (!err && put_compat_itimerspec(setting, &ts))
  		return -EFAULT;
-@@ -692,7 +693,7 @@ long compat_sys_clock_settime(clockid_t which_clock,
+@@ -744,7 +745,7 @@ long compat_sys_clock_settime(clockid_t which_clock,
  	oldfs = get_fs();
  	set_fs(KERNEL_DS);
  	err = sys_clock_settime(which_clock,
@@ -65484,7 +64673,7 @@ index a6d0649..f44fb27 100644
  	set_fs(oldfs);
  	return err;
  }
-@@ -707,7 +708,7 @@ long compat_sys_clock_gettime(clockid_t which_clock,
+@@ -759,7 +760,7 @@ long compat_sys_clock_gettime(clockid_t which_clock,
  	oldfs = get_fs();
  	set_fs(KERNEL_DS);
  	err = sys_clock_gettime(which_clock,
@@ -65493,7 +64682,7 @@ index a6d0649..f44fb27 100644
  	set_fs(oldfs);
  	if (!err && put_compat_timespec(&ts, tp))
  		return -EFAULT;
-@@ -727,7 +728,7 @@ long compat_sys_clock_adjtime(clockid_t which_clock,
+@@ -779,7 +780,7 @@ long compat_sys_clock_adjtime(clockid_t which_clock,
  
  	oldfs = get_fs();
  	set_fs(KERNEL_DS);
@@ -65502,7 +64691,7 @@ index a6d0649..f44fb27 100644
  	set_fs(oldfs);
  
  	err = compat_put_timex(utp, &txc);
-@@ -747,7 +748,7 @@ long compat_sys_clock_getres(clockid_t which_clock,
+@@ -799,7 +800,7 @@ long compat_sys_clock_getres(clockid_t which_clock,
  	oldfs = get_fs();
  	set_fs(KERNEL_DS);
  	err = sys_clock_getres(which_clock,
@@ -65511,7 +64700,7 @@ index a6d0649..f44fb27 100644
  	set_fs(oldfs);
  	if (!err && tp && put_compat_timespec(&ts, tp))
  		return -EFAULT;
-@@ -759,9 +760,9 @@ static long compat_clock_nanosleep_restart(struct restart_block *restart)
+@@ -811,9 +812,9 @@ static long compat_clock_nanosleep_restart(struct restart_block *restart)
  	long err;
  	mm_segment_t oldfs;
  	struct timespec tu;
@@ -65523,7 +64712,7 @@ index a6d0649..f44fb27 100644
  	oldfs = get_fs();
  	set_fs(KERNEL_DS);
  	err = clock_nanosleep_restart(restart);
-@@ -793,8 +794,8 @@ long compat_sys_clock_nanosleep(clockid_t which_clock, int flags,
+@@ -845,8 +846,8 @@ long compat_sys_clock_nanosleep(clockid_t which_clock, int flags,
  	oldfs = get_fs();
  	set_fs(KERNEL_DS);
  	err = sys_clock_nanosleep(which_clock, flags,
@@ -65559,10 +64748,10 @@ index 42e8fa0..9e7406b 100644
  		return -ENOMEM;
  
 diff --git a/kernel/cred.c b/kernel/cred.c
-index 48c6fd3..8398912 100644
+index e70683d..27761b6 100644
 --- a/kernel/cred.c
 +++ b/kernel/cred.c
-@@ -204,6 +204,15 @@ void exit_creds(struct task_struct *tsk)
+@@ -205,6 +205,15 @@ void exit_creds(struct task_struct *tsk)
  		validate_creds(cred);
  		put_cred(cred);
  	}
@@ -65578,7 +64767,7 @@ index 48c6fd3..8398912 100644
  }
  
  /**
-@@ -472,7 +481,7 @@ error_put:
+@@ -473,7 +482,7 @@ error_put:
   * Always returns 0 thus allowing this function to be tail-called at the end
   * of, say, sys_setgid().
   */
@@ -65587,7 +64776,7 @@ index 48c6fd3..8398912 100644
  {
  	struct task_struct *task = current;
  	const struct cred *old = task->real_cred;
-@@ -491,6 +500,8 @@ int commit_creds(struct cred *new)
+@@ -492,6 +501,8 @@ int commit_creds(struct cred *new)
  
  	get_cred(new); /* we will require a ref for the subj creds too */
  
@@ -65596,7 +64785,7 @@ index 48c6fd3..8398912 100644
  	/* dumpability changes */
  	if (old->euid != new->euid ||
  	    old->egid != new->egid ||
-@@ -540,6 +551,101 @@ int commit_creds(struct cred *new)
+@@ -541,6 +552,101 @@ int commit_creds(struct cred *new)
  	put_cred(old);
  	return 0;
  }
@@ -65699,10 +64888,10 @@ index 48c6fd3..8398912 100644
  
  /**
 diff --git a/kernel/debug/debug_core.c b/kernel/debug/debug_core.c
-index 7fda904..59f620c 100644
+index 0557f24..1a00d9a 100644
 --- a/kernel/debug/debug_core.c
 +++ b/kernel/debug/debug_core.c
-@@ -119,7 +119,7 @@ static DEFINE_RAW_SPINLOCK(dbg_slave_lock);
+@@ -122,7 +122,7 @@ static DEFINE_RAW_SPINLOCK(dbg_slave_lock);
   */
  static atomic_t			masters_in_kgdb;
  static atomic_t			slaves_in_kgdb;
@@ -65711,7 +64900,7 @@ index 7fda904..59f620c 100644
  atomic_t			kgdb_setting_breakpoint;
  
  struct task_struct		*kgdb_usethread;
-@@ -129,7 +129,7 @@ int				kgdb_single_step;
+@@ -132,7 +132,7 @@ int				kgdb_single_step;
  static pid_t			kgdb_sstep_pid;
  
  /* to keep track of the CPU which is doing the single stepping*/
@@ -65720,7 +64909,7 @@ index 7fda904..59f620c 100644
  
  /*
   * If you are debugging a problem where roundup (the collection of
-@@ -537,7 +537,7 @@ return_normal:
+@@ -540,7 +540,7 @@ return_normal:
  	 * kernel will only try for the value of sstep_tries before
  	 * giving up and continuing on.
  	 */
@@ -65729,7 +64918,7 @@ index 7fda904..59f620c 100644
  	    (kgdb_info[cpu].task &&
  	     kgdb_info[cpu].task->pid != kgdb_sstep_pid) && --sstep_tries) {
  		atomic_set(&kgdb_active, -1);
-@@ -631,8 +631,8 @@ cpu_master_loop:
+@@ -634,8 +634,8 @@ cpu_master_loop:
  	}
  
  kgdb_restore:
@@ -65740,7 +64929,7 @@ index 7fda904..59f620c 100644
  		if (kgdb_info[sstep_cpu].task)
  			kgdb_sstep_pid = kgdb_info[sstep_cpu].task->pid;
  		else
-@@ -829,18 +829,18 @@ static void kgdb_unregister_callbacks(void)
+@@ -861,18 +861,18 @@ static void kgdb_unregister_callbacks(void)
  static void kgdb_tasklet_bpt(unsigned long ing)
  {
  	kgdb_breakpoint();
@@ -65763,10 +64952,10 @@ index 7fda904..59f620c 100644
  }
  EXPORT_SYMBOL_GPL(kgdb_schedule_breakpoint);
 diff --git a/kernel/debug/kdb/kdb_main.c b/kernel/debug/kdb/kdb_main.c
-index e2ae734..08a4c5c 100644
+index 67b847d..93834dd 100644
 --- a/kernel/debug/kdb/kdb_main.c
 +++ b/kernel/debug/kdb/kdb_main.c
-@@ -1980,7 +1980,7 @@ static int kdb_lsmod(int argc, const char **argv)
+@@ -1983,7 +1983,7 @@ static int kdb_lsmod(int argc, const char **argv)
  	list_for_each_entry(mod, kdb_modules, list) {
  
  		kdb_printf("%-20s%8u  0x%p ", mod->name,
@@ -65775,7 +64964,7 @@ index e2ae734..08a4c5c 100644
  #ifdef CONFIG_MODULE_UNLOAD
  		kdb_printf("%4ld ", module_refcount(mod));
  #endif
-@@ -1990,7 +1990,7 @@ static int kdb_lsmod(int argc, const char **argv)
+@@ -1993,7 +1993,7 @@ static int kdb_lsmod(int argc, const char **argv)
  			kdb_printf(" (Loading)");
  		else
  			kdb_printf(" (Live)");
@@ -65785,10 +64974,10 @@ index e2ae734..08a4c5c 100644
  #ifdef CONFIG_MODULE_UNLOAD
  		{
 diff --git a/kernel/events/core.c b/kernel/events/core.c
-index 1b5c081..c375f83 100644
+index fd126f8..70b755b 100644
 --- a/kernel/events/core.c
 +++ b/kernel/events/core.c
-@@ -173,7 +173,7 @@ int perf_proc_update_handler(struct ctl_table *table, int write,
+@@ -181,7 +181,7 @@ int perf_proc_update_handler(struct ctl_table *table, int write,
  	return 0;
  }
  
@@ -65797,7 +64986,7 @@ index 1b5c081..c375f83 100644
  
  static void cpu_ctx_sched_out(struct perf_cpu_context *cpuctx,
  			      enum event_type_t event_type);
-@@ -2581,7 +2581,7 @@ static void __perf_event_read(void *info)
+@@ -2659,7 +2659,7 @@ static void __perf_event_read(void *info)
  
  static inline u64 perf_event_count(struct perf_event *event)
  {
@@ -65806,7 +64995,7 @@ index 1b5c081..c375f83 100644
  }
  
  static u64 perf_event_read(struct perf_event *event)
-@@ -2897,9 +2897,9 @@ u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
+@@ -2983,9 +2983,9 @@ u64 perf_event_read_value(struct perf_event *event, u64 *enabled, u64 *running)
  	mutex_lock(&event->child_mutex);
  	total += perf_event_read(event);
  	*enabled += event->total_time_enabled +
@@ -65818,7 +65007,7 @@ index 1b5c081..c375f83 100644
  
  	list_for_each_entry(child, &event->child_list, child_list) {
  		total += perf_event_read(child);
-@@ -3306,10 +3306,10 @@ void perf_event_update_userpage(struct perf_event *event)
+@@ -3393,10 +3393,10 @@ void perf_event_update_userpage(struct perf_event *event)
  		userpg->offset -= local64_read(&event->hw.prev_count);
  
  	userpg->time_enabled = enabled +
@@ -65829,9 +65018,9 @@ index 1b5c081..c375f83 100644
 -			atomic64_read(&event->child_total_time_running);
 +			atomic64_read_unchecked(&event->child_total_time_running);
  
- 	barrier();
- 	++userpg->lock;
-@@ -3738,11 +3738,11 @@ static void perf_output_read_one(struct perf_output_handle *handle,
+ 	arch_perf_update_userpage(userpg, now);
+ 
+@@ -3829,11 +3829,11 @@ static void perf_output_read_one(struct perf_output_handle *handle,
  	values[n++] = perf_event_count(event);
  	if (read_format & PERF_FORMAT_TOTAL_TIME_ENABLED) {
  		values[n++] = enabled +
@@ -65845,7 +65034,7 @@ index 1b5c081..c375f83 100644
  	}
  	if (read_format & PERF_FORMAT_ID)
  		values[n++] = primary_event_id(event);
-@@ -4393,12 +4393,12 @@ static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
+@@ -4511,12 +4511,12 @@ static void perf_event_mmap_event(struct perf_mmap_event *mmap_event)
  		 * need to add enough zero bytes after the string to handle
  		 * the 64bit alignment we do later.
  		 */
@@ -65860,7 +65049,7 @@ index 1b5c081..c375f83 100644
  		if (IS_ERR(name)) {
  			name = strncpy(tmp, "//toolong", sizeof(tmp));
  			goto got_name;
-@@ -5765,7 +5765,7 @@ perf_event_alloc(struct perf_event_attr *attr, int cpu,
+@@ -5929,7 +5929,7 @@ perf_event_alloc(struct perf_event_attr *attr, int cpu,
  	event->parent		= parent_event;
  
  	event->ns		= get_pid_ns(current->nsproxy->pid_ns);
@@ -65869,7 +65058,7 @@ index 1b5c081..c375f83 100644
  
  	event->state		= PERF_EVENT_STATE_INACTIVE;
  
-@@ -6287,10 +6287,10 @@ static void sync_child_event(struct perf_event *child_event,
+@@ -6491,10 +6491,10 @@ static void sync_child_event(struct perf_event *child_event,
  	/*
  	 * Add back the child's count to the parent's count:
  	 */
@@ -65884,10 +65073,10 @@ index 1b5c081..c375f83 100644
  
  	/*
 diff --git a/kernel/exit.c b/kernel/exit.c
-index 46c8b14..d868958 100644
+index d8bd3b42..26bd8dc 100644
 --- a/kernel/exit.c
 +++ b/kernel/exit.c
-@@ -58,6 +58,10 @@
+@@ -59,6 +59,10 @@
  #include <asm/pgtable.h>
  #include <asm/mmu_context.h>
  
@@ -65898,7 +65087,7 @@ index 46c8b14..d868958 100644
  static void exit_mm(struct task_struct * tsk);
  
  static void __unhash_process(struct task_struct *p, bool group_dead)
-@@ -169,6 +173,10 @@ void release_task(struct task_struct * p)
+@@ -170,6 +174,10 @@ void release_task(struct task_struct * p)
  	struct task_struct *leader;
  	int zap_leader;
  repeat:
@@ -65909,7 +65098,7 @@ index 46c8b14..d868958 100644
  	/* don't need to get the RCU readlock here - the process is dead and
  	 * can't be modifying its own credentials. But shut RCU-lockdep up */
  	rcu_read_lock();
-@@ -381,7 +389,7 @@ int allow_signal(int sig)
+@@ -382,7 +390,7 @@ int allow_signal(int sig)
  	 * know it'll be handled, so that they don't get converted to
  	 * SIGKILL or just silently dropped.
  	 */
@@ -65918,7 +65107,7 @@ index 46c8b14..d868958 100644
  	recalc_sigpending();
  	spin_unlock_irq(&current->sighand->siglock);
  	return 0;
-@@ -417,6 +425,17 @@ void daemonize(const char *name, ...)
+@@ -418,6 +426,17 @@ void daemonize(const char *name, ...)
  	vsnprintf(current->comm, sizeof(current->comm), name, args);
  	va_end(args);
  
@@ -65936,7 +65125,7 @@ index 46c8b14..d868958 100644
  	/*
  	 * If we were started as result of loading a module, close all of the
  	 * user space pages.  We don't need them, and if we didn't close them
-@@ -873,6 +892,8 @@ void do_exit(long code)
+@@ -900,6 +919,8 @@ void do_exit(long code)
  	struct task_struct *tsk = current;
  	int group_dead;
  
@@ -65945,7 +65134,7 @@ index 46c8b14..d868958 100644
  	profile_task_exit(tsk);
  
  	WARN_ON(blk_needs_flush_plug(tsk));
-@@ -889,7 +910,6 @@ void do_exit(long code)
+@@ -916,7 +937,6 @@ void do_exit(long code)
  	 * mm_release()->clear_child_tid() from writing to a user-controlled
  	 * kernel address.
  	 */
@@ -65953,7 +65142,7 @@ index 46c8b14..d868958 100644
  
  	ptrace_event(PTRACE_EVENT_EXIT, code);
  
-@@ -950,6 +970,9 @@ void do_exit(long code)
+@@ -977,6 +997,9 @@ void do_exit(long code)
  	tsk->exit_code = code;
  	taskstats_exit(tsk, group_dead);
  
@@ -65963,7 +65152,7 @@ index 46c8b14..d868958 100644
  	exit_mm(tsk);
  
  	if (group_dead)
-@@ -1066,7 +1089,7 @@ SYSCALL_DEFINE1(exit, int, error_code)
+@@ -1093,7 +1116,7 @@ SYSCALL_DEFINE1(exit, int, error_code)
   * Take down every thread in the group.  This is called by fatal signals
   * as well as by sys_exit_group (below).
   */
@@ -65973,10 +65162,10 @@ index 46c8b14..d868958 100644
  {
  	struct signal_struct *sig = current->signal;
 diff --git a/kernel/fork.c b/kernel/fork.c
-index 423d5a4..881923e 100644
+index 687a15d..efb4692 100644
 --- a/kernel/fork.c
 +++ b/kernel/fork.c
-@@ -285,7 +285,7 @@ static struct task_struct *dup_task_struct(struct task_struct *orig)
+@@ -286,7 +286,7 @@ static struct task_struct *dup_task_struct(struct task_struct *orig)
  	*stackend = STACK_END_MAGIC;	/* for overflow detection */
  
  #ifdef CONFIG_CC_STACKPROTECTOR
@@ -65985,11 +65174,11 @@ index 423d5a4..881923e 100644
  #endif
  
  	/*
-@@ -309,13 +309,77 @@ out:
+@@ -310,13 +310,78 @@ out:
  }
  
  #ifdef CONFIG_MMU
-+static struct vm_area_struct *dup_vma(struct mm_struct *mm, struct vm_area_struct *mpnt)
++static struct vm_area_struct *dup_vma(struct mm_struct *mm, struct mm_struct *oldmm, struct vm_area_struct *mpnt)
 +{
 +	struct vm_area_struct *tmp;
 +	unsigned long charge;
@@ -65998,8 +65187,9 @@ index 423d5a4..881923e 100644
 +
 +	charge = 0;
 +	if (mpnt->vm_flags & VM_ACCOUNT) {
-+		unsigned long len = (mpnt->vm_end - mpnt->vm_start) >> PAGE_SHIFT;
-+		if (security_vm_enough_memory(len))
++		unsigned long len;
++		len = (mpnt->vm_end - mpnt->vm_start) >> PAGE_SHIFT;
++		if (security_vm_enough_memory_mm(oldmm, len)) /* sic */
 +			goto fail_nomem;
 +		charge = len;
 +	}
@@ -66065,7 +65255,7 @@ index 423d5a4..881923e 100644
  
  	down_write(&oldmm->mmap_sem);
  	flush_cache_dup_mm(oldmm);
-@@ -327,8 +391,8 @@ static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)
+@@ -328,8 +393,8 @@ static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)
  	mm->locked_vm = 0;
  	mm->mmap = NULL;
  	mm->mmap_cache = NULL;
@@ -66076,7 +65266,7 @@ index 423d5a4..881923e 100644
  	mm->map_count = 0;
  	cpumask_clear(mm_cpumask(mm));
  	mm->mm_rb = RB_ROOT;
-@@ -344,8 +408,6 @@ static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)
+@@ -345,8 +410,6 @@ static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)
  
  	prev = NULL;
  	for (mpnt = oldmm->mmap; mpnt; mpnt = mpnt->vm_next) {
@@ -66085,17 +65275,17 @@ index 423d5a4..881923e 100644
  		if (mpnt->vm_flags & VM_DONTCOPY) {
  			long pages = vma_pages(mpnt);
  			mm->total_vm -= pages;
-@@ -353,53 +415,11 @@ static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)
+@@ -354,53 +417,11 @@ static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)
  								-pages);
  			continue;
  		}
 -		charge = 0;
 -		if (mpnt->vm_flags & VM_ACCOUNT) {
 -			unsigned int len = (mpnt->vm_end - mpnt->vm_start) >> PAGE_SHIFT;
--			if (security_vm_enough_memory(len))
+-			if (security_vm_enough_memory_mm(oldmm, len)) /* sic */
 -				goto fail_nomem;
 -			charge = len;
-+		tmp = dup_vma(mm, mpnt);
++		tmp = dup_vma(mm, oldmm, mpnt);
 +		if (!tmp) {
 +			retval = -ENOMEM;
 +			goto out;
@@ -66143,7 +65333,7 @@ index 423d5a4..881923e 100644
  
  		/*
  		 * Link in the new vma and copy the page table entries.
-@@ -422,6 +442,31 @@ static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)
+@@ -423,6 +444,31 @@ static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)
  		if (retval)
  			goto out;
  	}
@@ -66175,7 +65365,7 @@ index 423d5a4..881923e 100644
  	/* a new mm has just been created */
  	arch_dup_mmap(oldmm, mm);
  	retval = 0;
-@@ -430,14 +475,6 @@ out:
+@@ -431,14 +477,6 @@ out:
  	flush_tlb_mm(oldmm);
  	up_write(&oldmm->mmap_sem);
  	return retval;
@@ -66190,7 +65380,7 @@ index 423d5a4..881923e 100644
  }
  
  static inline int mm_alloc_pgd(struct mm_struct *mm)
-@@ -659,8 +696,8 @@ struct mm_struct *mm_access(struct task_struct *task, unsigned int mode)
+@@ -675,8 +713,8 @@ struct mm_struct *mm_access(struct task_struct *task, unsigned int mode)
  		return ERR_PTR(err);
  
  	mm = get_task_mm(task);
@@ -66201,7 +65391,7 @@ index 423d5a4..881923e 100644
  		mmput(mm);
  		mm = ERR_PTR(-EACCES);
  	}
-@@ -882,13 +919,14 @@ static int copy_fs(unsigned long clone_flags, struct task_struct *tsk)
+@@ -898,13 +936,14 @@ static int copy_fs(unsigned long clone_flags, struct task_struct *tsk)
  			spin_unlock(&fs->lock);
  			return -EAGAIN;
  		}
@@ -66217,7 +65407,7 @@ index 423d5a4..881923e 100644
  	return 0;
  }
  
-@@ -1152,6 +1190,9 @@ static struct task_struct *copy_process(unsigned long clone_flags,
+@@ -1171,6 +1210,9 @@ static struct task_struct *copy_process(unsigned long clone_flags,
  	DEBUG_LOCKS_WARN_ON(!p->softirqs_enabled);
  #endif
  	retval = -EAGAIN;
@@ -66227,7 +65417,7 @@ index 423d5a4..881923e 100644
  	if (atomic_read(&p->real_cred->user->processes) >=
  			task_rlimit(p, RLIMIT_NPROC)) {
  		if (!capable(CAP_SYS_ADMIN) && !capable(CAP_SYS_RESOURCE) &&
-@@ -1307,6 +1348,8 @@ static struct task_struct *copy_process(unsigned long clone_flags,
+@@ -1327,6 +1369,8 @@ static struct task_struct *copy_process(unsigned long clone_flags,
  	if (clone_flags & CLONE_THREAD)
  		p->tgid = current->tgid;
  
@@ -66236,7 +65426,7 @@ index 423d5a4..881923e 100644
  	p->set_child_tid = (clone_flags & CLONE_CHILD_SETTID) ? child_tidptr : NULL;
  	/*
  	 * Clear TID on mm_release()?
-@@ -1475,6 +1518,8 @@ bad_fork_cleanup_count:
+@@ -1501,6 +1545,8 @@ bad_fork_cleanup_count:
  bad_fork_free:
  	free_task(p);
  fork_out:
@@ -66245,7 +65435,7 @@ index 423d5a4..881923e 100644
  	return ERR_PTR(retval);
  }
  
-@@ -1575,6 +1620,8 @@ long do_fork(unsigned long clone_flags,
+@@ -1601,6 +1647,8 @@ long do_fork(unsigned long clone_flags,
  		if (clone_flags & CLONE_PARENT_SETTID)
  			put_user(nr, parent_tidptr);
  
@@ -66254,7 +65444,7 @@ index 423d5a4..881923e 100644
  		if (clone_flags & CLONE_VFORK) {
  			p->vfork_done = &vfork;
  			init_completion(&vfork);
-@@ -1673,7 +1720,7 @@ static int unshare_fs(unsigned long unshare_flags, struct fs_struct **new_fsp)
+@@ -1699,7 +1747,7 @@ static int unshare_fs(unsigned long unshare_flags, struct fs_struct **new_fsp)
  		return 0;
  
  	/* don't need lock here; in the worst case we'll do useless copy */
@@ -66263,7 +65453,7 @@ index 423d5a4..881923e 100644
  		return 0;
  
  	*new_fsp = copy_fs_struct(fs);
-@@ -1762,7 +1809,8 @@ SYSCALL_DEFINE1(unshare, unsigned long, unshare_flags)
+@@ -1788,7 +1836,8 @@ SYSCALL_DEFINE1(unshare, unsigned long, unshare_flags)
  			fs = current->fs;
  			spin_lock(&fs->lock);
  			current->fs = new_fs;
@@ -66274,7 +65464,7 @@ index 423d5a4..881923e 100644
  			else
  				new_fs = fs;
 diff --git a/kernel/futex.c b/kernel/futex.c
-index 866c9d5..5c5f828 100644
+index e2b0fb9..db818ac 100644
 --- a/kernel/futex.c
 +++ b/kernel/futex.c
 @@ -54,6 +54,7 @@
@@ -66297,7 +65487,7 @@ index 866c9d5..5c5f828 100644
  	/*
  	 * The futex address must be "naturally" aligned.
  	 */
-@@ -2721,6 +2727,7 @@ static int __init futex_init(void)
+@@ -2711,6 +2717,7 @@ static int __init futex_init(void)
  {
  	u32 curval;
  	int i;
@@ -66305,7 +65495,7 @@ index 866c9d5..5c5f828 100644
  
  	/*
  	 * This will fail and we want it. Some arch implementations do
-@@ -2732,8 +2739,11 @@ static int __init futex_init(void)
+@@ -2722,8 +2729,11 @@ static int __init futex_init(void)
  	 * implementation, the non-functional ones will return
  	 * -ENOSYS.
  	 */
@@ -66356,10 +65546,10 @@ index ae34bf5..4e2f3d0 100644
  	hrtimer_peek_ahead_timers();
  }
 diff --git a/kernel/jump_label.c b/kernel/jump_label.c
-index 01d3b70..9e4d098 100644
+index 4304919..bbc53fa 100644
 --- a/kernel/jump_label.c
 +++ b/kernel/jump_label.c
-@@ -55,7 +55,9 @@ jump_label_sort_entries(struct jump_entry *start, struct jump_entry *stop)
+@@ -50,7 +50,9 @@ jump_label_sort_entries(struct jump_entry *start, struct jump_entry *stop)
  
  	size = (((unsigned long)stop - (unsigned long)start)
  					/ sizeof(struct jump_entry));
@@ -66368,8 +65558,8 @@ index 01d3b70..9e4d098 100644
 +	pax_close_kernel();
  }
  
- static void jump_label_update(struct jump_label_key *key, int enable);
-@@ -340,10 +342,12 @@ static void jump_label_invalidate_module_init(struct module *mod)
+ static void jump_label_update(struct static_key *key, int enable);
+@@ -356,10 +358,12 @@ static void jump_label_invalidate_module_init(struct module *mod)
  	struct jump_entry *iter_stop = iter_start + mod->num_jump_entries;
  	struct jump_entry *iter;
  
@@ -66489,10 +65679,10 @@ index 079f1d3..a407562 100644
  		return -ENOMEM;
  	reset_iter(iter, 0);
 diff --git a/kernel/kexec.c b/kernel/kexec.c
-index 7b08867..3bac516 100644
+index 4e2e472..cd0c7ae 100644
 --- a/kernel/kexec.c
 +++ b/kernel/kexec.c
-@@ -1047,7 +1047,8 @@ asmlinkage long compat_sys_kexec_load(unsigned long entry,
+@@ -1046,7 +1046,8 @@ asmlinkage long compat_sys_kexec_load(unsigned long entry,
  				unsigned long flags)
  {
  	struct compat_kexec_segment in;
@@ -66503,10 +65693,38 @@ index 7b08867..3bac516 100644
  
  	/* Don't allow clients that don't understand the native
 diff --git a/kernel/kmod.c b/kernel/kmod.c
-index a3a46cb..f2e42f8 100644
+index 05698a7..a4c1e3a 100644
 --- a/kernel/kmod.c
 +++ b/kernel/kmod.c
-@@ -75,13 +75,12 @@ char modprobe_path[KMOD_PATH_LEN] = "/sbin/modprobe";
+@@ -66,7 +66,7 @@ static void free_modprobe_argv(struct subprocess_info *info)
+ 	kfree(info->argv);
+ }
+ 
+-static int call_modprobe(char *module_name, int wait)
++static int call_modprobe(char *module_name, char *module_param, int wait)
+ {
+ 	static char *envp[] = {
+ 		"HOME=/",
+@@ -75,7 +75,7 @@ static int call_modprobe(char *module_name, int wait)
+ 		NULL
+ 	};
+ 
+-	char **argv = kmalloc(sizeof(char *[5]), GFP_KERNEL);
++	char **argv = kmalloc(sizeof(char *[6]), GFP_KERNEL);
+ 	if (!argv)
+ 		goto out;
+ 
+@@ -87,7 +87,8 @@ static int call_modprobe(char *module_name, int wait)
+ 	argv[1] = "-q";
+ 	argv[2] = "--";
+ 	argv[3] = module_name;	/* check free_modprobe_argv() */
+-	argv[4] = NULL;
++	argv[4] = module_param;
++	argv[5] = NULL;
+ 
+ 	return call_usermodehelper_fns(modprobe_path, argv, envp,
+ 		wait | UMH_KILLABLE, NULL, free_modprobe_argv, NULL);
+@@ -112,9 +113,8 @@ out:
   * If module auto-loading support is disabled then this function
   * becomes a no-operation.
   */
@@ -66517,12 +65735,7 @@ index a3a46cb..f2e42f8 100644
  	char module_name[MODULE_NAME_LEN];
  	unsigned int max_modprobes;
  	int ret;
--	char *argv[] = { modprobe_path, "-q", "--", module_name, NULL };
-+	char *argv[] = { modprobe_path, "-q", "--", module_name, module_param, NULL };
- 	static char *envp[] = { "HOME=/",
- 				"TERM=linux",
- 				"PATH=/sbin:/usr/sbin:/bin:/usr/bin",
-@@ -90,9 +89,7 @@ int __request_module(bool wait, const char *fmt, ...)
+@@ -122,9 +122,7 @@ int __request_module(bool wait, const char *fmt, ...)
  #define MAX_KMOD_CONCURRENT 50	/* Completely arbitrary value - KAO */
  	static int kmod_loop_msg;
  
@@ -66533,7 +65746,7 @@ index a3a46cb..f2e42f8 100644
  	if (ret >= MODULE_NAME_LEN)
  		return -ENAMETOOLONG;
  
-@@ -100,6 +97,20 @@ int __request_module(bool wait, const char *fmt, ...)
+@@ -132,6 +130,20 @@ int __request_module(bool wait, const char *fmt, ...)
  	if (ret)
  		return ret;
  
@@ -66554,7 +65767,13 @@ index a3a46cb..f2e42f8 100644
  	/* If modprobe needs a service that is in a module, we get a recursive
  	 * loop.  Limit the number of running kmod threads to max_threads/2 or
  	 * MAX_KMOD_CONCURRENT, whichever is the smaller.  A cleaner method
-@@ -135,6 +146,47 @@ int __request_module(bool wait, const char *fmt, ...)
+@@ -160,11 +172,52 @@ int __request_module(bool wait, const char *fmt, ...)
+ 
+ 	trace_module_request(module_name, wait, _RET_IP_);
+ 
+-	ret = call_modprobe(module_name, wait ? UMH_WAIT_PROC : UMH_WAIT_EXEC);
++	ret = call_modprobe(module_name, module_param, wait ? UMH_WAIT_PROC : UMH_WAIT_EXEC);
+ 
  	atomic_dec(&kmod_concurrent);
  	return ret;
  }
@@ -66602,7 +65821,7 @@ index a3a46cb..f2e42f8 100644
  EXPORT_SYMBOL(__request_module);
  #endif /* CONFIG_MODULES */
  
-@@ -224,7 +276,7 @@ static int wait_for_helper(void *data)
+@@ -267,7 +320,7 @@ static int wait_for_helper(void *data)
  		 *
  		 * Thus the __user pointer cast is valid here.
  		 */
@@ -66665,7 +65884,7 @@ index 4e316e1..5501eef 100644
  	uevent_helper[count] = '\0';
  	if (count && uevent_helper[count-1] == '\n')
 diff --git a/kernel/lockdep.c b/kernel/lockdep.c
-index 8889f7d..95319b7 100644
+index ea9ee45..67ebc8f 100644
 --- a/kernel/lockdep.c
 +++ b/kernel/lockdep.c
 @@ -590,6 +590,10 @@ static int static_obj(void *obj)
@@ -66710,7 +65929,7 @@ index 91c32a0..b2c71c5 100644
  
  	if (!name) {
 diff --git a/kernel/module.c b/kernel/module.c
-index 3d56b6f..2a22bd0 100644
+index 78ac6ec..e87db0e 100644
 --- a/kernel/module.c
 +++ b/kernel/module.c
 @@ -58,6 +58,7 @@
@@ -66721,7 +65940,7 @@ index 3d56b6f..2a22bd0 100644
  
  #define CREATE_TRACE_POINTS
  #include <trace/events/module.h>
-@@ -113,7 +114,8 @@ static BLOCKING_NOTIFIER_HEAD(module_notify_list);
+@@ -114,7 +115,8 @@ static BLOCKING_NOTIFIER_HEAD(module_notify_list);
  
  /* Bounds of module allocation, for speeding __module_address.
   * Protected by module_mutex. */
@@ -66731,7 +65950,7 @@ index 3d56b6f..2a22bd0 100644
  
  int register_module_notifier(struct notifier_block * nb)
  {
-@@ -277,7 +279,7 @@ bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
+@@ -278,7 +280,7 @@ bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
  		return true;
  
  	list_for_each_entry_rcu(mod, &modules, list) {
@@ -66740,7 +65959,7 @@ index 3d56b6f..2a22bd0 100644
  			{ mod->syms, mod->syms + mod->num_syms, mod->crcs,
  			  NOT_GPL_ONLY, false },
  			{ mod->gpl_syms, mod->gpl_syms + mod->num_gpl_syms,
-@@ -299,7 +301,7 @@ bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
+@@ -300,7 +302,7 @@ bool each_symbol_section(bool (*fn)(const struct symsearch *arr,
  #endif
  		};
  
@@ -66749,7 +65968,7 @@ index 3d56b6f..2a22bd0 100644
  			return true;
  	}
  	return false;
-@@ -431,7 +433,7 @@ static inline void __percpu *mod_percpu(struct module *mod)
+@@ -432,7 +434,7 @@ static inline void __percpu *mod_percpu(struct module *mod)
  static int percpu_modalloc(struct module *mod,
  			   unsigned long size, unsigned long align)
  {
@@ -66758,7 +65977,7 @@ index 3d56b6f..2a22bd0 100644
  		printk(KERN_WARNING "%s: per-cpu alignment %li > %li\n",
  		       mod->name, align, PAGE_SIZE);
  		align = PAGE_SIZE;
-@@ -1001,7 +1003,7 @@ struct module_attribute module_uevent =
+@@ -1032,7 +1034,7 @@ struct module_attribute module_uevent =
  static ssize_t show_coresize(struct module_attribute *mattr,
  			     struct module_kobject *mk, char *buffer)
  {
@@ -66767,7 +65986,7 @@ index 3d56b6f..2a22bd0 100644
  }
  
  static struct module_attribute modinfo_coresize =
-@@ -1010,7 +1012,7 @@ static struct module_attribute modinfo_coresize =
+@@ -1041,7 +1043,7 @@ static struct module_attribute modinfo_coresize =
  static ssize_t show_initsize(struct module_attribute *mattr,
  			     struct module_kobject *mk, char *buffer)
  {
@@ -66776,7 +65995,7 @@ index 3d56b6f..2a22bd0 100644
  }
  
  static struct module_attribute modinfo_initsize =
-@@ -1224,7 +1226,7 @@ resolve_symbol_wait(struct module *mod,
+@@ -1255,7 +1257,7 @@ resolve_symbol_wait(struct module *mod,
   */
  #ifdef CONFIG_SYSFS
  
@@ -66785,7 +66004,7 @@ index 3d56b6f..2a22bd0 100644
  static inline bool sect_empty(const Elf_Shdr *sect)
  {
  	return !(sect->sh_flags & SHF_ALLOC) || sect->sh_size == 0;
-@@ -1690,21 +1692,21 @@ static void set_section_ro_nx(void *base,
+@@ -1721,21 +1723,21 @@ static void set_section_ro_nx(void *base,
  
  static void unset_module_core_ro_nx(struct module *mod)
  {
@@ -66815,7 +66034,7 @@ index 3d56b6f..2a22bd0 100644
  		set_memory_rw);
  }
  
-@@ -1715,14 +1717,14 @@ void set_all_modules_text_rw(void)
+@@ -1746,14 +1748,14 @@ void set_all_modules_text_rw(void)
  
  	mutex_lock(&module_mutex);
  	list_for_each_entry_rcu(mod, &modules, list) {
@@ -66836,7 +66055,7 @@ index 3d56b6f..2a22bd0 100644
  						set_memory_rw);
  		}
  	}
-@@ -1736,14 +1738,14 @@ void set_all_modules_text_ro(void)
+@@ -1767,14 +1769,14 @@ void set_all_modules_text_ro(void)
  
  	mutex_lock(&module_mutex);
  	list_for_each_entry_rcu(mod, &modules, list) {
@@ -66857,7 +66076,7 @@ index 3d56b6f..2a22bd0 100644
  						set_memory_ro);
  		}
  	}
-@@ -1789,16 +1791,19 @@ static void free_module(struct module *mod)
+@@ -1820,16 +1822,19 @@ static void free_module(struct module *mod)
  
  	/* This may be NULL, but that's OK */
  	unset_module_init_ro_nx(mod);
@@ -66880,10 +66099,10 @@ index 3d56b6f..2a22bd0 100644
  
  #ifdef CONFIG_MPU
  	update_protections(current->mm);
-@@ -1867,10 +1872,31 @@ static int simplify_symbols(struct module *mod, const struct load_info *info)
- 	unsigned int i;
+@@ -1899,9 +1904,31 @@ static int simplify_symbols(struct module *mod, const struct load_info *info)
  	int ret = 0;
  	const struct kernel_symbol *ksym;
+ 
 +#ifdef CONFIG_GRKERNSEC_MODHARDEN
 +	int is_fs_load = 0;
 +	int register_filesystem_found = 0;
@@ -66897,7 +66116,7 @@ index 3d56b6f..2a22bd0 100644
 +		is_fs_load = 1;
 +	}
 +#endif
- 
++
  	for (i = 1; i < symsec->sh_size / sizeof(Elf_Sym); i++) {
  		const char *name = info->strtab + sym[i].st_name;
  
@@ -66912,7 +66131,7 @@ index 3d56b6f..2a22bd0 100644
  		switch (sym[i].st_shndx) {
  		case SHN_COMMON:
  			/* We compiled with -fno-common.  These are not
-@@ -1891,7 +1917,9 @@ static int simplify_symbols(struct module *mod, const struct load_info *info)
+@@ -1922,7 +1949,9 @@ static int simplify_symbols(struct module *mod, const struct load_info *info)
  			ksym = resolve_symbol_wait(mod, info, name);
  			/* Ok if resolved.  */
  			if (ksym && !IS_ERR(ksym)) {
@@ -66922,7 +66141,7 @@ index 3d56b6f..2a22bd0 100644
  				break;
  			}
  
-@@ -1910,11 +1938,20 @@ static int simplify_symbols(struct module *mod, const struct load_info *info)
+@@ -1941,11 +1970,20 @@ static int simplify_symbols(struct module *mod, const struct load_info *info)
  				secbase = (unsigned long)mod_percpu(mod);
  			else
  				secbase = info->sechdrs[sym[i].st_shndx].sh_addr;
@@ -66943,7 +66162,7 @@ index 3d56b6f..2a22bd0 100644
  	return ret;
  }
  
-@@ -2018,22 +2055,12 @@ static void layout_sections(struct module *mod, struct load_info *info)
+@@ -2049,22 +2087,12 @@ static void layout_sections(struct module *mod, struct load_info *info)
  			    || s->sh_entsize != ~0UL
  			    || strstarts(sname, ".init"))
  				continue;
@@ -66970,7 +66189,7 @@ index 3d56b6f..2a22bd0 100644
  	}
  
  	pr_debug("Init section allocation order:\n");
-@@ -2047,23 +2074,13 @@ static void layout_sections(struct module *mod, struct load_info *info)
+@@ -2078,23 +2106,13 @@ static void layout_sections(struct module *mod, struct load_info *info)
  			    || s->sh_entsize != ~0UL
  			    || !strstarts(sname, ".init"))
  				continue;
@@ -66999,7 +66218,7 @@ index 3d56b6f..2a22bd0 100644
  	}
  }
  
-@@ -2235,7 +2252,7 @@ static void layout_symtab(struct module *mod, struct load_info *info)
+@@ -2266,7 +2284,7 @@ static void layout_symtab(struct module *mod, struct load_info *info)
  
  	/* Put symbol section at end of init part of module. */
  	symsect->sh_flags |= SHF_ALLOC;
@@ -67008,7 +66227,7 @@ index 3d56b6f..2a22bd0 100644
  					 info->index.sym) | INIT_OFFSET_MASK;
  	pr_debug("\t%s\n", info->secstrings + symsect->sh_name);
  
-@@ -2250,13 +2267,13 @@ static void layout_symtab(struct module *mod, struct load_info *info)
+@@ -2281,13 +2299,13 @@ static void layout_symtab(struct module *mod, struct load_info *info)
  		}
  
  	/* Append room for core symbols at end of core part. */
@@ -67026,7 +66245,7 @@ index 3d56b6f..2a22bd0 100644
  					 info->index.str) | INIT_OFFSET_MASK;
  	pr_debug("\t%s\n", info->secstrings + strsect->sh_name);
  }
-@@ -2274,12 +2291,14 @@ static void add_kallsyms(struct module *mod, const struct load_info *info)
+@@ -2305,12 +2323,14 @@ static void add_kallsyms(struct module *mod, const struct load_info *info)
  	/* Make sure we get permanent strtab: don't use info->strtab. */
  	mod->strtab = (void *)info->sechdrs[info->index.str].sh_addr;
  
@@ -67043,7 +66262,7 @@ index 3d56b6f..2a22bd0 100644
  	src = mod->symtab;
  	*dst = *src;
  	*s++ = 0;
-@@ -2292,6 +2311,8 @@ static void add_kallsyms(struct module *mod, const struct load_info *info)
+@@ -2323,6 +2343,8 @@ static void add_kallsyms(struct module *mod, const struct load_info *info)
  		s += strlcpy(s, &mod->strtab[src->st_name], KSYM_NAME_LEN) + 1;
  	}
  	mod->core_num_syms = ndst;
@@ -67052,7 +66271,7 @@ index 3d56b6f..2a22bd0 100644
  }
  #else
  static inline void layout_symtab(struct module *mod, struct load_info *info)
-@@ -2325,17 +2346,33 @@ void * __weak module_alloc(unsigned long size)
+@@ -2356,17 +2378,33 @@ void * __weak module_alloc(unsigned long size)
  	return size == 0 ? NULL : vmalloc_exec(size);
  }
  
@@ -67091,7 +66310,7 @@ index 3d56b6f..2a22bd0 100644
  		mutex_unlock(&module_mutex);
  	}
  	return ret;
-@@ -2512,8 +2549,14 @@ static struct module *setup_load_info(struct load_info *info)
+@@ -2543,8 +2581,14 @@ static struct module *setup_load_info(struct load_info *info)
  static int check_modinfo(struct module *mod, struct load_info *info)
  {
  	const char *modmagic = get_modinfo(info, "vermagic");
@@ -67106,7 +66325,7 @@ index 3d56b6f..2a22bd0 100644
  	/* This is allowed: modprobe --force will invalidate it. */
  	if (!modmagic) {
  		err = try_to_force_load(mod, "bad vermagic");
-@@ -2536,7 +2579,7 @@ static int check_modinfo(struct module *mod, struct load_info *info)
+@@ -2567,7 +2611,7 @@ static int check_modinfo(struct module *mod, struct load_info *info)
  	}
  
  	/* Set up license info based on the info section */
@@ -67115,7 +66334,7 @@ index 3d56b6f..2a22bd0 100644
  
  	return 0;
  }
-@@ -2630,7 +2673,7 @@ static int move_module(struct module *mod, struct load_info *info)
+@@ -2661,7 +2705,7 @@ static int move_module(struct module *mod, struct load_info *info)
  	void *ptr;
  
  	/* Do the allocs. */
@@ -67124,7 +66343,7 @@ index 3d56b6f..2a22bd0 100644
  	/*
  	 * The pointer to this block is stored in the module structure
  	 * which is inside the block. Just mark it as not being a
-@@ -2640,23 +2683,50 @@ static int move_module(struct module *mod, struct load_info *info)
+@@ -2671,23 +2715,50 @@ static int move_module(struct module *mod, struct load_info *info)
  	if (!ptr)
  		return -ENOMEM;
  
@@ -67183,7 +66402,7 @@ index 3d56b6f..2a22bd0 100644
  
  	/* Transfer each section which specifies SHF_ALLOC */
  	pr_debug("final section addresses:\n");
-@@ -2667,16 +2737,45 @@ static int move_module(struct module *mod, struct load_info *info)
+@@ -2698,16 +2769,45 @@ static int move_module(struct module *mod, struct load_info *info)
  		if (!(shdr->sh_flags & SHF_ALLOC))
  			continue;
  
@@ -67236,7 +66455,7 @@ index 3d56b6f..2a22bd0 100644
  		pr_debug("\t0x%lx %s\n",
  			 (long)shdr->sh_addr, info->secstrings + shdr->sh_name);
  	}
-@@ -2727,12 +2826,12 @@ static void flush_module_icache(const struct module *mod)
+@@ -2758,12 +2858,12 @@ static void flush_module_icache(const struct module *mod)
  	 * Do it before processing of module parameters, so the module
  	 * can provide parameter accessor functions of its own.
  	 */
@@ -67255,7 +66474,7 @@ index 3d56b6f..2a22bd0 100644
  
  	set_fs(old_fs);
  }
-@@ -2802,8 +2901,10 @@ out:
+@@ -2833,8 +2933,10 @@ out:
  static void module_deallocate(struct module *mod, struct load_info *info)
  {
  	percpu_modfree(mod);
@@ -67268,7 +66487,7 @@ index 3d56b6f..2a22bd0 100644
  }
  
  int __weak module_finalize(const Elf_Ehdr *hdr,
-@@ -2867,9 +2968,38 @@ static struct module *load_module(void __user *umod,
+@@ -2898,9 +3000,38 @@ static struct module *load_module(void __user *umod,
  	if (err)
  		goto free_unload;
  
@@ -67307,7 +66526,7 @@ index 3d56b6f..2a22bd0 100644
  	/* Fix up syms, so that st_value is a pointer to location. */
  	err = simplify_symbols(mod, &info);
  	if (err < 0)
-@@ -2885,13 +3015,6 @@ static struct module *load_module(void __user *umod,
+@@ -2916,13 +3047,6 @@ static struct module *load_module(void __user *umod,
  
  	flush_module_icache(mod);
  
@@ -67321,7 +66540,7 @@ index 3d56b6f..2a22bd0 100644
  	/* Mark state as coming so strong_try_module_get() ignores us. */
  	mod->state = MODULE_STATE_COMING;
  
-@@ -2948,11 +3071,10 @@ static struct module *load_module(void __user *umod,
+@@ -2980,11 +3104,10 @@ static struct module *load_module(void __user *umod,
   unlock:
  	mutex_unlock(&module_mutex);
  	synchronize_sched();
@@ -67334,7 +66553,7 @@ index 3d56b6f..2a22bd0 100644
   free_unload:
  	module_unload_free(mod);
   free_module:
-@@ -2993,16 +3115,16 @@ SYSCALL_DEFINE3(init_module, void __user *, umod,
+@@ -3025,16 +3148,16 @@ SYSCALL_DEFINE3(init_module, void __user *, umod,
  			MODULE_STATE_COMING, mod);
  
  	/* Set RO and NX regions for core */
@@ -67359,7 +66578,7 @@ index 3d56b6f..2a22bd0 100644
  
  	do_mod_ctors(mod);
  	/* Start the module */
-@@ -3048,11 +3170,12 @@ SYSCALL_DEFINE3(init_module, void __user *, umod,
+@@ -3080,11 +3203,12 @@ SYSCALL_DEFINE3(init_module, void __user *, umod,
  	mod->strtab = mod->core_strtab;
  #endif
  	unset_module_init_ro_nx(mod);
@@ -67377,7 +66596,7 @@ index 3d56b6f..2a22bd0 100644
  	mutex_unlock(&module_mutex);
  
  	return 0;
-@@ -3083,10 +3206,16 @@ static const char *get_ksymbol(struct module *mod,
+@@ -3115,10 +3239,16 @@ static const char *get_ksymbol(struct module *mod,
  	unsigned long nextval;
  
  	/* At worse, next value is at end of module */
@@ -67397,7 +66616,7 @@ index 3d56b6f..2a22bd0 100644
  
  	/* Scan for closest preceding symbol, and next symbol. (ELF
  	   starts real symbols at 1). */
-@@ -3321,7 +3450,7 @@ static int m_show(struct seq_file *m, void *p)
+@@ -3353,7 +3483,7 @@ static int m_show(struct seq_file *m, void *p)
  	char buf[8];
  
  	seq_printf(m, "%s %u",
@@ -67406,7 +66625,7 @@ index 3d56b6f..2a22bd0 100644
  	print_unload_info(m, mod);
  
  	/* Informative for users. */
-@@ -3330,7 +3459,7 @@ static int m_show(struct seq_file *m, void *p)
+@@ -3362,7 +3492,7 @@ static int m_show(struct seq_file *m, void *p)
  		   mod->state == MODULE_STATE_COMING ? "Loading":
  		   "Live");
  	/* Used by oprofile and other similar tools. */
@@ -67415,7 +66634,7 @@ index 3d56b6f..2a22bd0 100644
  
  	/* Taints info */
  	if (mod->taints)
-@@ -3366,7 +3495,17 @@ static const struct file_operations proc_modules_operations = {
+@@ -3398,7 +3528,17 @@ static const struct file_operations proc_modules_operations = {
  
  static int __init proc_modules_init(void)
  {
@@ -67433,7 +66652,7 @@ index 3d56b6f..2a22bd0 100644
  	return 0;
  }
  module_init(proc_modules_init);
-@@ -3425,12 +3564,12 @@ struct module *__module_address(unsigned long addr)
+@@ -3457,12 +3597,12 @@ struct module *__module_address(unsigned long addr)
  {
  	struct module *mod;
  
@@ -67449,7 +66668,7 @@ index 3d56b6f..2a22bd0 100644
  			return mod;
  	return NULL;
  }
-@@ -3464,11 +3603,20 @@ bool is_module_text_address(unsigned long addr)
+@@ -3496,11 +3636,20 @@ bool is_module_text_address(unsigned long addr)
   */
  struct module *__module_text_address(unsigned long addr)
  {
@@ -67522,7 +66741,7 @@ index 0799fd3..d06ae3b 100644
  extern void debug_mutex_init(struct mutex *lock, const char *name,
  			     struct lock_class_key *key);
 diff --git a/kernel/mutex.c b/kernel/mutex.c
-index 89096dd..f91ebc5 100644
+index a307cc9..27fd2e9 100644
 --- a/kernel/mutex.c
 +++ b/kernel/mutex.c
 @@ -198,7 +198,7 @@ __mutex_lock_common(struct mutex *lock, long state, unsigned int subclass,
@@ -67544,7 +66763,7 @@ index 89096dd..f91ebc5 100644
  			mutex_release(&lock->dep_map, 1, ip);
  			spin_unlock_mutex(&lock->wait_lock, flags);
  
-@@ -249,7 +248,7 @@ __mutex_lock_common(struct mutex *lock, long state, unsigned int subclass,
+@@ -247,7 +246,7 @@ __mutex_lock_common(struct mutex *lock, long state, unsigned int subclass,
  done:
  	lock_acquired(&lock->dep_map, ip);
  	/* got the lock - rejoice! */
@@ -67553,33 +66772,6 @@ index 89096dd..f91ebc5 100644
  	mutex_set_owner(lock);
  
  	/* set it to 0 if there are no waiters left: */
-diff --git a/kernel/padata.c b/kernel/padata.c
-index b452599..5d68f4e 100644
---- a/kernel/padata.c
-+++ b/kernel/padata.c
-@@ -132,10 +132,10 @@ int padata_do_parallel(struct padata_instance *pinst,
- 	padata->pd = pd;
- 	padata->cb_cpu = cb_cpu;
- 
--	if (unlikely(atomic_read(&pd->seq_nr) == pd->max_seq_nr))
--		atomic_set(&pd->seq_nr, -1);
-+	if (unlikely(atomic_read_unchecked(&pd->seq_nr) == pd->max_seq_nr))
-+		atomic_set_unchecked(&pd->seq_nr, -1);
- 
--	padata->seq_nr = atomic_inc_return(&pd->seq_nr);
-+	padata->seq_nr = atomic_inc_return_unchecked(&pd->seq_nr);
- 
- 	target_cpu = padata_cpu_hash(padata);
- 	queue = per_cpu_ptr(pd->pqueue, target_cpu);
-@@ -444,7 +444,7 @@ static struct parallel_data *padata_alloc_pd(struct padata_instance *pinst,
- 	padata_init_pqueues(pd);
- 	padata_init_squeues(pd);
- 	setup_timer(&pd->timer, padata_reorder_timer, (unsigned long)pd);
--	atomic_set(&pd->seq_nr, -1);
-+	atomic_set_unchecked(&pd->seq_nr, -1);
- 	atomic_set(&pd->reorder_objects, 0);
- 	atomic_set(&pd->refcnt, 0);
- 	pd->pinst = pinst;
 diff --git a/kernel/panic.c b/kernel/panic.c
 index 8ed89a1..e83856a 100644
 --- a/kernel/panic.c
@@ -67800,7 +66992,7 @@ index d523593..68197a4 100644
  	register_sysrq_key('o', &sysrq_poweroff_op);
  	return 0;
 diff --git a/kernel/power/process.c b/kernel/power/process.c
-index 7aac07a..2d3c6dc 100644
+index 19db29f..33b52b6 100644
 --- a/kernel/power/process.c
 +++ b/kernel/power/process.c
 @@ -33,6 +33,7 @@ static int try_to_freeze_tasks(bool user_only)
@@ -67820,9 +67012,9 @@ index 7aac07a..2d3c6dc 100644
  		read_lock(&tasklist_lock);
  		do_each_thread(g, p) {
  			if (p == current || !freeze_task(p))
-@@ -60,9 +63,13 @@ static int try_to_freeze_tasks(bool user_only)
- 			 * try_to_stop() after schedule() in ptrace/signal
- 			 * stop sees TIF_FREEZE.
+@@ -58,9 +61,13 @@ static int try_to_freeze_tasks(bool user_only)
+ 			 * guaranteed that TASK_STOPPED/TRACED -> TASK_RUNNING
+ 			 * transition can't race with task state testing here.
  			 */
 -			if (!task_is_stopped_or_traced(p) &&
 -			    !freezer_should_skip(p))
@@ -67836,7 +67028,7 @@ index 7aac07a..2d3c6dc 100644
  		} while_each_thread(g, p);
  		read_unlock(&tasklist_lock);
  
-@@ -71,7 +78,7 @@ static int try_to_freeze_tasks(bool user_only)
+@@ -69,7 +76,7 @@ static int try_to_freeze_tasks(bool user_only)
  			todo += wq_busy;
  		}
  
@@ -67846,10 +67038,10 @@ index 7aac07a..2d3c6dc 100644
  
  		if (pm_wakeup_pending()) {
 diff --git a/kernel/printk.c b/kernel/printk.c
-index 32690a0..cd7c798 100644
+index b663c2c..1d6ba7a 100644
 --- a/kernel/printk.c
 +++ b/kernel/printk.c
-@@ -313,6 +313,11 @@ static int check_syslog_permissions(int type, bool from_file)
+@@ -316,6 +316,11 @@ static int check_syslog_permissions(int type, bool from_file)
  	if (from_file && type != SYSLOG_ACTION_OPEN)
  		return 0;
  
@@ -67923,19 +67115,19 @@ index 76b8e77..a2930e8 100644
  }
  
 diff --git a/kernel/ptrace.c b/kernel/ptrace.c
-index 00ab2ca..d237f61 100644
+index ee8d49b..bd3d790 100644
 --- a/kernel/ptrace.c
 +++ b/kernel/ptrace.c
-@@ -285,7 +285,7 @@ static int ptrace_attach(struct task_struct *task, long request,
- 	task->ptrace = PT_PTRACED;
+@@ -280,7 +280,7 @@ static int ptrace_attach(struct task_struct *task, long request,
+ 
  	if (seize)
- 		task->ptrace |= PT_SEIZED;
+ 		flags |= PT_SEIZED;
 -	if (ns_capable(task_user_ns(task), CAP_SYS_PTRACE))
 +	if (ns_capable_nolog(task_user_ns(task), CAP_SYS_PTRACE))
- 		task->ptrace |= PT_PTRACE_CAP;
+ 		flags |= PT_PTRACE_CAP;
+ 	task->ptrace = flags;
  
- 	__ptrace_link(task, current);
-@@ -491,7 +491,7 @@ int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst
+@@ -487,7 +487,7 @@ int ptrace_readdata(struct task_struct *tsk, unsigned long src, char __user *dst
  				break;
  			return -EIO;
  		}
@@ -67944,7 +67136,7 @@ index 00ab2ca..d237f61 100644
  			return -EFAULT;
  		copied += retval;
  		src += retval;
-@@ -688,7 +688,7 @@ int ptrace_request(struct task_struct *child, long request,
+@@ -672,7 +672,7 @@ int ptrace_request(struct task_struct *child, long request,
  	bool seized = child->ptrace & PT_SEIZED;
  	int ret = -EIO;
  	siginfo_t siginfo, *si;
@@ -67953,7 +67145,7 @@ index 00ab2ca..d237f61 100644
  	unsigned long __user *datalp = datavp;
  	unsigned long flags;
  
-@@ -890,14 +890,21 @@ SYSCALL_DEFINE4(ptrace, long, request, long, pid, unsigned long, addr,
+@@ -874,14 +874,21 @@ SYSCALL_DEFINE4(ptrace, long, request, long, pid, unsigned long, addr,
  		goto out;
  	}
  
@@ -67963,7 +67155,7 @@ index 00ab2ca..d237f61 100644
 +	}
 +
  	if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
- 		ret = ptrace_attach(child, request, data);
+ 		ret = ptrace_attach(child, request, addr, data);
  		/*
  		 * Some architectures need to do book-keeping after
  		 * a ptrace attach.
@@ -67976,7 +67168,7 @@ index 00ab2ca..d237f61 100644
  		goto out_put_task_struct;
  	}
  
-@@ -923,7 +930,7 @@ int generic_ptrace_peekdata(struct task_struct *tsk, unsigned long addr,
+@@ -907,7 +914,7 @@ int generic_ptrace_peekdata(struct task_struct *tsk, unsigned long addr,
  	copied = access_process_vm(tsk, addr, &tmp, sizeof(tmp), 0);
  	if (copied != sizeof(tmp))
  		return -EIO;
@@ -67985,7 +67177,7 @@ index 00ab2ca..d237f61 100644
  }
  
  int generic_ptrace_pokedata(struct task_struct *tsk, unsigned long addr,
-@@ -1033,14 +1040,21 @@ asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
+@@ -1017,14 +1024,21 @@ asmlinkage long compat_sys_ptrace(compat_long_t request, compat_long_t pid,
  		goto out;
  	}
  
@@ -67995,7 +67187,7 @@ index 00ab2ca..d237f61 100644
 +	}
 +
  	if (request == PTRACE_ATTACH || request == PTRACE_SEIZE) {
- 		ret = ptrace_attach(child, request, data);
+ 		ret = ptrace_attach(child, request, addr, data);
  		/*
  		 * Some architectures need to do book-keeping after
  		 * a ptrace attach.
@@ -68009,7 +67201,7 @@ index 00ab2ca..d237f61 100644
  	}
  
 diff --git a/kernel/rcutiny.c b/kernel/rcutiny.c
-index 977296d..c4744dc 100644
+index 37a5444..eec170a 100644
 --- a/kernel/rcutiny.c
 +++ b/kernel/rcutiny.c
 @@ -46,7 +46,7 @@
@@ -68021,7 +67213,7 @@ index 977296d..c4744dc 100644
  static void __call_rcu(struct rcu_head *head,
  		       void (*func)(struct rcu_head *rcu),
  		       struct rcu_ctrlblk *rcp);
-@@ -297,7 +297,7 @@ static void __rcu_process_callbacks(struct rcu_ctrlblk *rcp)
+@@ -307,7 +307,7 @@ static void __rcu_process_callbacks(struct rcu_ctrlblk *rcp)
  				      rcu_is_callbacks_kthread()));
  }
  
@@ -68031,10 +67223,10 @@ index 977296d..c4744dc 100644
  	__rcu_process_callbacks(&rcu_sched_ctrlblk);
  	__rcu_process_callbacks(&rcu_bh_ctrlblk);
 diff --git a/kernel/rcutiny_plugin.h b/kernel/rcutiny_plugin.h
-index 9cb1ae4..aac7d3e 100644
+index 22ecea0..3789898 100644
 --- a/kernel/rcutiny_plugin.h
 +++ b/kernel/rcutiny_plugin.h
-@@ -920,7 +920,7 @@ static int rcu_kthread(void *arg)
+@@ -955,7 +955,7 @@ static int rcu_kthread(void *arg)
  		have_rcu_kthread_work = morework;
  		local_irq_restore(flags);
  		if (work)
@@ -68044,10 +67236,10 @@ index 9cb1ae4..aac7d3e 100644
  	}
  
 diff --git a/kernel/rcutorture.c b/kernel/rcutorture.c
-index a58ac28..196a3d8 100644
+index a89b381..efdcad8 100644
 --- a/kernel/rcutorture.c
 +++ b/kernel/rcutorture.c
-@@ -148,12 +148,12 @@ static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_count) =
+@@ -158,12 +158,12 @@ static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_count) =
  	{ 0 };
  static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_batch) =
  	{ 0 };
@@ -68066,7 +67258,7 @@ index a58ac28..196a3d8 100644
  static long n_rcu_torture_boost_ktrerror;
  static long n_rcu_torture_boost_rterror;
  static long n_rcu_torture_boost_failure;
-@@ -243,11 +243,11 @@ rcu_torture_alloc(void)
+@@ -253,11 +253,11 @@ rcu_torture_alloc(void)
  
  	spin_lock_bh(&rcu_torture_lock);
  	if (list_empty(&rcu_torture_freelist)) {
@@ -68080,7 +67272,7 @@ index a58ac28..196a3d8 100644
  	p = rcu_torture_freelist.next;
  	list_del_init(p);
  	spin_unlock_bh(&rcu_torture_lock);
-@@ -260,7 +260,7 @@ rcu_torture_alloc(void)
+@@ -270,7 +270,7 @@ rcu_torture_alloc(void)
  static void
  rcu_torture_free(struct rcu_torture *p)
  {
@@ -68089,7 +67281,7 @@ index a58ac28..196a3d8 100644
  	spin_lock_bh(&rcu_torture_lock);
  	list_add_tail(&p->rtort_free, &rcu_torture_freelist);
  	spin_unlock_bh(&rcu_torture_lock);
-@@ -380,7 +380,7 @@ rcu_torture_cb(struct rcu_head *p)
+@@ -390,7 +390,7 @@ rcu_torture_cb(struct rcu_head *p)
  	i = rp->rtort_pipe_count;
  	if (i > RCU_TORTURE_PIPE_LEN)
  		i = RCU_TORTURE_PIPE_LEN;
@@ -68098,7 +67290,7 @@ index a58ac28..196a3d8 100644
  	if (++rp->rtort_pipe_count >= RCU_TORTURE_PIPE_LEN) {
  		rp->rtort_mbtest = 0;
  		rcu_torture_free(rp);
-@@ -427,7 +427,7 @@ static void rcu_sync_torture_deferred_free(struct rcu_torture *p)
+@@ -437,7 +437,7 @@ static void rcu_sync_torture_deferred_free(struct rcu_torture *p)
  		i = rp->rtort_pipe_count;
  		if (i > RCU_TORTURE_PIPE_LEN)
  			i = RCU_TORTURE_PIPE_LEN;
@@ -68107,7 +67299,7 @@ index a58ac28..196a3d8 100644
  		if (++rp->rtort_pipe_count >= RCU_TORTURE_PIPE_LEN) {
  			rp->rtort_mbtest = 0;
  			list_del(&rp->rtort_free);
-@@ -916,7 +916,7 @@ rcu_torture_writer(void *arg)
+@@ -926,7 +926,7 @@ rcu_torture_writer(void *arg)
  			i = old_rp->rtort_pipe_count;
  			if (i > RCU_TORTURE_PIPE_LEN)
  				i = RCU_TORTURE_PIPE_LEN;
@@ -68116,25 +67308,25 @@ index a58ac28..196a3d8 100644
  			old_rp->rtort_pipe_count++;
  			cur_ops->deferred_free(old_rp);
  		}
-@@ -997,7 +997,7 @@ static void rcu_torture_timer(unsigned long unused)
- 		return;
+@@ -1007,7 +1007,7 @@ static void rcu_torture_timer(unsigned long unused)
  	}
+ 	do_trace_rcu_torture_read(cur_ops->name, &p->rtort_rcu);
  	if (p->rtort_mbtest == 0)
 -		atomic_inc(&n_rcu_torture_mberror);
 +		atomic_inc_unchecked(&n_rcu_torture_mberror);
  	spin_lock(&rand_lock);
  	cur_ops->read_delay(&rand);
  	n_rcu_torture_timers++;
-@@ -1061,7 +1061,7 @@ rcu_torture_reader(void *arg)
- 			continue;
+@@ -1071,7 +1071,7 @@ rcu_torture_reader(void *arg)
  		}
+ 		do_trace_rcu_torture_read(cur_ops->name, &p->rtort_rcu);
  		if (p->rtort_mbtest == 0)
 -			atomic_inc(&n_rcu_torture_mberror);
 +			atomic_inc_unchecked(&n_rcu_torture_mberror);
  		cur_ops->read_delay(&rand);
  		preempt_disable();
  		pipe_count = p->rtort_pipe_count;
-@@ -1123,10 +1123,10 @@ rcu_torture_printk(char *page)
+@@ -1133,10 +1133,10 @@ rcu_torture_printk(char *page)
  		       rcu_torture_current,
  		       rcu_torture_current_version,
  		       list_empty(&rcu_torture_freelist),
@@ -68149,7 +67341,7 @@ index a58ac28..196a3d8 100644
  		       n_rcu_torture_boost_ktrerror,
  		       n_rcu_torture_boost_rterror,
  		       n_rcu_torture_boost_failure,
-@@ -1136,7 +1136,7 @@ rcu_torture_printk(char *page)
+@@ -1146,7 +1146,7 @@ rcu_torture_printk(char *page)
  		       n_online_attempts,
  		       n_offline_successes,
  		       n_offline_attempts);
@@ -68158,7 +67350,7 @@ index a58ac28..196a3d8 100644
  	    n_rcu_torture_boost_ktrerror != 0 ||
  	    n_rcu_torture_boost_rterror != 0 ||
  	    n_rcu_torture_boost_failure != 0)
-@@ -1144,7 +1144,7 @@ rcu_torture_printk(char *page)
+@@ -1154,7 +1154,7 @@ rcu_torture_printk(char *page)
  	cnt += sprintf(&page[cnt], "\n%s%s ", torture_type, TORTURE_FLAG);
  	if (i > 1) {
  		cnt += sprintf(&page[cnt], "!!! ");
@@ -68167,7 +67359,7 @@ index a58ac28..196a3d8 100644
  		WARN_ON_ONCE(1);
  	}
  	cnt += sprintf(&page[cnt], "Reader Pipe: ");
-@@ -1158,7 +1158,7 @@ rcu_torture_printk(char *page)
+@@ -1168,7 +1168,7 @@ rcu_torture_printk(char *page)
  	cnt += sprintf(&page[cnt], "Free-Block Circulation: ");
  	for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
  		cnt += sprintf(&page[cnt], " %d",
@@ -68176,16 +67368,16 @@ index a58ac28..196a3d8 100644
  	}
  	cnt += sprintf(&page[cnt], "\n");
  	if (cur_ops->stats)
-@@ -1600,7 +1600,7 @@ rcu_torture_cleanup(void)
+@@ -1676,7 +1676,7 @@ rcu_torture_cleanup(void)
  
  	if (cur_ops->cleanup)
  		cur_ops->cleanup();
 -	if (atomic_read(&n_rcu_torture_error))
 +	if (atomic_read_unchecked(&n_rcu_torture_error))
  		rcu_torture_print_module_parms(cur_ops, "End of test: FAILURE");
- 	else
- 		rcu_torture_print_module_parms(cur_ops, "End of test: SUCCESS");
-@@ -1664,17 +1664,17 @@ rcu_torture_init(void)
+ 	else if (n_online_successes != n_online_attempts ||
+ 		 n_offline_successes != n_offline_attempts)
+@@ -1744,17 +1744,17 @@ rcu_torture_init(void)
  
  	rcu_torture_current = NULL;
  	rcu_torture_current_version = 0;
@@ -68210,10 +67402,10 @@ index a58ac28..196a3d8 100644
  		for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
  			per_cpu(rcu_torture_count, cpu)[i] = 0;
 diff --git a/kernel/rcutree.c b/kernel/rcutree.c
-index 6c4a672..70f3202 100644
+index d0c5baf..109b2e7 100644
 --- a/kernel/rcutree.c
 +++ b/kernel/rcutree.c
-@@ -363,9 +363,9 @@ static void rcu_idle_enter_common(struct rcu_dynticks *rdtp, long long oldval)
+@@ -357,9 +357,9 @@ static void rcu_idle_enter_common(struct rcu_dynticks *rdtp, long long oldval)
  	rcu_prepare_for_idle(smp_processor_id());
  	/* CPUs seeing atomic_inc() must see prior RCU read-side crit sects */
  	smp_mb__before_atomic_inc();  /* See above. */
@@ -68222,10 +67414,10 @@ index 6c4a672..70f3202 100644
  	smp_mb__after_atomic_inc();  /* Force ordering with next sojourn. */
 -	WARN_ON_ONCE(atomic_read(&rdtp->dynticks) & 0x1);
 +	WARN_ON_ONCE(atomic_read_unchecked(&rdtp->dynticks) & 0x1);
- }
  
- /**
-@@ -438,10 +438,10 @@ void rcu_irq_exit(void)
+ 	/*
+ 	 * The idle task is not permitted to enter the idle loop while
+@@ -448,10 +448,10 @@ void rcu_irq_exit(void)
  static void rcu_idle_exit_common(struct rcu_dynticks *rdtp, long long oldval)
  {
  	smp_mb__before_atomic_inc();  /* Force ordering w/previous sojourn. */
@@ -68238,7 +67430,7 @@ index 6c4a672..70f3202 100644
  	rcu_cleanup_after_idle(smp_processor_id());
  	trace_rcu_dyntick("End", oldval, rdtp->dynticks_nesting);
  	if (!is_idle_task(current)) {
-@@ -531,14 +531,14 @@ void rcu_nmi_enter(void)
+@@ -545,14 +545,14 @@ void rcu_nmi_enter(void)
  	struct rcu_dynticks *rdtp = &__get_cpu_var(rcu_dynticks);
  
  	if (rdtp->dynticks_nmi_nesting == 0 &&
@@ -68256,7 +67448,7 @@ index 6c4a672..70f3202 100644
  }
  
  /**
-@@ -557,9 +557,9 @@ void rcu_nmi_exit(void)
+@@ -571,9 +571,9 @@ void rcu_nmi_exit(void)
  		return;
  	/* CPUs seeing atomic_inc() must see prior RCU read-side crit sects */
  	smp_mb__before_atomic_inc();  /* See above. */
@@ -68268,7 +67460,7 @@ index 6c4a672..70f3202 100644
  }
  
  #ifdef CONFIG_PROVE_RCU
-@@ -575,7 +575,7 @@ int rcu_is_cpu_idle(void)
+@@ -589,7 +589,7 @@ int rcu_is_cpu_idle(void)
  	int ret;
  
  	preempt_disable();
@@ -68277,7 +67469,7 @@ index 6c4a672..70f3202 100644
  	preempt_enable();
  	return ret;
  }
-@@ -604,7 +604,7 @@ int rcu_is_cpu_rrupt_from_idle(void)
+@@ -659,7 +659,7 @@ int rcu_is_cpu_rrupt_from_idle(void)
   */
  static int dyntick_save_progress_counter(struct rcu_data *rdp)
  {
@@ -68286,7 +67478,7 @@ index 6c4a672..70f3202 100644
  	return (rdp->dynticks_snap & 0x1) == 0;
  }
  
-@@ -619,7 +619,7 @@ static int rcu_implicit_dynticks_qs(struct rcu_data *rdp)
+@@ -674,7 +674,7 @@ static int rcu_implicit_dynticks_qs(struct rcu_data *rdp)
  	unsigned int curr;
  	unsigned int snap;
  
@@ -68295,7 +67487,20 @@ index 6c4a672..70f3202 100644
  	snap = (unsigned int)rdp->dynticks_snap;
  
  	/*
-@@ -1667,7 +1667,7 @@ __rcu_process_callbacks(struct rcu_state *rsp, struct rcu_data *rdp)
+@@ -704,10 +704,10 @@ static int jiffies_till_stall_check(void)
+ 	 * for CONFIG_RCU_CPU_STALL_TIMEOUT.
+ 	 */
+ 	if (till_stall_check < 3) {
+-		ACCESS_ONCE(rcu_cpu_stall_timeout) = 3;
++		ACCESS_ONCE_RW(rcu_cpu_stall_timeout) = 3;
+ 		till_stall_check = 3;
+ 	} else if (till_stall_check > 300) {
+-		ACCESS_ONCE(rcu_cpu_stall_timeout) = 300;
++		ACCESS_ONCE_RW(rcu_cpu_stall_timeout) = 300;
+ 		till_stall_check = 300;
+ 	}
+ 	return till_stall_check * HZ + RCU_STALL_DELAY_DELTA;
+@@ -1766,7 +1766,7 @@ __rcu_process_callbacks(struct rcu_state *rsp, struct rcu_data *rdp)
  /*
   * Do RCU core processing for the current CPU.
   */
@@ -68304,55 +67509,9 @@ index 6c4a672..70f3202 100644
  {
  	trace_rcu_utilization("Start RCU core");
  	__rcu_process_callbacks(&rcu_sched_state,
-@@ -2030,7 +2030,7 @@ rcu_boot_init_percpu_data(int cpu, struct rcu_state *rsp)
- 	rdp->qlen = 0;
- 	rdp->dynticks = &per_cpu(rcu_dynticks, cpu);
- 	WARN_ON_ONCE(rdp->dynticks->dynticks_nesting != DYNTICK_TASK_NESTING);
--	WARN_ON_ONCE(atomic_read(&rdp->dynticks->dynticks) != 1);
-+	WARN_ON_ONCE(atomic_read_unchecked(&rdp->dynticks->dynticks) != 1);
- 	rdp->cpu = cpu;
- 	rdp->rsp = rsp;
- 	raw_spin_unlock_irqrestore(&rnp->lock, flags);
-@@ -2058,8 +2058,8 @@ rcu_init_percpu_data(int cpu, struct rcu_state *rsp, int preemptible)
- 	rdp->n_force_qs_snap = rsp->n_force_qs;
- 	rdp->blimit = blimit;
- 	rdp->dynticks->dynticks_nesting = DYNTICK_TASK_NESTING;
--	atomic_set(&rdp->dynticks->dynticks,
--		   (atomic_read(&rdp->dynticks->dynticks) & ~0x1) + 1);
-+	atomic_set_unchecked(&rdp->dynticks->dynticks,
-+		   (atomic_read_unchecked(&rdp->dynticks->dynticks) & ~0x1) + 1);
- 	rcu_prepare_for_idle_init(cpu);
- 	raw_spin_unlock(&rnp->lock);		/* irqs remain disabled. */
- 
-diff --git a/kernel/rcutree.h b/kernel/rcutree.h
-index fddff92..2c08359 100644
---- a/kernel/rcutree.h
-+++ b/kernel/rcutree.h
-@@ -87,7 +87,7 @@ struct rcu_dynticks {
- 	long long dynticks_nesting; /* Track irq/process nesting level. */
- 				    /* Process level is worth LLONG_MAX/2. */
- 	int dynticks_nmi_nesting;   /* Track NMI nesting level. */
--	atomic_t dynticks;	    /* Even value for idle, else odd. */
-+	atomic_unchecked_t dynticks;/* Even value for idle, else odd. */
- };
- 
- /* RCU's kthread states for tracing. */
-diff --git a/kernel/rcutree_plugin.h b/kernel/rcutree_plugin.h
-index 8bb35d7..6ea0a463 100644
---- a/kernel/rcutree_plugin.h
-+++ b/kernel/rcutree_plugin.h
-@@ -850,7 +850,7 @@ void synchronize_rcu_expedited(void)
- 
- 	/* Clean up and exit. */
- 	smp_mb(); /* ensure expedited GP seen before counter increment. */
--	ACCESS_ONCE(sync_rcu_preempt_exp_count)++;
-+	ACCESS_ONCE_RW(sync_rcu_preempt_exp_count)++;
- unlock_mb_ret:
- 	mutex_unlock(&sync_rcu_preempt_exp_mutex);
- mb_ret:
-@@ -1833,8 +1833,8 @@ EXPORT_SYMBOL_GPL(synchronize_sched_expedited);
- 
- #else /* #ifndef CONFIG_SMP */
+@@ -1949,8 +1949,8 @@ void synchronize_rcu_bh(void)
+ }
+ EXPORT_SYMBOL_GPL(synchronize_rcu_bh);
  
 -static atomic_t sync_sched_expedited_started = ATOMIC_INIT(0);
 -static atomic_t sync_sched_expedited_done = ATOMIC_INIT(0);
@@ -68361,16 +67520,16 @@ index 8bb35d7..6ea0a463 100644
  
  static int synchronize_sched_expedited_cpu_stop(void *data)
  {
-@@ -1889,7 +1889,7 @@ void synchronize_sched_expedited(void)
+@@ -2011,7 +2011,7 @@ void synchronize_sched_expedited(void)
  	int firstsnap, s, snap, trycount = 0;
  
  	/* Note that atomic_inc_return() implies full memory barrier. */
 -	firstsnap = snap = atomic_inc_return(&sync_sched_expedited_started);
 +	firstsnap = snap = atomic_inc_return_unchecked(&sync_sched_expedited_started);
  	get_online_cpus();
+ 	WARN_ON_ONCE(cpu_is_offline(raw_smp_processor_id()));
  
- 	/*
-@@ -1910,7 +1910,7 @@ void synchronize_sched_expedited(void)
+@@ -2033,7 +2033,7 @@ void synchronize_sched_expedited(void)
  		}
  
  		/* Check to see if someone else did our work for us. */
@@ -68379,7 +67538,7 @@ index 8bb35d7..6ea0a463 100644
  		if (UINT_CMP_GE((unsigned)s, (unsigned)firstsnap)) {
  			smp_mb(); /* ensure test happens before caller kfree */
  			return;
-@@ -1925,7 +1925,7 @@ void synchronize_sched_expedited(void)
+@@ -2048,7 +2048,7 @@ void synchronize_sched_expedited(void)
  		 * grace period works for us.
  		 */
  		get_online_cpus();
@@ -68388,7 +67547,7 @@ index 8bb35d7..6ea0a463 100644
  		smp_mb(); /* ensure read is before try_stop_cpus(). */
  	}
  
-@@ -1936,12 +1936,12 @@ void synchronize_sched_expedited(void)
+@@ -2059,12 +2059,12 @@ void synchronize_sched_expedited(void)
  	 * than we did beat us to the punch.
  	 */
  	do {
@@ -68403,8 +67562,54 @@ index 8bb35d7..6ea0a463 100644
  
  	put_online_cpus();
  }
+@@ -2262,7 +2262,7 @@ rcu_boot_init_percpu_data(int cpu, struct rcu_state *rsp)
+ 	rdp->qlen = 0;
+ 	rdp->dynticks = &per_cpu(rcu_dynticks, cpu);
+ 	WARN_ON_ONCE(rdp->dynticks->dynticks_nesting != DYNTICK_TASK_EXIT_IDLE);
+-	WARN_ON_ONCE(atomic_read(&rdp->dynticks->dynticks) != 1);
++	WARN_ON_ONCE(atomic_read_unchecked(&rdp->dynticks->dynticks) != 1);
+ 	rdp->cpu = cpu;
+ 	rdp->rsp = rsp;
+ 	raw_spin_unlock_irqrestore(&rnp->lock, flags);
+@@ -2290,8 +2290,8 @@ rcu_init_percpu_data(int cpu, struct rcu_state *rsp, int preemptible)
+ 	rdp->n_force_qs_snap = rsp->n_force_qs;
+ 	rdp->blimit = blimit;
+ 	rdp->dynticks->dynticks_nesting = DYNTICK_TASK_EXIT_IDLE;
+-	atomic_set(&rdp->dynticks->dynticks,
+-		   (atomic_read(&rdp->dynticks->dynticks) & ~0x1) + 1);
++	atomic_set_unchecked(&rdp->dynticks->dynticks,
++		   (atomic_read_unchecked(&rdp->dynticks->dynticks) & ~0x1) + 1);
+ 	rcu_prepare_for_idle_init(cpu);
+ 	raw_spin_unlock(&rnp->lock);		/* irqs remain disabled. */
+ 
+diff --git a/kernel/rcutree.h b/kernel/rcutree.h
+index cdd1be0..5b2efb4 100644
+--- a/kernel/rcutree.h
++++ b/kernel/rcutree.h
+@@ -87,7 +87,7 @@ struct rcu_dynticks {
+ 	long long dynticks_nesting; /* Track irq/process nesting level. */
+ 				    /* Process level is worth LLONG_MAX/2. */
+ 	int dynticks_nmi_nesting;   /* Track NMI nesting level. */
+-	atomic_t dynticks;	    /* Even value for idle, else odd. */
++	atomic_unchecked_t dynticks;/* Even value for idle, else odd. */
+ };
+ 
+ /* RCU's kthread states for tracing. */
+diff --git a/kernel/rcutree_plugin.h b/kernel/rcutree_plugin.h
+index c023464..7f57225 100644
+--- a/kernel/rcutree_plugin.h
++++ b/kernel/rcutree_plugin.h
+@@ -909,7 +909,7 @@ void synchronize_rcu_expedited(void)
+ 
+ 	/* Clean up and exit. */
+ 	smp_mb(); /* ensure expedited GP seen before counter increment. */
+-	ACCESS_ONCE(sync_rcu_preempt_exp_count)++;
++	ACCESS_ONCE_RW(sync_rcu_preempt_exp_count)++;
+ unlock_mb_ret:
+ 	mutex_unlock(&sync_rcu_preempt_exp_mutex);
+ mb_ret:
 diff --git a/kernel/rcutree_trace.c b/kernel/rcutree_trace.c
-index 654cfe6..c0b28e2 100644
+index ed459ed..a03c3fa 100644
 --- a/kernel/rcutree_trace.c
 +++ b/kernel/rcutree_trace.c
 @@ -68,7 +68,7 @@ static void print_one_rcu_data(struct seq_file *m, struct rcu_data *rdp)
@@ -68426,7 +67631,7 @@ index 654cfe6..c0b28e2 100644
  		   rdp->dynticks->dynticks_nmi_nesting,
  		   rdp->dynticks_fqs);
 diff --git a/kernel/resource.c b/kernel/resource.c
-index 7640b3a..5879283 100644
+index 7e8ea66..1efd11f 100644
 --- a/kernel/resource.c
 +++ b/kernel/resource.c
 @@ -141,8 +141,18 @@ static const struct file_operations proc_iomem_operations = {
@@ -68543,7 +67748,7 @@ index 98ec494..4241d6d 100644
  
  	default:
 diff --git a/kernel/sched/auto_group.c b/kernel/sched/auto_group.c
-index e8a1f83..363d17d 100644
+index 0984a21..939f183 100644
 --- a/kernel/sched/auto_group.c
 +++ b/kernel/sched/auto_group.c
 @@ -11,7 +11,7 @@
@@ -68565,10 +67770,10 @@ index e8a1f83..363d17d 100644
  #ifdef CONFIG_RT_GROUP_SCHED
  	/*
 diff --git a/kernel/sched/core.c b/kernel/sched/core.c
-index 478a04c..e16339a 100644
+index e5212ae..2fcf98d 100644
 --- a/kernel/sched/core.c
 +++ b/kernel/sched/core.c
-@@ -3851,6 +3851,8 @@ int can_nice(const struct task_struct *p, const int nice)
+@@ -3907,6 +3907,8 @@ int can_nice(const struct task_struct *p, const int nice)
  	/* convert nice value [19,-20] to rlimit style value [1,40] */
  	int nice_rlim = 20 - nice;
  
@@ -68577,7 +67782,7 @@ index 478a04c..e16339a 100644
  	return (nice_rlim <= task_rlimit(p, RLIMIT_NICE) ||
  		capable(CAP_SYS_NICE));
  }
-@@ -3884,7 +3886,8 @@ SYSCALL_DEFINE1(nice, int, increment)
+@@ -3940,7 +3942,8 @@ SYSCALL_DEFINE1(nice, int, increment)
  	if (nice > 19)
  		nice = 19;
  
@@ -68587,7 +67792,7 @@ index 478a04c..e16339a 100644
  		return -EPERM;
  
  	retval = security_task_setnice(current, nice);
-@@ -4041,6 +4044,7 @@ recheck:
+@@ -4097,6 +4100,7 @@ recheck:
  			unsigned long rlim_rtprio =
  					task_rlimit(p, RLIMIT_RTPRIO);
  
@@ -68596,10 +67801,10 @@ index 478a04c..e16339a 100644
  			if (policy != p->policy && !rlim_rtprio)
  				return -EPERM;
 diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
-index aca16b8..8e3acc4 100644
+index e955364..eacd2a4 100644
 --- a/kernel/sched/fair.c
 +++ b/kernel/sched/fair.c
-@@ -5147,7 +5147,7 @@ static void nohz_idle_balance(int this_cpu, enum cpu_idle_type idle) { }
+@@ -5107,7 +5107,7 @@ static void nohz_idle_balance(int this_cpu, enum cpu_idle_type idle) { }
   * run_rebalance_domains is triggered when needed from the scheduler tick.
   * Also triggered for nohz idle balancing (with nohz_balancing_kick set).
   */
@@ -68609,10 +67814,10 @@ index aca16b8..8e3acc4 100644
  	int this_cpu = smp_processor_id();
  	struct rq *this_rq = cpu_rq(this_cpu);
 diff --git a/kernel/signal.c b/kernel/signal.c
-index b09cf3b..b291c66 100644
+index 17afcaf..4500b05 100644
 --- a/kernel/signal.c
 +++ b/kernel/signal.c
-@@ -46,12 +46,12 @@ static struct kmem_cache *sigqueue_cachep;
+@@ -47,12 +47,12 @@ static struct kmem_cache *sigqueue_cachep;
  
  int print_fatal_signals __read_mostly;
  
@@ -68628,8 +67833,8 @@ index b09cf3b..b291c66 100644
  	/* Is it explicitly or implicitly ignored? */
  	return handler == SIG_IGN ||
 @@ -61,7 +61,7 @@ static int sig_handler_ignored(void __user *handler, int sig)
- static int sig_task_ignored(struct task_struct *t, int sig,
- 		int from_ancestor_ns)
+ 
+ static int sig_task_ignored(struct task_struct *t, int sig, bool force)
  {
 -	void __user *handler;
 +	__sighandler_t handler;
@@ -68669,7 +67874,7 @@ index b09cf3b..b291c66 100644
  	return security_task_kill(t, info, sig, 0);
  }
  
-@@ -1197,7 +1207,7 @@ __group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
+@@ -1204,7 +1214,7 @@ __group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
  	return send_signal(sig, info, p, 1);
  }
  
@@ -68678,7 +67883,7 @@ index b09cf3b..b291c66 100644
  specific_send_sig_info(int sig, struct siginfo *info, struct task_struct *t)
  {
  	return send_signal(sig, info, t, 0);
-@@ -1234,6 +1244,7 @@ force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
+@@ -1241,6 +1251,7 @@ force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
  	unsigned long int flags;
  	int ret, blocked, ignored;
  	struct k_sigaction *action;
@@ -68686,7 +67891,7 @@ index b09cf3b..b291c66 100644
  
  	spin_lock_irqsave(&t->sighand->siglock, flags);
  	action = &t->sighand->action[sig-1];
-@@ -1248,9 +1259,18 @@ force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
+@@ -1255,9 +1266,18 @@ force_sig_info(int sig, struct siginfo *info, struct task_struct *t)
  	}
  	if (action->sa.sa_handler == SIG_DFL)
  		t->signal->flags &= ~SIGNAL_UNKILLABLE;
@@ -68705,7 +67910,7 @@ index b09cf3b..b291c66 100644
  	return ret;
  }
  
-@@ -1317,8 +1337,11 @@ int group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
+@@ -1324,8 +1344,11 @@ int group_send_sig_info(int sig, struct siginfo *info, struct task_struct *p)
  	ret = check_kill_permission(sig, info, p);
  	rcu_read_unlock();
  
@@ -68718,7 +67923,7 @@ index b09cf3b..b291c66 100644
  
  	return ret;
  }
-@@ -2829,7 +2852,15 @@ do_send_specific(pid_t tgid, pid_t pid, int sig, struct siginfo *info)
+@@ -2840,7 +2863,15 @@ do_send_specific(pid_t tgid, pid_t pid, int sig, struct siginfo *info)
  	int error = -ESRCH;
  
  	rcu_read_lock();
@@ -68736,7 +67941,7 @@ index b09cf3b..b291c66 100644
  		error = check_kill_permission(sig, info, p);
  		/*
 diff --git a/kernel/smp.c b/kernel/smp.c
-index db197d6..17aef0b 100644
+index 2f8b10e..a41bc14 100644
 --- a/kernel/smp.c
 +++ b/kernel/smp.c
 @@ -580,22 +580,22 @@ int smp_call_function(smp_call_func_t func, void *info, int wait)
@@ -68767,7 +67972,7 @@ index db197d6..17aef0b 100644
  	raw_spin_unlock_irq(&call_function.lock);
  }
 diff --git a/kernel/softirq.c b/kernel/softirq.c
-index 4eb3a0f..6f1fa81 100644
+index 671f959..91c51cb 100644
 --- a/kernel/softirq.c
 +++ b/kernel/softirq.c
 @@ -56,7 +56,7 @@ static struct softirq_action softirq_vec[NR_SOFTIRQS] __cacheline_aligned_in_smp
@@ -68788,8 +67993,8 @@ index 4eb3a0f..6f1fa81 100644
  			trace_softirq_exit(vec_nr);
  			if (unlikely(prev_count != preempt_count())) {
  				printk(KERN_ERR "huh, entered softirq %u %s %p"
-@@ -385,9 +385,11 @@ void raise_softirq(unsigned int nr)
- 	local_irq_restore(flags);
+@@ -381,9 +381,11 @@ void __raise_softirq_irqoff(unsigned int nr)
+ 	or_softirq_pending(1UL << nr);
  }
  
 -void open_softirq(int nr, void (*action)(struct softirq_action *))
@@ -68802,7 +68007,7 @@ index 4eb3a0f..6f1fa81 100644
  }
  
  /*
-@@ -441,7 +443,7 @@ void __tasklet_hi_schedule_first(struct tasklet_struct *t)
+@@ -437,7 +439,7 @@ void __tasklet_hi_schedule_first(struct tasklet_struct *t)
  
  EXPORT_SYMBOL(__tasklet_hi_schedule_first);
  
@@ -68811,7 +68016,7 @@ index 4eb3a0f..6f1fa81 100644
  {
  	struct tasklet_struct *list;
  
-@@ -476,7 +478,7 @@ static void tasklet_action(struct softirq_action *a)
+@@ -472,7 +474,7 @@ static void tasklet_action(struct softirq_action *a)
  	}
  }
  
@@ -68821,7 +68026,7 @@ index 4eb3a0f..6f1fa81 100644
  	struct tasklet_struct *list;
  
 diff --git a/kernel/sys.c b/kernel/sys.c
-index 888d227..f04b318 100644
+index e7006eb..8fb7c51 100644
 --- a/kernel/sys.c
 +++ b/kernel/sys.c
 @@ -158,6 +158,12 @@ static int set_one_prio(struct task_struct *p, int niceval, int error)
@@ -68837,7 +68042,7 @@ index 888d227..f04b318 100644
  	no_nice = security_task_setnice(p, niceval);
  	if (no_nice) {
  		error = no_nice;
-@@ -572,6 +578,9 @@ SYSCALL_DEFINE2(setregid, gid_t, rgid, gid_t, egid)
+@@ -581,6 +587,9 @@ SYSCALL_DEFINE2(setregid, gid_t, rgid, gid_t, egid)
  			goto error;
  	}
  
@@ -68847,7 +68052,7 @@ index 888d227..f04b318 100644
  	if (rgid != (gid_t) -1 ||
  	    (egid != (gid_t) -1 && egid != old->gid))
  		new->sgid = new->egid;
-@@ -601,6 +610,10 @@ SYSCALL_DEFINE1(setgid, gid_t, gid)
+@@ -610,6 +619,10 @@ SYSCALL_DEFINE1(setgid, gid_t, gid)
  	old = current_cred();
  
  	retval = -EPERM;
@@ -68858,7 +68063,7 @@ index 888d227..f04b318 100644
  	if (nsown_capable(CAP_SETGID))
  		new->gid = new->egid = new->sgid = new->fsgid = gid;
  	else if (gid == old->gid || gid == old->sgid)
-@@ -618,7 +631,7 @@ error:
+@@ -627,7 +640,7 @@ error:
  /*
   * change the user struct in a credentials set to match the new UID
   */
@@ -68867,7 +68072,7 @@ index 888d227..f04b318 100644
  {
  	struct user_struct *new_user;
  
-@@ -688,6 +701,9 @@ SYSCALL_DEFINE2(setreuid, uid_t, ruid, uid_t, euid)
+@@ -697,6 +710,9 @@ SYSCALL_DEFINE2(setreuid, uid_t, ruid, uid_t, euid)
  			goto error;
  	}
  
@@ -68877,7 +68082,7 @@ index 888d227..f04b318 100644
  	if (new->uid != old->uid) {
  		retval = set_user(new);
  		if (retval < 0)
-@@ -732,6 +748,12 @@ SYSCALL_DEFINE1(setuid, uid_t, uid)
+@@ -741,6 +757,12 @@ SYSCALL_DEFINE1(setuid, uid_t, uid)
  	old = current_cred();
  
  	retval = -EPERM;
@@ -68890,7 +68095,7 @@ index 888d227..f04b318 100644
  	if (nsown_capable(CAP_SETUID)) {
  		new->suid = new->uid = uid;
  		if (uid != old->uid) {
-@@ -786,6 +808,9 @@ SYSCALL_DEFINE3(setresuid, uid_t, ruid, uid_t, euid, uid_t, suid)
+@@ -795,6 +817,9 @@ SYSCALL_DEFINE3(setresuid, uid_t, ruid, uid_t, euid, uid_t, suid)
  			goto error;
  	}
  
@@ -68900,7 +68105,7 @@ index 888d227..f04b318 100644
  	if (ruid != (uid_t) -1) {
  		new->uid = ruid;
  		if (ruid != old->uid) {
-@@ -850,6 +875,9 @@ SYSCALL_DEFINE3(setresgid, gid_t, rgid, gid_t, egid, gid_t, sgid)
+@@ -859,6 +884,9 @@ SYSCALL_DEFINE3(setresgid, gid_t, rgid, gid_t, egid, gid_t, sgid)
  			goto error;
  	}
  
@@ -68910,7 +68115,7 @@ index 888d227..f04b318 100644
  	if (rgid != (gid_t) -1)
  		new->gid = rgid;
  	if (egid != (gid_t) -1)
-@@ -896,6 +924,9 @@ SYSCALL_DEFINE1(setfsuid, uid_t, uid)
+@@ -905,6 +933,9 @@ SYSCALL_DEFINE1(setfsuid, uid_t, uid)
  	old = current_cred();
  	old_fsuid = old->fsuid;
  
@@ -68920,7 +68125,7 @@ index 888d227..f04b318 100644
  	if (uid == old->uid  || uid == old->euid  ||
  	    uid == old->suid || uid == old->fsuid ||
  	    nsown_capable(CAP_SETUID)) {
-@@ -906,6 +937,7 @@ SYSCALL_DEFINE1(setfsuid, uid_t, uid)
+@@ -915,6 +946,7 @@ SYSCALL_DEFINE1(setfsuid, uid_t, uid)
  		}
  	}
  
@@ -68928,7 +68133,7 @@ index 888d227..f04b318 100644
  	abort_creds(new);
  	return old_fsuid;
  
-@@ -932,12 +964,16 @@ SYSCALL_DEFINE1(setfsgid, gid_t, gid)
+@@ -941,12 +973,16 @@ SYSCALL_DEFINE1(setfsgid, gid_t, gid)
  	if (gid == old->gid  || gid == old->egid  ||
  	    gid == old->sgid || gid == old->fsgid ||
  	    nsown_capable(CAP_SETGID)) {
@@ -68945,7 +68150,7 @@ index 888d227..f04b318 100644
  	abort_creds(new);
  	return old_fsgid;
  
-@@ -1189,7 +1225,10 @@ static int override_release(char __user *release, int len)
+@@ -1198,7 +1234,10 @@ static int override_release(char __user *release, int len)
  		}
  		v = ((LINUX_VERSION_CODE >> 8) & 0xff) + 40;
  		snprintf(buf, len, "2.6.%u%s", v, rest);
@@ -68957,7 +68162,7 @@ index 888d227..f04b318 100644
  	}
  	return ret;
  }
-@@ -1243,19 +1282,19 @@ SYSCALL_DEFINE1(olduname, struct oldold_utsname __user *, name)
+@@ -1252,19 +1291,19 @@ SYSCALL_DEFINE1(olduname, struct oldold_utsname __user *, name)
  		return -EFAULT;
  
  	down_read(&uts_sem);
@@ -68982,7 +68187,7 @@ index 888d227..f04b318 100644
  				__OLD_UTS_LEN);
  	error |= __put_user(0, name->machine + __OLD_UTS_LEN);
  	up_read(&uts_sem);
-@@ -1838,7 +1877,7 @@ SYSCALL_DEFINE5(prctl, int, option, unsigned long, arg2, unsigned long, arg3,
+@@ -1847,7 +1886,7 @@ SYSCALL_DEFINE5(prctl, int, option, unsigned long, arg2, unsigned long, arg3,
  			error = get_dumpable(me->mm);
  			break;
  		case PR_SET_DUMPABLE:
@@ -68992,24 +68197,18 @@ index 888d227..f04b318 100644
  				break;
  			}
 diff --git a/kernel/sysctl.c b/kernel/sysctl.c
-index f03a6ef..735d95c 100644
+index 4ab1187..0b75ced 100644
 --- a/kernel/sysctl.c
 +++ b/kernel/sysctl.c
-@@ -86,6 +86,13 @@
+@@ -91,7 +91,6 @@
  
  
  #if defined(CONFIG_SYSCTL)
-+#include <linux/grsecurity.h>
-+#include <linux/grinternal.h>
-+
-+extern __u32 gr_handle_sysctl(const ctl_table *table, const int op);
-+extern int gr_handle_sysctl_mod(const char *dirname, const char *name,
-+				const int op);
-+extern int gr_handle_chroot_sysctl(const int op);
- 
+-
  /* External variables not in a header file. */
  extern int sysctl_overcommit_memory;
-@@ -165,10 +172,8 @@ static int proc_taint(struct ctl_table *table, int write,
+ extern int sysctl_overcommit_ratio;
+@@ -169,10 +168,8 @@ static int proc_taint(struct ctl_table *table, int write,
  			       void __user *buffer, size_t *lenp, loff_t *ppos);
  #endif
  
@@ -69020,15 +68219,16 @@ index f03a6ef..735d95c 100644
  
  #ifdef CONFIG_MAGIC_SYSRQ
  /* Note: sysrq code uses it's own private copy */
-@@ -191,6 +196,7 @@ static int sysrq_sysctl_handler(ctl_table *table, int write,
- }
+@@ -196,6 +193,8 @@ static int sysrq_sysctl_handler(ctl_table *table, int write,
  
  #endif
-+extern struct ctl_table grsecurity_table[];
  
- static struct ctl_table root_table[];
- static struct ctl_table_root sysctl_table_root;
-@@ -220,6 +226,20 @@ extern struct ctl_table epoll_table[];
++extern struct ctl_table grsecurity_table[];
++
+ static struct ctl_table kern_table[];
+ static struct ctl_table vm_table[];
+ static struct ctl_table fs_table[];
+@@ -210,6 +209,20 @@ extern struct ctl_table epoll_table[];
  int sysctl_legacy_va_layout;
  #endif
  
@@ -69048,8 +68248,8 @@ index f03a6ef..735d95c 100644
 +
  /* The default sysctl tables: */
  
- static struct ctl_table root_table[] = {
-@@ -266,6 +286,22 @@ static int max_extfrag_threshold = 1000;
+ static struct ctl_table sysctl_base_table[] = {
+@@ -256,6 +269,22 @@ static int max_extfrag_threshold = 1000;
  #endif
  
  static struct ctl_table kern_table[] = {
@@ -69072,7 +68272,7 @@ index f03a6ef..735d95c 100644
  	{
  		.procname	= "sched_child_runs_first",
  		.data		= &sysctl_sched_child_runs_first,
-@@ -550,7 +586,7 @@ static struct ctl_table kern_table[] = {
+@@ -540,7 +569,7 @@ static struct ctl_table kern_table[] = {
  		.data		= &modprobe_path,
  		.maxlen		= KMOD_PATH_LEN,
  		.mode		= 0644,
@@ -69081,7 +68281,7 @@ index f03a6ef..735d95c 100644
  	},
  	{
  		.procname	= "modules_disabled",
-@@ -717,16 +753,20 @@ static struct ctl_table kern_table[] = {
+@@ -707,16 +736,20 @@ static struct ctl_table kern_table[] = {
  		.extra1		= &zero,
  		.extra2		= &one,
  	},
@@ -69103,7 +68303,7 @@ index f03a6ef..735d95c 100644
  	{
  		.procname	= "ngroups_max",
  		.data		= &ngroups_max,
-@@ -1225,6 +1265,13 @@ static struct ctl_table vm_table[] = {
+@@ -1215,6 +1248,13 @@ static struct ctl_table vm_table[] = {
  		.proc_handler	= proc_dointvec_minmax,
  		.extra1		= &zero,
  	},
@@ -69117,25 +68317,7 @@ index f03a6ef..735d95c 100644
  #else
  	{
  		.procname	= "nr_trim_pages",
-@@ -1729,6 +1776,17 @@ static int test_perm(int mode, int op)
- int sysctl_perm(struct ctl_table_root *root, struct ctl_table *table, int op)
- {
- 	int mode;
-+	int error;
-+
-+	if (table->parent != NULL && table->parent->procname != NULL &&
-+	   table->procname != NULL &&
-+	    gr_handle_sysctl_mod(table->parent->procname, table->procname, op))
-+		return -EACCES;
-+	if (gr_handle_chroot_sysctl(op))
-+		return -EACCES;
-+	error = gr_handle_sysctl(table, op);
-+	if (error)
-+		return error;
- 
- 	if (root->permissions)
- 		mode = root->permissions(root, current->nsproxy, table);
-@@ -2133,6 +2191,16 @@ int proc_dostring(struct ctl_table *table, int write,
+@@ -1645,6 +1685,16 @@ int proc_dostring(struct ctl_table *table, int write,
  			       buffer, lenp, ppos);
  }
  
@@ -69152,7 +68334,7 @@ index f03a6ef..735d95c 100644
  static size_t proc_skip_spaces(char **buf)
  {
  	size_t ret;
-@@ -2238,6 +2306,8 @@ static int proc_put_long(void __user **buf, size_t *size, unsigned long val,
+@@ -1750,6 +1800,8 @@ static int proc_put_long(void __user **buf, size_t *size, unsigned long val,
  	len = strlen(tmp);
  	if (len > *size)
  		len = *size;
@@ -69161,7 +68343,7 @@ index f03a6ef..735d95c 100644
  	if (copy_to_user(*buf, tmp, len))
  		return -EFAULT;
  	*size -= len;
-@@ -2430,7 +2500,6 @@ static int proc_taint(struct ctl_table *table, int write,
+@@ -1942,7 +1994,6 @@ static int proc_taint(struct ctl_table *table, int write,
  	return err;
  }
  
@@ -69169,7 +68351,7 @@ index f03a6ef..735d95c 100644
  static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
  				void __user *buffer, size_t *lenp, loff_t *ppos)
  {
-@@ -2439,7 +2508,6 @@ static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
+@@ -1951,7 +2002,6 @@ static int proc_dointvec_minmax_sysadmin(struct ctl_table *table, int write,
  
  	return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
  }
@@ -69177,7 +68359,7 @@ index f03a6ef..735d95c 100644
  
  struct do_proc_dointvec_minmax_conv_param {
  	int *min;
-@@ -2554,8 +2622,11 @@ static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int
+@@ -2066,8 +2116,11 @@ static int __do_proc_doulongvec_minmax(void *data, struct ctl_table *table, int
  			*i = val;
  		} else {
  			val = convdiv * (*i) / convmul;
@@ -69190,7 +68372,7 @@ index f03a6ef..735d95c 100644
  			err = proc_put_long(&buffer, &left, val, false);
  			if (err)
  				break;
-@@ -2950,6 +3021,12 @@ int proc_dostring(struct ctl_table *table, int write,
+@@ -2459,6 +2512,12 @@ int proc_dostring(struct ctl_table *table, int write,
  	return -ENOSYS;
  }
  
@@ -69203,14 +68385,13 @@ index f03a6ef..735d95c 100644
  int proc_dointvec(struct ctl_table *table, int write,
  		  void __user *buffer, size_t *lenp, loff_t *ppos)
  {
-@@ -3006,6 +3083,7 @@ EXPORT_SYMBOL(proc_dointvec_minmax);
+@@ -2515,5 +2574,6 @@ EXPORT_SYMBOL(proc_dointvec_minmax);
  EXPORT_SYMBOL(proc_dointvec_userhz_jiffies);
  EXPORT_SYMBOL(proc_dointvec_ms_jiffies);
  EXPORT_SYMBOL(proc_dostring);
 +EXPORT_SYMBOL(proc_dostring_modpriv);
  EXPORT_SYMBOL(proc_doulongvec_minmax);
  EXPORT_SYMBOL(proc_doulongvec_ms_jiffies_minmax);
- EXPORT_SYMBOL(register_sysctl_table);
 diff --git a/kernel/sysctl_binary.c b/kernel/sysctl_binary.c
 index a650694..aaeeb20 100644
 --- a/kernel/sysctl_binary.c
@@ -69278,18 +68459,6 @@ index a650694..aaeeb20 100644
  		set_fs(old_fs);
  		if (result < 0)
  			goto out;
-diff --git a/kernel/sysctl_check.c b/kernel/sysctl_check.c
-index 362da65..ab8ef8c 100644
---- a/kernel/sysctl_check.c
-+++ b/kernel/sysctl_check.c
-@@ -129,6 +129,7 @@ int sysctl_check_table(struct nsproxy *namespaces, struct ctl_table *table)
- 				set_fail(&fail, table, "Directory with extra2");
- 		} else {
- 			if ((table->proc_handler == proc_dostring) ||
-+			    (table->proc_handler == proc_dostring_modpriv) ||
- 			    (table->proc_handler == proc_dointvec) ||
- 			    (table->proc_handler == proc_dointvec_minmax) ||
- 			    (table->proc_handler == proc_dointvec_jiffies) ||
 diff --git a/kernel/taskstats.c b/kernel/taskstats.c
 index e660464..c8b9e67 100644
 --- a/kernel/taskstats.c
@@ -69318,7 +68487,7 @@ index e660464..c8b9e67 100644
  		return cmd_attr_register_cpumask(info);
  	else if (info->attrs[TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK])
 diff --git a/kernel/time.c b/kernel/time.c
-index 73e416d..cfc6f69 100644
+index ba744cf..267b7c5 100644
 --- a/kernel/time.c
 +++ b/kernel/time.c
 @@ -163,6 +163,11 @@ int do_sys_settimeofday(const struct timespec *tv, const struct timezone *tz)
@@ -69330,14 +68499,14 @@ index 73e416d..cfc6f69 100644
 +		if (!tv)
 +			gr_log_timechange();
 +
- 		/* SMP safe, global irq locking makes it work. */
  		sys_tz = *tz;
  		update_vsyscall_tz();
+ 		if (firsttime) {
 diff --git a/kernel/time/alarmtimer.c b/kernel/time/alarmtimer.c
-index 8a46f5d..bbe6f9c 100644
+index 8a538c5..def79d4 100644
 --- a/kernel/time/alarmtimer.c
 +++ b/kernel/time/alarmtimer.c
-@@ -773,7 +773,7 @@ static int __init alarmtimer_init(void)
+@@ -779,7 +779,7 @@ static int __init alarmtimer_init(void)
  	struct platform_device *pdev;
  	int error = 0;
  	int i;
@@ -69347,7 +68516,7 @@ index 8a46f5d..bbe6f9c 100644
  		.clock_get	= alarm_clock_get,
  		.timer_create	= alarm_timer_create,
 diff --git a/kernel/time/tick-broadcast.c b/kernel/time/tick-broadcast.c
-index fd4a7b1..fae5c2a 100644
+index f113755..ec24223 100644
 --- a/kernel/time/tick-broadcast.c
 +++ b/kernel/time/tick-broadcast.c
 @@ -115,7 +115,7 @@ int tick_device_uses_broadcast(struct clock_event_device *dev, int cpu)
@@ -69360,7 +68529,7 @@ index fd4a7b1..fae5c2a 100644
  			cpumask_clear_cpu(cpu, tick_get_broadcast_mask());
  			tick_broadcast_clear_oneshot(cpu);
 diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
-index 0c63581..e25dcb6 100644
+index d66b213..6947686 100644
 --- a/kernel/time/timekeeping.c
 +++ b/kernel/time/timekeeping.c
 @@ -14,6 +14,7 @@
@@ -69371,13 +68540,13 @@ index 0c63581..e25dcb6 100644
  #include <linux/syscore_ops.h>
  #include <linux/clocksource.h>
  #include <linux/jiffies.h>
-@@ -365,6 +366,8 @@ int do_settimeofday(const struct timespec *tv)
+@@ -373,6 +374,8 @@ int do_settimeofday(const struct timespec *tv)
  	if ((unsigned long)tv->tv_nsec >= NSEC_PER_SEC)
  		return -EINVAL;
  
 +	gr_log_timechange();
 +
- 	write_seqlock_irqsave(&xtime_lock, flags);
+ 	write_seqlock_irqsave(&timekeeper.lock, flags);
  
  	timekeeping_forward_now();
 diff --git a/kernel/time/timer_list.c b/kernel/time/timer_list.c
@@ -69511,10 +68680,10 @@ index a297ffc..5e16b0b 100644
  	struct tvec_base *base = __this_cpu_read(tvec_bases);
  
 diff --git a/kernel/trace/blktrace.c b/kernel/trace/blktrace.c
-index cdea7b5..9b820d4 100644
+index c0bd030..62a1927 100644
 --- a/kernel/trace/blktrace.c
 +++ b/kernel/trace/blktrace.c
-@@ -324,7 +324,7 @@ static ssize_t blk_dropped_read(struct file *filp, char __user *buffer,
+@@ -317,7 +317,7 @@ static ssize_t blk_dropped_read(struct file *filp, char __user *buffer,
  	struct blk_trace *bt = filp->private_data;
  	char buf[16];
  
@@ -69523,7 +68692,7 @@ index cdea7b5..9b820d4 100644
  
  	return simple_read_from_buffer(buffer, count, ppos, buf, strlen(buf));
  }
-@@ -389,7 +389,7 @@ static int blk_subbuf_start_callback(struct rchan_buf *buf, void *subbuf,
+@@ -375,7 +375,7 @@ static int blk_subbuf_start_callback(struct rchan_buf *buf, void *subbuf,
  		return 1;
  
  	bt = buf->chan->private_data;
@@ -69532,7 +68701,7 @@ index cdea7b5..9b820d4 100644
  	return 0;
  }
  
-@@ -490,7 +490,7 @@ int do_blk_trace_setup(struct request_queue *q, char *name, dev_t dev,
+@@ -476,7 +476,7 @@ int do_blk_trace_setup(struct request_queue *q, char *name, dev_t dev,
  
  	bt->dir = dir;
  	bt->dev = dev;
@@ -69542,10 +68711,10 @@ index cdea7b5..9b820d4 100644
  	ret = -EIO;
  	bt->dropped_file = debugfs_create_file("dropped", 0444, dir, bt,
 diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
-index 683d559..d70d914 100644
+index 0fa92f6..89950b2 100644
 --- a/kernel/trace/ftrace.c
 +++ b/kernel/trace/ftrace.c
-@@ -1726,12 +1726,17 @@ ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
+@@ -1800,12 +1800,17 @@ ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
  	if (unlikely(ftrace_disabled))
  		return 0;
  
@@ -69565,7 +68734,7 @@ index 683d559..d70d914 100644
  }
  
  /*
-@@ -2843,7 +2848,7 @@ static void ftrace_free_entry_rcu(struct rcu_head *rhp)
+@@ -2917,7 +2922,7 @@ static void ftrace_free_entry_rcu(struct rcu_head *rhp)
  
  int
  register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
@@ -69575,10 +68744,10 @@ index 683d559..d70d914 100644
  	struct ftrace_func_probe *entry;
  	struct ftrace_page *pg;
 diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
-index c4579f1..6a439da 100644
+index 2a22255..cdcdd06 100644
 --- a/kernel/trace/trace.c
 +++ b/kernel/trace/trace.c
-@@ -4258,10 +4258,9 @@ static const struct file_operations tracing_dyn_info_fops = {
+@@ -4312,10 +4312,9 @@ static const struct file_operations tracing_dyn_info_fops = {
  };
  #endif
  
@@ -69590,7 +68759,7 @@ index c4579f1..6a439da 100644
  	static int once;
  
  	if (d_tracer)
-@@ -4281,10 +4280,9 @@ struct dentry *tracing_init_dentry(void)
+@@ -4335,10 +4334,9 @@ struct dentry *tracing_init_dentry(void)
  	return d_tracer;
  }
  
@@ -69603,10 +68772,10 @@ index c4579f1..6a439da 100644
  	struct dentry *d_tracer;
  
 diff --git a/kernel/trace/trace_events.c b/kernel/trace/trace_events.c
-index c212a7f..7b02394 100644
+index 29111da..d190fe2 100644
 --- a/kernel/trace/trace_events.c
 +++ b/kernel/trace/trace_events.c
-@@ -1299,10 +1299,6 @@ static LIST_HEAD(ftrace_module_file_list);
+@@ -1308,10 +1308,6 @@ static LIST_HEAD(ftrace_module_file_list);
  struct ftrace_module_file_ops {
  	struct list_head		list;
  	struct module			*mod;
@@ -69617,7 +68786,7 @@ index c212a7f..7b02394 100644
  };
  
  static struct ftrace_module_file_ops *
-@@ -1323,17 +1319,12 @@ trace_create_file_ops(struct module *mod)
+@@ -1332,17 +1328,12 @@ trace_create_file_ops(struct module *mod)
  
  	file_ops->mod = mod;
  
@@ -69641,7 +68810,7 @@ index c212a7f..7b02394 100644
  
  	list_add(&file_ops->list, &ftrace_module_file_list);
  
-@@ -1357,8 +1348,8 @@ static void trace_module_add_events(struct module *mod)
+@@ -1366,8 +1357,8 @@ static void trace_module_add_events(struct module *mod)
  
  	for_each_event(call, start, end) {
  		__trace_add_event_call(*call, mod,
@@ -69653,7 +68822,7 @@ index c212a7f..7b02394 100644
  }
  
 diff --git a/kernel/trace/trace_kprobe.c b/kernel/trace/trace_kprobe.c
-index 00d527c..7c5b1a3 100644
+index 580a05e..9b31acb 100644
 --- a/kernel/trace/trace_kprobe.c
 +++ b/kernel/trace/trace_kprobe.c
 @@ -217,7 +217,7 @@ static __kprobes void FETCH_FUNC_NAME(memory, string)(struct pt_regs *regs,
@@ -69733,10 +68902,10 @@ index fd3c8aa..5f324a6 100644
  	}
  	entry	= ring_buffer_event_data(event);
 diff --git a/kernel/trace/trace_output.c b/kernel/trace/trace_output.c
-index d9c07f0..c1eeceb 100644
+index df611a0..10d8b32 100644
 --- a/kernel/trace/trace_output.c
 +++ b/kernel/trace/trace_output.c
-@@ -278,7 +278,7 @@ int trace_seq_path(struct trace_seq *s, struct path *path)
+@@ -278,7 +278,7 @@ int trace_seq_path(struct trace_seq *s, const struct path *path)
  
  	p = d_path(path, s->buffer + s->len, PAGE_SIZE - s->len);
  	if (!IS_ERR(p)) {
@@ -69790,10 +68959,10 @@ index 209b379..7f76423 100644
  			put_task_struct(tsk);
  		}
 diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
-index 8745ac7..d144e37 100644
+index 6777153..8519f60 100644
 --- a/lib/Kconfig.debug
 +++ b/lib/Kconfig.debug
-@@ -1103,6 +1103,7 @@ config LATENCYTOP
+@@ -1132,6 +1132,7 @@ config LATENCYTOP
  	depends on DEBUG_KERNEL
  	depends on STACKTRACE_SUPPORT
  	depends on PROC_FS
@@ -69802,10 +68971,10 @@ index 8745ac7..d144e37 100644
  	select KALLSYMS
  	select KALLSYMS_ALL
 diff --git a/lib/bitmap.c b/lib/bitmap.c
-index 0d4a127..33a06c7 100644
+index b5a8b6a..a69623c 100644
 --- a/lib/bitmap.c
 +++ b/lib/bitmap.c
-@@ -419,7 +419,7 @@ int __bitmap_parse(const char *buf, unsigned int buflen,
+@@ -421,7 +421,7 @@ int __bitmap_parse(const char *buf, unsigned int buflen,
  {
  	int c, old_c, totaldigits, ndigits, nchunks, nbits;
  	u32 chunk;
@@ -69814,7 +68983,7 @@ index 0d4a127..33a06c7 100644
  
  	bitmap_zero(maskp, nmaskbits);
  
-@@ -504,7 +504,7 @@ int bitmap_parse_user(const char __user *ubuf,
+@@ -506,7 +506,7 @@ int bitmap_parse_user(const char __user *ubuf,
  {
  	if (!access_ok(VERIFY_READ, ubuf, ulen))
  		return -EFAULT;
@@ -69823,7 +68992,7 @@ index 0d4a127..33a06c7 100644
  				ulen, 1, maskp, nmaskbits);
  
  }
-@@ -596,7 +596,7 @@ static int __bitmap_parselist(const char *buf, unsigned int buflen,
+@@ -598,7 +598,7 @@ static int __bitmap_parselist(const char *buf, unsigned int buflen,
  {
  	unsigned a, b;
  	int c, old_c, totaldigits;
@@ -69832,7 +69001,7 @@ index 0d4a127..33a06c7 100644
  	int exp_digit, in_range;
  
  	totaldigits = c = 0;
-@@ -696,7 +696,7 @@ int bitmap_parselist_user(const char __user *ubuf,
+@@ -698,7 +698,7 @@ int bitmap_parselist_user(const char __user *ubuf,
  {
  	if (!access_ok(VERIFY_READ, ubuf, ulen))
  		return -EFAULT;
@@ -69868,7 +69037,7 @@ index 0ab9ae8..f01ceca 100644
  		return;
  
 diff --git a/lib/devres.c b/lib/devres.c
-index 9676617..5149e15 100644
+index 80b9c76..9e32279 100644
 --- a/lib/devres.c
 +++ b/lib/devres.c
 @@ -80,7 +80,7 @@ EXPORT_SYMBOL(devm_ioremap_nocache);
@@ -69890,10 +69059,10 @@ index 9676617..5149e15 100644
  EXPORT_SYMBOL(devm_ioport_unmap);
  
 diff --git a/lib/dma-debug.c b/lib/dma-debug.c
-index fea790a..ebb0e82 100644
+index 13ef233..5241683 100644
 --- a/lib/dma-debug.c
 +++ b/lib/dma-debug.c
-@@ -925,7 +925,7 @@ out:
+@@ -924,7 +924,7 @@ out:
  
  static void check_for_stack(struct device *dev, void *addr)
  {
@@ -69939,7 +69108,7 @@ index 013a761..c28f3fc 100644
  #endif
  
 diff --git a/lib/ioremap.c b/lib/ioremap.c
-index da4e2ad..6373b5f 100644
+index 0c9216c..863bd89 100644
 --- a/lib/ioremap.c
 +++ b/lib/ioremap.c
 @@ -38,7 +38,7 @@ static inline int ioremap_pmd_range(pud_t *pud, unsigned long addr,
@@ -69975,10 +69144,10 @@ index bd2bea9..6b3c95e 100644
  		return false;
  
 diff --git a/lib/radix-tree.c b/lib/radix-tree.c
-index dc63d08..95ae14a 100644
+index 86516f5..73395ca 100644
 --- a/lib/radix-tree.c
 +++ b/lib/radix-tree.c
-@@ -78,7 +78,7 @@ struct radix_tree_preload {
+@@ -79,7 +79,7 @@ struct radix_tree_preload {
  	int nr;
  	struct radix_tree_node *nodes[RADIX_TREE_MAX_PATH];
  };
@@ -69988,7 +69157,7 @@ index dc63d08..95ae14a 100644
  static inline void *ptr_to_indirect(void *ptr)
  {
 diff --git a/lib/vsprintf.c b/lib/vsprintf.c
-index 38e612e..4fb99a8 100644
+index abbabec..362988d 100644
 --- a/lib/vsprintf.c
 +++ b/lib/vsprintf.c
 @@ -16,6 +16,9 @@
@@ -69999,9 +69168,9 @@ index 38e612e..4fb99a8 100644
 +#define __INCLUDED_BY_HIDESYM 1
 +#endif
  #include <stdarg.h>
- #include <linux/module.h>
+ #include <linux/module.h>	/* for KSYM_SYMBOL_LEN */
  #include <linux/types.h>
-@@ -413,7 +416,7 @@ char *symbol_string(char *buf, char *end, void *ptr,
+@@ -433,7 +436,7 @@ char *symbol_string(char *buf, char *end, void *ptr,
  	char sym[KSYM_SYMBOL_LEN];
  	if (ext == 'B')
  		sprint_backtrace(sym, value);
@@ -70010,7 +69179,7 @@ index 38e612e..4fb99a8 100644
  		sprint_symbol(sym, value);
  	else
  		kallsyms_lookup(value, NULL, NULL, NULL, sym);
-@@ -789,7 +792,11 @@ char *netdev_feature_string(char *buf, char *end, const u8 *addr,
+@@ -809,7 +812,11 @@ char *netdev_feature_string(char *buf, char *end, const u8 *addr,
  	return number(buf, end, *(const netdev_features_t *)addr, spec);
  }
  
@@ -70022,7 +69191,7 @@ index 38e612e..4fb99a8 100644
  
  /*
   * Show a '%p' thing.  A kernel extension is that the '%p' is followed
-@@ -803,6 +810,8 @@ int kptr_restrict __read_mostly;
+@@ -823,6 +830,8 @@ int kptr_restrict __read_mostly;
   * - 'S' For symbolic direct pointers with offset
   * - 's' For symbolic direct pointers without offset
   * - 'B' For backtraced symbolic direct pointers with offset
@@ -70031,7 +69200,7 @@ index 38e612e..4fb99a8 100644
   * - 'R' For decoded struct resource, e.g., [mem 0x0-0x1f 64bit pref]
   * - 'r' For raw struct resource, e.g., [mem 0x0-0x1f flags 0x201]
   * - 'M' For a 6-byte MAC address, it prints the address in the
-@@ -848,12 +857,12 @@ char *pointer(const char *fmt, char *buf, char *end, void *ptr,
+@@ -868,12 +877,12 @@ char *pointer(const char *fmt, char *buf, char *end, void *ptr,
  {
  	if (!ptr && *fmt != 'K') {
  		/*
@@ -70046,7 +69215,7 @@ index 38e612e..4fb99a8 100644
  	}
  
  	switch (*fmt) {
-@@ -863,6 +872,13 @@ char *pointer(const char *fmt, char *buf, char *end, void *ptr,
+@@ -883,6 +892,13 @@ char *pointer(const char *fmt, char *buf, char *end, void *ptr,
  		/* Fallthrough */
  	case 'S':
  	case 's':
@@ -70060,7 +69229,7 @@ index 38e612e..4fb99a8 100644
  	case 'B':
  		return symbol_string(buf, end, ptr, spec, *fmt);
  	case 'R':
-@@ -1633,11 +1649,11 @@ int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf)
+@@ -1653,11 +1669,11 @@ int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf)
  	typeof(type) value;						\
  	if (sizeof(type) == 8) {					\
  		args = PTR_ALIGN(args, sizeof(u32));			\
@@ -70075,7 +69244,7 @@ index 38e612e..4fb99a8 100644
  	}								\
  	args += sizeof(type);						\
  	value;								\
-@@ -1700,7 +1716,7 @@ int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf)
+@@ -1720,7 +1736,7 @@ int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf)
  		case FORMAT_TYPE_STR: {
  			const char *str_arg = args;
  			args += strlen(str_arg) + 1;
@@ -70119,10 +69288,10 @@ index e338407..4210331 100644
  
  config NOMMU_INITIAL_TRIM_EXCESS
 diff --git a/mm/filemap.c b/mm/filemap.c
-index b662757..3081ddd 100644
+index 79c4b2b..596b417 100644
 --- a/mm/filemap.c
 +++ b/mm/filemap.c
-@@ -1770,7 +1770,7 @@ int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
+@@ -1762,7 +1762,7 @@ int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
  	struct address_space *mapping = file->f_mapping;
  
  	if (!mapping->a_ops->readpage)
@@ -70131,7 +69300,7 @@ index b662757..3081ddd 100644
  	file_accessed(file);
  	vma->vm_ops = &generic_file_vm_ops;
  	vma->vm_flags |= VM_CAN_NONLINEAR;
-@@ -2176,6 +2176,7 @@ inline int generic_write_checks(struct file *file, loff_t *pos, size_t *count, i
+@@ -2168,6 +2168,7 @@ inline int generic_write_checks(struct file *file, loff_t *pos, size_t *count, i
                          *pos = i_size_read(inode);
  
  		if (limit != RLIM_INFINITY) {
@@ -70185,7 +69354,7 @@ index 57d82c6..e9e0552 100644
  	set_page_address(page, (void *)vaddr);
  
 diff --git a/mm/huge_memory.c b/mm/huge_memory.c
-index 8f7fc39..69bf1e9 100644
+index f0e5306..cb9398e 100644
 --- a/mm/huge_memory.c
 +++ b/mm/huge_memory.c
 @@ -733,7 +733,7 @@ out:
@@ -70198,10 +69367,10 @@ index 8f7fc39..69bf1e9 100644
  	/* if an huge pmd materialized from under us just retry later */
  	if (unlikely(pmd_trans_huge(*pmd)))
 diff --git a/mm/hugetlb.c b/mm/hugetlb.c
-index fece520..e10da7f 100644
+index ae8f708..3f36aec 100644
 --- a/mm/hugetlb.c
 +++ b/mm/hugetlb.c
-@@ -2146,6 +2146,15 @@ static void hugetlb_vm_op_open(struct vm_area_struct *vma)
+@@ -2157,6 +2157,15 @@ static void hugetlb_vm_op_open(struct vm_area_struct *vma)
  		kref_get(&reservations->refs);
  }
  
@@ -70217,7 +69386,7 @@ index fece520..e10da7f 100644
  static void hugetlb_vm_op_close(struct vm_area_struct *vma)
  {
  	struct hstate *h = hstate_vma(vma);
-@@ -2162,7 +2171,7 @@ static void hugetlb_vm_op_close(struct vm_area_struct *vma)
+@@ -2173,7 +2182,7 @@ static void hugetlb_vm_op_close(struct vm_area_struct *vma)
  		reserve = (end - start) -
  			region_count(&reservations->regions, start, end);
  
@@ -70226,7 +69395,7 @@ index fece520..e10da7f 100644
  
  		if (reserve) {
  			hugetlb_acct_memory(h, -reserve);
-@@ -2425,6 +2434,27 @@ static int unmap_ref_private(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -2437,6 +2446,27 @@ static int unmap_ref_private(struct mm_struct *mm, struct vm_area_struct *vma,
  	return 1;
  }
  
@@ -70254,7 +69423,7 @@ index fece520..e10da7f 100644
  /*
   * Hugetlb_cow() should be called with page lock of the original hugepage held.
   * Called with hugetlb_instantiation_mutex held and pte_page locked so we
-@@ -2537,6 +2567,11 @@ retry_avoidcopy:
+@@ -2549,6 +2579,11 @@ retry_avoidcopy:
  				make_huge_pte(vma, new_page, 1));
  		page_remove_rmap(old_page);
  		hugepage_add_new_anon_rmap(new_page, vma, address);
@@ -70266,7 +69435,7 @@ index fece520..e10da7f 100644
  		/* Make the old page be freed below */
  		new_page = old_page;
  		mmu_notifier_invalidate_range_end(mm,
-@@ -2691,6 +2726,10 @@ retry:
+@@ -2703,6 +2738,10 @@ retry:
  				&& (vma->vm_flags & VM_SHARED)));
  	set_huge_pte_at(mm, address, ptep, new_pte);
  
@@ -70277,7 +69446,7 @@ index fece520..e10da7f 100644
  	if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
  		/* Optimization, do the COW without a second fault */
  		ret = hugetlb_cow(mm, vma, address, ptep, new_pte, page);
-@@ -2720,6 +2759,10 @@ int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -2732,6 +2771,10 @@ int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  	static DEFINE_MUTEX(hugetlb_instantiation_mutex);
  	struct hstate *h = hstate_vma(vma);
  
@@ -70288,7 +69457,7 @@ index fece520..e10da7f 100644
  	address &= huge_page_mask(h);
  
  	ptep = huge_pte_offset(mm, address);
-@@ -2733,6 +2776,26 @@ int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -2745,6 +2788,26 @@ int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  			       VM_FAULT_SET_HINDEX(h - hstates);
  	}
  
@@ -70315,7 +69484,7 @@ index fece520..e10da7f 100644
  	ptep = huge_pte_alloc(mm, address, huge_page_size(h));
  	if (!ptep)
  		return VM_FAULT_OOM;
-@@ -2978,12 +3041,16 @@ int hugetlb_reserve_pages(struct inode *inode,
+@@ -2990,12 +3053,16 @@ int hugetlb_reserve_pages(struct inode *inode,
  		set_vma_resv_flags(vma, HPAGE_RESV_OWNER);
  	}
  
@@ -70336,7 +69505,7 @@ index fece520..e10da7f 100644
  
  	/*
  	 * Check enough hugepages are available for the reservation.
-@@ -2992,7 +3059,7 @@ int hugetlb_reserve_pages(struct inode *inode,
+@@ -3004,7 +3071,7 @@ int hugetlb_reserve_pages(struct inode *inode,
  	ret = hugetlb_acct_memory(h, chg);
  	if (ret < 0) {
  		hugepage_subpool_put_pages(spool, chg);
@@ -70345,7 +69514,7 @@ index fece520..e10da7f 100644
  	}
  
  	/*
-@@ -3009,6 +3076,10 @@ int hugetlb_reserve_pages(struct inode *inode,
+@@ -3021,6 +3088,10 @@ int hugetlb_reserve_pages(struct inode *inode,
  	if (!vma || vma->vm_flags & VM_MAYSHARE)
  		region_add(&inode->i_mapping->private_list, from, to);
  	return 0;
@@ -70404,7 +69573,7 @@ index d53adf9..03a24bf 100644
  	set_fs(old_fs);
  
 diff --git a/mm/madvise.c b/mm/madvise.c
-index 74bf193..feb6fd3 100644
+index 1ccbba5..79e16f9 100644
 --- a/mm/madvise.c
 +++ b/mm/madvise.c
 @@ -45,6 +45,10 @@ static long madvise_behavior(struct vm_area_struct * vma,
@@ -70418,7 +69587,7 @@ index 74bf193..feb6fd3 100644
  	switch (behavior) {
  	case MADV_NORMAL:
  		new_flags = new_flags & ~VM_RAND_READ & ~VM_SEQ_READ;
-@@ -110,6 +114,13 @@ success:
+@@ -116,6 +120,13 @@ success:
  	/*
  	 * vm_flags is protected by the mmap_sem held in write mode.
  	 */
@@ -70432,7 +69601,7 @@ index 74bf193..feb6fd3 100644
  	vma->vm_flags = new_flags;
  
  out:
-@@ -168,6 +179,11 @@ static long madvise_dontneed(struct vm_area_struct * vma,
+@@ -174,6 +185,11 @@ static long madvise_dontneed(struct vm_area_struct * vma,
  			     struct vm_area_struct ** prev,
  			     unsigned long start, unsigned long end)
  {
@@ -70444,7 +69613,7 @@ index 74bf193..feb6fd3 100644
  	*prev = vma;
  	if (vma->vm_flags & (VM_LOCKED|VM_HUGETLB|VM_PFNMAP))
  		return -EINVAL;
-@@ -180,6 +196,21 @@ static long madvise_dontneed(struct vm_area_struct * vma,
+@@ -186,6 +202,21 @@ static long madvise_dontneed(struct vm_area_struct * vma,
  		zap_page_range(vma, start, end - start, &details);
  	} else
  		zap_page_range(vma, start, end - start, NULL);
@@ -70466,7 +69635,7 @@ index 74bf193..feb6fd3 100644
  	return 0;
  }
  
-@@ -376,6 +407,16 @@ SYSCALL_DEFINE3(madvise, unsigned long, start, size_t, len_in, int, behavior)
+@@ -384,6 +415,16 @@ SYSCALL_DEFINE3(madvise, unsigned long, start, size_t, len_in, int, behavior)
  	if (end < start)
  		goto out;
  
@@ -70484,7 +69653,7 @@ index 74bf193..feb6fd3 100644
  	if (end == start)
  		goto out;
 diff --git a/mm/memory-failure.c b/mm/memory-failure.c
-index 56080ea..115071e 100644
+index 97cc273..6ed703f 100644
 --- a/mm/memory-failure.c
 +++ b/mm/memory-failure.c
 @@ -61,7 +61,7 @@ int sysctl_memory_failure_early_kill __read_mostly = 0;
@@ -70496,16 +69665,16 @@ index 56080ea..115071e 100644
  
  #if defined(CONFIG_HWPOISON_INJECT) || defined(CONFIG_HWPOISON_INJECT_MODULE)
  
-@@ -202,7 +202,7 @@ static int kill_proc_ao(struct task_struct *t, unsigned long addr, int trapno,
+@@ -202,7 +202,7 @@ static int kill_proc(struct task_struct *t, unsigned long addr, int trapno,
+ 		pfn, t->comm, t->pid);
  	si.si_signo = SIGBUS;
  	si.si_errno = 0;
- 	si.si_code = BUS_MCEERR_AO;
 -	si.si_addr = (void *)addr;
 +	si.si_addr = (void __user *)addr;
  #ifdef __ARCH_SI_TRAPNO
  	si.si_trapno = trapno;
  #endif
-@@ -1010,7 +1010,7 @@ int __memory_failure(unsigned long pfn, int trapno, int flags)
+@@ -1036,7 +1036,7 @@ int memory_failure(unsigned long pfn, int trapno, int flags)
  	}
  
  	nr_pages = 1 << compound_trans_order(hpage);
@@ -70514,7 +69683,7 @@ index 56080ea..115071e 100644
  
  	/*
  	 * We need/can do nothing about count=0 pages.
-@@ -1040,7 +1040,7 @@ int __memory_failure(unsigned long pfn, int trapno, int flags)
+@@ -1066,7 +1066,7 @@ int memory_failure(unsigned long pfn, int trapno, int flags)
  			if (!PageHWPoison(hpage)
  			    || (hwpoison_filter(p) && TestClearPageHWPoison(p))
  			    || (p != hpage && TestSetPageHWPoison(hpage))) {
@@ -70523,7 +69692,7 @@ index 56080ea..115071e 100644
  				return 0;
  			}
  			set_page_hwpoison_huge_page(hpage);
-@@ -1098,7 +1098,7 @@ int __memory_failure(unsigned long pfn, int trapno, int flags)
+@@ -1124,7 +1124,7 @@ int memory_failure(unsigned long pfn, int trapno, int flags)
  	}
  	if (hwpoison_filter(p)) {
  		if (TestClearPageHWPoison(p))
@@ -70532,7 +69701,7 @@ index 56080ea..115071e 100644
  		unlock_page(hpage);
  		put_page(hpage);
  		return 0;
-@@ -1315,7 +1315,7 @@ int unpoison_memory(unsigned long pfn)
+@@ -1319,7 +1319,7 @@ int unpoison_memory(unsigned long pfn)
  			return 0;
  		}
  		if (TestClearPageHWPoison(p))
@@ -70541,7 +69710,7 @@ index 56080ea..115071e 100644
  		pr_info("MCE: Software-unpoisoned free page %#lx\n", pfn);
  		return 0;
  	}
-@@ -1329,7 +1329,7 @@ int unpoison_memory(unsigned long pfn)
+@@ -1333,7 +1333,7 @@ int unpoison_memory(unsigned long pfn)
  	 */
  	if (TestClearPageHWPoison(page)) {
  		pr_info("MCE: Software-unpoisoned page %#lx\n", pfn);
@@ -70550,7 +69719,7 @@ index 56080ea..115071e 100644
  		freeit = 1;
  		if (PageHuge(page))
  			clear_page_hwpoison_huge_page(page);
-@@ -1442,7 +1442,7 @@ static int soft_offline_huge_page(struct page *page, int flags)
+@@ -1446,7 +1446,7 @@ static int soft_offline_huge_page(struct page *page, int flags)
  	}
  done:
  	if (!PageHWPoison(hpage))
@@ -70559,7 +69728,7 @@ index 56080ea..115071e 100644
  	set_page_hwpoison_huge_page(hpage);
  	dequeue_hwpoisoned_huge_page(hpage);
  	/* keep elevated page count for bad page */
-@@ -1573,7 +1573,7 @@ int soft_offline_page(struct page *page, int flags)
+@@ -1577,7 +1577,7 @@ int soft_offline_page(struct page *page, int flags)
  		return ret;
  
  done:
@@ -70569,10 +69738,10 @@ index 56080ea..115071e 100644
  	/* keep elevated page count for bad page */
  	return ret;
 diff --git a/mm/memory.c b/mm/memory.c
-index 10b4dda..06857f3 100644
+index 6105f47..3363489 100644
 --- a/mm/memory.c
 +++ b/mm/memory.c
-@@ -457,8 +457,12 @@ static inline void free_pmd_range(struct mmu_gather *tlb, pud_t *pud,
+@@ -434,8 +434,12 @@ static inline void free_pmd_range(struct mmu_gather *tlb, pud_t *pud,
  		return;
  
  	pmd = pmd_offset(pud, start);
@@ -70585,7 +69754,7 @@ index 10b4dda..06857f3 100644
  }
  
  static inline void free_pud_range(struct mmu_gather *tlb, pgd_t *pgd,
-@@ -489,9 +493,12 @@ static inline void free_pud_range(struct mmu_gather *tlb, pgd_t *pgd,
+@@ -466,9 +470,12 @@ static inline void free_pud_range(struct mmu_gather *tlb, pgd_t *pgd,
  	if (end - 1 > ceiling - 1)
  		return;
  
@@ -70598,7 +69767,7 @@ index 10b4dda..06857f3 100644
  }
  
  /*
-@@ -1593,12 +1600,6 @@ no_page_table:
+@@ -1597,12 +1604,6 @@ no_page_table:
  	return page;
  }
  
@@ -70611,7 +69780,7 @@ index 10b4dda..06857f3 100644
  /**
   * __get_user_pages() - pin user pages in memory
   * @tsk:	task_struct of target task
-@@ -1671,10 +1672,10 @@ int __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
+@@ -1675,10 +1676,10 @@ int __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
  			(VM_MAYREAD | VM_MAYWRITE) : (VM_READ | VM_WRITE);
  	i = 0;
  
@@ -70624,7 +69793,7 @@ index 10b4dda..06857f3 100644
  		if (!vma && in_gate_area(mm, start)) {
  			unsigned long pg = start & PAGE_MASK;
  			pgd_t *pgd;
-@@ -1722,7 +1723,7 @@ int __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
+@@ -1726,7 +1727,7 @@ int __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
  			goto next_page;
  		}
  
@@ -70633,7 +69802,7 @@ index 10b4dda..06857f3 100644
  		    (vma->vm_flags & (VM_IO | VM_PFNMAP)) ||
  		    !(vm_flags & vma->vm_flags))
  			return i ? : -EFAULT;
-@@ -1749,11 +1750,6 @@ int __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
+@@ -1753,11 +1754,6 @@ int __get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
  				int ret;
  				unsigned int fault_flags = 0;
  
@@ -70645,7 +69814,7 @@ index 10b4dda..06857f3 100644
  				if (foll_flags & FOLL_WRITE)
  					fault_flags |= FAULT_FLAG_WRITE;
  				if (nonblocking)
-@@ -1827,7 +1823,7 @@ next_page:
+@@ -1831,7 +1827,7 @@ next_page:
  			start += PAGE_SIZE;
  			nr_pages--;
  		} while (nr_pages && start < vma->vm_end);
@@ -70654,7 +69823,7 @@ index 10b4dda..06857f3 100644
  	return i;
  }
  EXPORT_SYMBOL(__get_user_pages);
-@@ -2034,6 +2030,10 @@ static int insert_page(struct vm_area_struct *vma, unsigned long addr,
+@@ -2038,6 +2034,10 @@ static int insert_page(struct vm_area_struct *vma, unsigned long addr,
  	page_add_file_rmap(page);
  	set_pte_at(mm, addr, pte, mk_pte(page, prot));
  
@@ -70665,7 +69834,7 @@ index 10b4dda..06857f3 100644
  	retval = 0;
  	pte_unmap_unlock(pte, ptl);
  	return retval;
-@@ -2068,10 +2068,22 @@ out:
+@@ -2072,10 +2072,22 @@ out:
  int vm_insert_page(struct vm_area_struct *vma, unsigned long addr,
  			struct page *page)
  {
@@ -70688,7 +69857,7 @@ index 10b4dda..06857f3 100644
  	vma->vm_flags |= VM_INSERTPAGE;
  	return insert_page(vma, addr, page, vma->vm_page_prot);
  }
-@@ -2157,6 +2169,7 @@ int vm_insert_mixed(struct vm_area_struct *vma, unsigned long addr,
+@@ -2161,6 +2173,7 @@ int vm_insert_mixed(struct vm_area_struct *vma, unsigned long addr,
  			unsigned long pfn)
  {
  	BUG_ON(!(vma->vm_flags & VM_MIXEDMAP));
@@ -70696,7 +69865,7 @@ index 10b4dda..06857f3 100644
  
  	if (addr < vma->vm_start || addr >= vma->vm_end)
  		return -EFAULT;
-@@ -2364,7 +2377,9 @@ static int apply_to_pmd_range(struct mm_struct *mm, pud_t *pud,
+@@ -2368,7 +2381,9 @@ static int apply_to_pmd_range(struct mm_struct *mm, pud_t *pud,
  
  	BUG_ON(pud_huge(*pud));
  
@@ -70707,7 +69876,7 @@ index 10b4dda..06857f3 100644
  	if (!pmd)
  		return -ENOMEM;
  	do {
-@@ -2384,7 +2399,9 @@ static int apply_to_pud_range(struct mm_struct *mm, pgd_t *pgd,
+@@ -2388,7 +2403,9 @@ static int apply_to_pud_range(struct mm_struct *mm, pgd_t *pgd,
  	unsigned long next;
  	int err;
  
@@ -70718,7 +69887,7 @@ index 10b4dda..06857f3 100644
  	if (!pud)
  		return -ENOMEM;
  	do {
-@@ -2472,6 +2489,186 @@ static inline void cow_user_page(struct page *dst, struct page *src, unsigned lo
+@@ -2476,6 +2493,186 @@ static inline void cow_user_page(struct page *dst, struct page *src, unsigned lo
  		copy_user_highpage(dst, src, va, vma);
  }
  
@@ -70905,7 +70074,7 @@ index 10b4dda..06857f3 100644
  /*
   * This routine handles present pages, when users try to write
   * to a shared page. It is done by copying the page to a new address
-@@ -2683,6 +2880,12 @@ gotten:
+@@ -2687,6 +2884,12 @@ gotten:
  	 */
  	page_table = pte_offset_map_lock(mm, pmd, address, &ptl);
  	if (likely(pte_same(*page_table, orig_pte))) {
@@ -70918,7 +70087,7 @@ index 10b4dda..06857f3 100644
  		if (old_page) {
  			if (!PageAnon(old_page)) {
  				dec_mm_counter_fast(mm, MM_FILEPAGES);
-@@ -2734,6 +2937,10 @@ gotten:
+@@ -2738,6 +2941,10 @@ gotten:
  			page_remove_rmap(old_page);
  		}
  
@@ -70929,7 +70098,7 @@ index 10b4dda..06857f3 100644
  		/* Free the old page.. */
  		new_page = old_page;
  		ret |= VM_FAULT_WRITE;
-@@ -3013,6 +3220,11 @@ static int do_swap_page(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -3017,6 +3224,11 @@ static int do_swap_page(struct mm_struct *mm, struct vm_area_struct *vma,
  	swap_free(entry);
  	if (vm_swap_full() || (vma->vm_flags & VM_LOCKED) || PageMlocked(page))
  		try_to_free_swap(page);
@@ -70941,7 +70110,7 @@ index 10b4dda..06857f3 100644
  	unlock_page(page);
  	if (swapcache) {
  		/*
-@@ -3036,6 +3248,11 @@ static int do_swap_page(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -3040,6 +3252,11 @@ static int do_swap_page(struct mm_struct *mm, struct vm_area_struct *vma,
  
  	/* No need to invalidate - it was non-present before */
  	update_mmu_cache(vma, address, page_table);
@@ -70953,7 +70122,7 @@ index 10b4dda..06857f3 100644
  unlock:
  	pte_unmap_unlock(page_table, ptl);
  out:
-@@ -3055,40 +3272,6 @@ out_release:
+@@ -3059,40 +3276,6 @@ out_release:
  }
  
  /*
@@ -70994,7 +70163,7 @@ index 10b4dda..06857f3 100644
   * We enter with non-exclusive mmap_sem (to exclude vma changes,
   * but allow concurrent faults), and pte mapped but not yet locked.
   * We return with mmap_sem still held, but pte unmapped and unlocked.
-@@ -3097,27 +3280,23 @@ static int do_anonymous_page(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -3101,27 +3284,23 @@ static int do_anonymous_page(struct mm_struct *mm, struct vm_area_struct *vma,
  		unsigned long address, pte_t *page_table, pmd_t *pmd,
  		unsigned int flags)
  {
@@ -71027,7 +70196,7 @@ index 10b4dda..06857f3 100644
  	if (unlikely(anon_vma_prepare(vma)))
  		goto oom;
  	page = alloc_zeroed_user_highpage_movable(vma, address);
-@@ -3136,6 +3315,11 @@ static int do_anonymous_page(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -3140,6 +3319,11 @@ static int do_anonymous_page(struct mm_struct *mm, struct vm_area_struct *vma,
  	if (!pte_none(*page_table))
  		goto release;
  
@@ -71039,7 +70208,7 @@ index 10b4dda..06857f3 100644
  	inc_mm_counter_fast(mm, MM_ANONPAGES);
  	page_add_new_anon_rmap(page, vma, address);
  setpte:
-@@ -3143,6 +3327,12 @@ setpte:
+@@ -3147,6 +3331,12 @@ setpte:
  
  	/* No need to invalidate - it was non-present before */
  	update_mmu_cache(vma, address, page_table);
@@ -71052,7 +70221,7 @@ index 10b4dda..06857f3 100644
  unlock:
  	pte_unmap_unlock(page_table, ptl);
  	return 0;
-@@ -3286,6 +3476,12 @@ static int __do_fault(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -3290,6 +3480,12 @@ static int __do_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  	 */
  	/* Only go through if we didn't race with anybody else... */
  	if (likely(pte_same(*page_table, orig_pte))) {
@@ -71065,7 +70234,7 @@ index 10b4dda..06857f3 100644
  		flush_icache_page(vma, page);
  		entry = mk_pte(page, vma->vm_page_prot);
  		if (flags & FAULT_FLAG_WRITE)
-@@ -3305,6 +3501,14 @@ static int __do_fault(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -3309,6 +3505,14 @@ static int __do_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  
  		/* no need to invalidate: a not-present page won't be cached */
  		update_mmu_cache(vma, address, page_table);
@@ -71080,7 +70249,7 @@ index 10b4dda..06857f3 100644
  	} else {
  		if (cow_page)
  			mem_cgroup_uncharge_page(cow_page);
-@@ -3458,6 +3662,12 @@ int handle_pte_fault(struct mm_struct *mm,
+@@ -3462,6 +3666,12 @@ int handle_pte_fault(struct mm_struct *mm,
  		if (flags & FAULT_FLAG_WRITE)
  			flush_tlb_fix_spurious_fault(vma, address);
  	}
@@ -71093,7 +70262,7 @@ index 10b4dda..06857f3 100644
  unlock:
  	pte_unmap_unlock(pte, ptl);
  	return 0;
-@@ -3474,6 +3684,10 @@ int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -3478,6 +3688,10 @@ int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  	pmd_t *pmd;
  	pte_t *pte;
  
@@ -71104,7 +70273,7 @@ index 10b4dda..06857f3 100644
  	__set_current_state(TASK_RUNNING);
  
  	count_vm_event(PGFAULT);
-@@ -3485,6 +3699,34 @@ int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -3489,6 +3703,34 @@ int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  	if (unlikely(is_vm_hugetlb_page(vma)))
  		return hugetlb_fault(mm, vma, address, flags);
  
@@ -71139,7 +70308,7 @@ index 10b4dda..06857f3 100644
  	pgd = pgd_offset(mm, address);
  	pud = pud_alloc(mm, pgd, address);
  	if (!pud)
-@@ -3514,7 +3756,7 @@ int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -3518,7 +3760,7 @@ int handle_mm_fault(struct mm_struct *mm, struct vm_area_struct *vma,
  	 * run pte_offset_map on the pmd, if an huge pmd could
  	 * materialize from under us from a different thread.
  	 */
@@ -71148,7 +70317,7 @@ index 10b4dda..06857f3 100644
  		return VM_FAULT_OOM;
  	/* if an huge pmd materialized from under us just retry later */
  	if (unlikely(pmd_trans_huge(*pmd)))
-@@ -3551,6 +3793,23 @@ int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address)
+@@ -3555,6 +3797,23 @@ int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address)
  	spin_unlock(&mm->page_table_lock);
  	return 0;
  }
@@ -71172,7 +70341,7 @@ index 10b4dda..06857f3 100644
  #endif /* __PAGETABLE_PUD_FOLDED */
  
  #ifndef __PAGETABLE_PMD_FOLDED
-@@ -3581,6 +3840,30 @@ int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address)
+@@ -3585,6 +3844,30 @@ int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address)
  	spin_unlock(&mm->page_table_lock);
  	return 0;
  }
@@ -71203,17 +70372,17 @@ index 10b4dda..06857f3 100644
  #endif /* __PAGETABLE_PMD_FOLDED */
  
  int make_pages_present(unsigned long addr, unsigned long end)
-@@ -3618,7 +3901,7 @@ static int __init gate_vma_init(void)
+@@ -3622,7 +3905,7 @@ static int __init gate_vma_init(void)
  	gate_vma.vm_start = FIXADDR_USER_START;
  	gate_vma.vm_end = FIXADDR_USER_END;
  	gate_vma.vm_flags = VM_READ | VM_MAYREAD | VM_EXEC | VM_MAYEXEC;
 -	gate_vma.vm_page_prot = __P101;
 +	gate_vma.vm_page_prot = vm_get_page_prot(gate_vma.vm_flags);
- 	/*
- 	 * Make sure the vDSO gets into every core dump.
- 	 * Dumping its contents makes post-mortem fully interpretable later
+ 
+ 	return 0;
+ }
 diff --git a/mm/mempolicy.c b/mm/mempolicy.c
-index a8f97d5..e2ed444 100644
+index bf5b485..088e1e5 100644
 --- a/mm/mempolicy.c
 +++ b/mm/mempolicy.c
 @@ -619,6 +619,10 @@ static int mbind_range(struct mm_struct *mm, unsigned long start,
@@ -71235,7 +70404,7 @@ index a8f97d5..e2ed444 100644
 +#ifdef CONFIG_PAX_SEGMEXEC
 +		vma_m = pax_find_mirror_vma(vma);
 +		if (vma_m && vma_m->vm_ops && vma_m->vm_ops->set_policy) {
-+			err = vma_m->vm_ops->set_policy(vma_m, new_pol);
++			err = vma->vm_ops->set_policy(vma_m, new_pol);
 +			if (err)
 +				goto out;
 +		}
@@ -71262,23 +70431,8 @@ index a8f97d5..e2ed444 100644
  	if (end == start)
  		return 0;
  
-@@ -1323,6 +1348,14 @@ SYSCALL_DEFINE4(migrate_pages, pid_t, pid, unsigned long, maxnode,
- 	if (!mm)
- 		goto out;
- 
-+#ifdef CONFIG_GRKERNSEC_PROC_MEMMAP
-+	if (mm != current->mm &&
-+	    (mm->pax_flags & MF_PAX_RANDMMAP || mm->pax_flags & MF_PAX_SEGMEXEC)) {
-+		err = -EPERM;
-+		goto out;
-+	}
-+#endif
-+
- 	/*
- 	 * Check if this process has the right to modify the specified
- 	 * process. The right exists if the process has administrative
-@@ -1332,8 +1365,7 @@ SYSCALL_DEFINE4(migrate_pages, pid_t, pid, unsigned long, maxnode,
- 	rcu_read_lock();
+@@ -1328,8 +1353,7 @@ SYSCALL_DEFINE4(migrate_pages, pid_t, pid, unsigned long, maxnode,
+ 	 */
  	tcred = __task_cred(task);
  	if (cred->euid != tcred->suid && cred->euid != tcred->uid &&
 -	    cred->uid  != tcred->suid && cred->uid  != tcred->uid &&
@@ -71286,36 +70440,23 @@ index a8f97d5..e2ed444 100644
 +	    cred->uid  != tcred->suid && !capable(CAP_SYS_NICE)) {
  		rcu_read_unlock();
  		err = -EPERM;
+ 		goto out_put;
+@@ -1360,6 +1384,15 @@ SYSCALL_DEFINE4(migrate_pages, pid_t, pid, unsigned long, maxnode,
  		goto out;
-diff --git a/mm/migrate.c b/mm/migrate.c
-index 1503b6b..156c672 100644
---- a/mm/migrate.c
-+++ b/mm/migrate.c
-@@ -1370,6 +1370,14 @@ SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
- 	if (!mm)
- 		return -EINVAL;
+ 	}
  
 +#ifdef CONFIG_GRKERNSEC_PROC_MEMMAP
 +	if (mm != current->mm &&
 +	    (mm->pax_flags & MF_PAX_RANDMMAP || mm->pax_flags & MF_PAX_SEGMEXEC)) {
++		mmput(mm);
 +		err = -EPERM;
 +		goto out;
 +	}
 +#endif
 +
- 	/*
- 	 * Check if this process has the right to modify the specified
- 	 * process. The right exists if the process has administrative
-@@ -1379,8 +1387,7 @@ SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
- 	rcu_read_lock();
- 	tcred = __task_cred(task);
- 	if (cred->euid != tcred->suid && cred->euid != tcred->uid &&
--	    cred->uid  != tcred->suid && cred->uid  != tcred->uid &&
--	    !capable(CAP_SYS_NICE)) {
-+	    cred->uid  != tcred->suid && !capable(CAP_SYS_NICE)) {
- 		rcu_read_unlock();
- 		err = -EPERM;
- 		goto out;
+ 	err = do_migrate_pages(mm, old, new,
+ 		capable(CAP_SYS_NICE) ? MPOL_MF_MOVE_ALL : MPOL_MF_MOVE);
+ 
 diff --git a/mm/mlock.c b/mm/mlock.c
 index ef726e8..13e0901 100644
 --- a/mm/mlock.c
@@ -71394,7 +70535,7 @@ index ef726e8..13e0901 100644
  	    capable(CAP_IPC_LOCK))
  		ret = do_mlockall(flags);
 diff --git a/mm/mmap.c b/mm/mmap.c
-index da15a79..314aef3 100644
+index 848ef52..d2b586c 100644
 --- a/mm/mmap.c
 +++ b/mm/mmap.c
 @@ -46,6 +46,16 @@
@@ -71458,7 +70599,7 @@ index da15a79..314aef3 100644
  	if (vma->vm_ops && vma->vm_ops->close)
  		vma->vm_ops->close(vma);
  	if (vma->vm_file) {
-@@ -272,6 +293,7 @@ SYSCALL_DEFINE1(brk, unsigned long, brk)
+@@ -274,6 +295,7 @@ SYSCALL_DEFINE1(brk, unsigned long, brk)
  	 * not page aligned -Ram Gupta
  	 */
  	rlim = rlimit(RLIMIT_DATA);
@@ -71466,7 +70607,7 @@ index da15a79..314aef3 100644
  	if (rlim < RLIM_INFINITY && (brk - mm->start_brk) +
  			(mm->end_data - mm->start_data) > rlim)
  		goto out;
-@@ -689,6 +711,12 @@ static int
+@@ -690,6 +712,12 @@ static int
  can_vma_merge_before(struct vm_area_struct *vma, unsigned long vm_flags,
  	struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff)
  {
@@ -71479,7 +70620,7 @@ index da15a79..314aef3 100644
  	if (is_mergeable_vma(vma, file, vm_flags) &&
  	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
  		if (vma->vm_pgoff == vm_pgoff)
-@@ -708,6 +736,12 @@ static int
+@@ -709,6 +737,12 @@ static int
  can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
  	struct anon_vma *anon_vma, struct file *file, pgoff_t vm_pgoff)
  {
@@ -71492,7 +70633,7 @@ index da15a79..314aef3 100644
  	if (is_mergeable_vma(vma, file, vm_flags) &&
  	    is_mergeable_anon_vma(anon_vma, vma->anon_vma, vma)) {
  		pgoff_t vm_pglen;
-@@ -750,13 +784,20 @@ can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
+@@ -751,13 +785,20 @@ can_vma_merge_after(struct vm_area_struct *vma, unsigned long vm_flags,
  struct vm_area_struct *vma_merge(struct mm_struct *mm,
  			struct vm_area_struct *prev, unsigned long addr,
  			unsigned long end, unsigned long vm_flags,
@@ -71514,7 +70655,7 @@ index da15a79..314aef3 100644
  	/*
  	 * We later require that vma->vm_flags == vm_flags,
  	 * so this tests vma->vm_flags & VM_SPECIAL, too.
-@@ -772,6 +813,15 @@ struct vm_area_struct *vma_merge(struct mm_struct *mm,
+@@ -773,6 +814,15 @@ struct vm_area_struct *vma_merge(struct mm_struct *mm,
  	if (next && next->vm_end == end)		/* cases 6, 7, 8 */
  		next = next->vm_next;
  
@@ -71530,7 +70671,7 @@ index da15a79..314aef3 100644
  	/*
  	 * Can it merge with the predecessor?
  	 */
-@@ -791,9 +841,24 @@ struct vm_area_struct *vma_merge(struct mm_struct *mm,
+@@ -792,9 +842,24 @@ struct vm_area_struct *vma_merge(struct mm_struct *mm,
  							/* cases 1, 6 */
  			err = vma_adjust(prev, prev->vm_start,
  				next->vm_end, prev->vm_pgoff, NULL);
@@ -71556,7 +70697,7 @@ index da15a79..314aef3 100644
  		if (err)
  			return NULL;
  		khugepaged_enter_vma_merge(prev);
-@@ -807,12 +872,27 @@ struct vm_area_struct *vma_merge(struct mm_struct *mm,
+@@ -808,12 +873,27 @@ struct vm_area_struct *vma_merge(struct mm_struct *mm,
   			mpol_equal(policy, vma_policy(next)) &&
  			can_vma_merge_before(next, vm_flags,
  					anon_vma, file, pgoff+pglen)) {
@@ -71586,7 +70727,7 @@ index da15a79..314aef3 100644
  		if (err)
  			return NULL;
  		khugepaged_enter_vma_merge(area);
-@@ -921,14 +1001,11 @@ none:
+@@ -922,14 +1002,11 @@ none:
  void vm_stat_account(struct mm_struct *mm, unsigned long flags,
  						struct file *file, long pages)
  {
@@ -71602,7 +70743,7 @@ index da15a79..314aef3 100644
  		mm->stack_vm += pages;
  	if (flags & (VM_RESERVED|VM_IO))
  		mm->reserved_vm += pages;
-@@ -955,7 +1032,7 @@ unsigned long do_mmap_pgoff(struct file *file, unsigned long addr,
+@@ -969,7 +1046,7 @@ static unsigned long do_mmap_pgoff(struct file *file, unsigned long addr,
  	 * (the exception is when the underlying filesystem is noexec
  	 *  mounted, in which case we dont add PROT_EXEC.)
  	 */
@@ -71611,7 +70752,7 @@ index da15a79..314aef3 100644
  		if (!(file && (file->f_path.mnt->mnt_flags & MNT_NOEXEC)))
  			prot |= PROT_EXEC;
  
-@@ -981,7 +1058,7 @@ unsigned long do_mmap_pgoff(struct file *file, unsigned long addr,
+@@ -995,7 +1072,7 @@ static unsigned long do_mmap_pgoff(struct file *file, unsigned long addr,
  	/* Obtain the address to map to. we verify (or select) it and ensure
  	 * that it represents a valid section of the address space.
  	 */
@@ -71620,7 +70761,7 @@ index da15a79..314aef3 100644
  	if (addr & ~PAGE_MASK)
  		return addr;
  
-@@ -992,6 +1069,36 @@ unsigned long do_mmap_pgoff(struct file *file, unsigned long addr,
+@@ -1006,6 +1083,36 @@ static unsigned long do_mmap_pgoff(struct file *file, unsigned long addr,
  	vm_flags = calc_vm_prot_bits(prot) | calc_vm_flag_bits(flags) |
  			mm->def_flags | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC;
  
@@ -71657,7 +70798,7 @@ index da15a79..314aef3 100644
  	if (flags & MAP_LOCKED)
  		if (!can_do_mlock())
  			return -EPERM;
-@@ -1003,6 +1110,7 @@ unsigned long do_mmap_pgoff(struct file *file, unsigned long addr,
+@@ -1017,6 +1124,7 @@ static unsigned long do_mmap_pgoff(struct file *file, unsigned long addr,
  		locked += mm->locked_vm;
  		lock_limit = rlimit(RLIMIT_MEMLOCK);
  		lock_limit >>= PAGE_SHIFT;
@@ -71665,7 +70806,7 @@ index da15a79..314aef3 100644
  		if (locked > lock_limit && !capable(CAP_IPC_LOCK))
  			return -EAGAIN;
  	}
-@@ -1073,6 +1181,9 @@ unsigned long do_mmap_pgoff(struct file *file, unsigned long addr,
+@@ -1087,6 +1195,9 @@ static unsigned long do_mmap_pgoff(struct file *file, unsigned long addr,
  	if (error)
  		return error;
  
@@ -71674,8 +70815,8 @@ index da15a79..314aef3 100644
 +
  	return mmap_region(file, addr, len, flags, vm_flags, pgoff);
  }
- EXPORT_SYMBOL(do_mmap_pgoff);
-@@ -1153,7 +1264,7 @@ int vma_wants_writenotify(struct vm_area_struct *vma)
+ 
+@@ -1192,7 +1303,7 @@ int vma_wants_writenotify(struct vm_area_struct *vma)
  	vm_flags_t vm_flags = vma->vm_flags;
  
  	/* If it was private or non-writable, the write bit is already clear */
@@ -71684,7 +70825,7 @@ index da15a79..314aef3 100644
  		return 0;
  
  	/* The backer wishes to know when pages are first written to? */
-@@ -1202,14 +1313,24 @@ unsigned long mmap_region(struct file *file, unsigned long addr,
+@@ -1241,14 +1352,24 @@ unsigned long mmap_region(struct file *file, unsigned long addr,
  	unsigned long charged = 0;
  	struct inode *inode =  file ? file->f_path.dentry->d_inode : NULL;
  
@@ -71711,7 +70852,7 @@ index da15a79..314aef3 100644
  	}
  
  	/* Check against address space limit. */
-@@ -1258,6 +1379,16 @@ munmap_back:
+@@ -1297,6 +1418,16 @@ munmap_back:
  		goto unacct_error;
  	}
  
@@ -71728,7 +70869,7 @@ index da15a79..314aef3 100644
  	vma->vm_mm = mm;
  	vma->vm_start = addr;
  	vma->vm_end = addr + len;
-@@ -1282,6 +1413,19 @@ munmap_back:
+@@ -1321,6 +1452,19 @@ munmap_back:
  		error = file->f_op->mmap(file, vma);
  		if (error)
  			goto unmap_and_free_vma;
@@ -71748,7 +70889,7 @@ index da15a79..314aef3 100644
  		if (vm_flags & VM_EXECUTABLE)
  			added_exe_file_vma(mm);
  
-@@ -1319,6 +1463,11 @@ munmap_back:
+@@ -1358,6 +1502,11 @@ munmap_back:
  	vma_link(mm, vma, prev, rb_link, rb_parent);
  	file = vma->vm_file;
  
@@ -71760,7 +70901,7 @@ index da15a79..314aef3 100644
  	/* Once vma denies write, undo our temporary denial count */
  	if (correct_wcount)
  		atomic_inc(&inode->i_writecount);
-@@ -1327,6 +1476,7 @@ out:
+@@ -1366,6 +1515,7 @@ out:
  
  	mm->total_vm += len >> PAGE_SHIFT;
  	vm_stat_account(mm, vm_flags, file, len >> PAGE_SHIFT);
@@ -71768,7 +70909,7 @@ index da15a79..314aef3 100644
  	if (vm_flags & VM_LOCKED) {
  		if (!mlock_vma_pages_range(vma, addr, addr + len))
  			mm->locked_vm += (len >> PAGE_SHIFT);
-@@ -1344,6 +1494,12 @@ unmap_and_free_vma:
+@@ -1383,6 +1533,12 @@ unmap_and_free_vma:
  	unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
  	charged = 0;
  free_vma:
@@ -71781,7 +70922,7 @@ index da15a79..314aef3 100644
  	kmem_cache_free(vm_area_cachep, vma);
  unacct_error:
  	if (charged)
-@@ -1351,6 +1507,44 @@ unacct_error:
+@@ -1390,6 +1546,44 @@ unacct_error:
  	return error;
  }
  
@@ -71826,7 +70967,7 @@ index da15a79..314aef3 100644
  /* Get an address range which is currently unmapped.
   * For shmat() with addr=0.
   *
-@@ -1377,18 +1571,23 @@ arch_get_unmapped_area(struct file *filp, unsigned long addr,
+@@ -1416,18 +1610,23 @@ arch_get_unmapped_area(struct file *filp, unsigned long addr,
  	if (flags & MAP_FIXED)
  		return addr;
  
@@ -71857,7 +70998,7 @@ index da15a79..314aef3 100644
  	}
  
  full_search:
-@@ -1399,34 +1598,40 @@ full_search:
+@@ -1438,34 +1637,40 @@ full_search:
  			 * Start a new search - just in case we missed
  			 * some holes.
  			 */
@@ -71904,21 +71045,21 @@ index da15a79..314aef3 100644
  	/*
  	 * Is this a new hole at the lowest possible address?
  	 */
--	if (addr >= TASK_UNMAPPED_BASE && addr < mm->free_area_cache) {
-+	if (addr >= mm->mmap_base && addr < mm->free_area_cache) {
+-	if (addr >= TASK_UNMAPPED_BASE && addr < mm->free_area_cache)
++	if (addr >= mm->mmap_base && addr < mm->free_area_cache)
  		mm->free_area_cache = addr;
- 		mm->cached_hole_size = ~0UL;
- 	}
-@@ -1444,7 +1649,7 @@ arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
+ }
+ 
+@@ -1481,7 +1686,7 @@ arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
  {
  	struct vm_area_struct *vma;
  	struct mm_struct *mm = current->mm;
--	unsigned long addr = addr0;
-+	unsigned long base = mm->mmap_base, addr = addr0;
+-	unsigned long addr = addr0, start_addr;
++	unsigned long base = mm->mmap_base, addr = addr0, start_addr;
  
  	/* requested length too big for entire address space */
  	if (len > TASK_SIZE)
-@@ -1453,13 +1658,18 @@ arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
+@@ -1490,13 +1695,18 @@ arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
  	if (flags & MAP_FIXED)
  		return addr;
  
@@ -71941,16 +71082,7 @@ index da15a79..314aef3 100644
  	}
  
  	/* check if free_area_cache is useful for us */
-@@ -1474,7 +1684,7 @@ arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
- 	/* make sure it can fit in the remaining address space */
- 	if (addr > len) {
- 		vma = find_vma(mm, addr-len);
--		if (!vma || addr <= vma->vm_start)
-+		if (check_heap_stack_gap(vma, addr - len, len))
- 			/* remember the address as a hint for next time */
- 			return (mm->free_area_cache = addr-len);
- 	}
-@@ -1491,7 +1701,7 @@ arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
+@@ -1520,7 +1730,7 @@ try_again:
  		 * return with success:
  		 */
  		vma = find_vma(mm, addr);
@@ -71959,7 +71091,7 @@ index da15a79..314aef3 100644
  			/* remember the address as a hint for next time */
  			return (mm->free_area_cache = addr);
  
-@@ -1500,8 +1710,8 @@ arch_get_unmapped_area_topdown(struct file *filp, const unsigned long addr0,
+@@ -1529,8 +1739,8 @@ try_again:
   		        mm->cached_hole_size = vma->vm_start - addr;
  
  		/* try just below the current vma->vm_start */
@@ -71968,9 +71100,9 @@ index da15a79..314aef3 100644
 +		addr = skip_heap_stack_gap(vma, len);
 +	} while (!IS_ERR_VALUE(addr));
  
- bottomup:
+ fail:
  	/*
-@@ -1510,13 +1720,21 @@ bottomup:
+@@ -1553,13 +1763,21 @@ fail:
  	 * can happen with large stack limits and large mmap()
  	 * allocations.
  	 */
@@ -71994,7 +71126,7 @@ index da15a79..314aef3 100644
  	mm->cached_hole_size = ~0UL;
  
  	return addr;
-@@ -1525,6 +1743,12 @@ bottomup:
+@@ -1568,6 +1786,12 @@ fail:
  
  void arch_unmap_area_topdown(struct mm_struct *mm, unsigned long addr)
  {
@@ -72007,7 +71139,7 @@ index da15a79..314aef3 100644
  	/*
  	 * Is this a new hole at the highest possible address?
  	 */
-@@ -1532,8 +1756,10 @@ void arch_unmap_area_topdown(struct mm_struct *mm, unsigned long addr)
+@@ -1575,8 +1799,10 @@ void arch_unmap_area_topdown(struct mm_struct *mm, unsigned long addr)
  		mm->free_area_cache = addr;
  
  	/* dont allow allocations above current base */
@@ -72019,7 +71151,7 @@ index da15a79..314aef3 100644
  }
  
  unsigned long
-@@ -1629,6 +1855,28 @@ find_vma_prev(struct mm_struct *mm, unsigned long addr,
+@@ -1672,6 +1898,28 @@ find_vma_prev(struct mm_struct *mm, unsigned long addr,
  	return vma;
  }
  
@@ -72048,7 +71180,7 @@ index da15a79..314aef3 100644
  /*
   * Verify that the stack growth is acceptable and
   * update accounting. This is shared with both the
-@@ -1645,6 +1893,7 @@ static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, uns
+@@ -1688,6 +1936,7 @@ static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, uns
  		return -ENOMEM;
  
  	/* Stack limit test */
@@ -72056,7 +71188,7 @@ index da15a79..314aef3 100644
  	if (size > ACCESS_ONCE(rlim[RLIMIT_STACK].rlim_cur))
  		return -ENOMEM;
  
-@@ -1655,6 +1904,7 @@ static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, uns
+@@ -1698,6 +1947,7 @@ static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, uns
  		locked = mm->locked_vm + grow;
  		limit = ACCESS_ONCE(rlim[RLIMIT_MEMLOCK].rlim_cur);
  		limit >>= PAGE_SHIFT;
@@ -72064,7 +71196,7 @@ index da15a79..314aef3 100644
  		if (locked > limit && !capable(CAP_IPC_LOCK))
  			return -ENOMEM;
  	}
-@@ -1685,37 +1935,48 @@ static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, uns
+@@ -1728,37 +1978,48 @@ static int acct_stack_growth(struct vm_area_struct *vma, unsigned long size, uns
   * PA-RISC uses this for its stack; IA64 for its Register Backing Store.
   * vma is the last one with address > vma->vm_end.  Have to extend vma.
   */
@@ -72122,7 +71254,7 @@ index da15a79..314aef3 100644
  		unsigned long size, grow;
  
  		size = address - vma->vm_start;
-@@ -1730,6 +1991,8 @@ int expand_upwards(struct vm_area_struct *vma, unsigned long address)
+@@ -1773,6 +2034,8 @@ int expand_upwards(struct vm_area_struct *vma, unsigned long address)
  			}
  		}
  	}
@@ -72131,7 +71263,7 @@ index da15a79..314aef3 100644
  	vma_unlock_anon_vma(vma);
  	khugepaged_enter_vma_merge(vma);
  	return error;
-@@ -1743,6 +2006,8 @@ int expand_downwards(struct vm_area_struct *vma,
+@@ -1786,6 +2049,8 @@ int expand_downwards(struct vm_area_struct *vma,
  				   unsigned long address)
  {
  	int error;
@@ -72140,7 +71272,7 @@ index da15a79..314aef3 100644
  
  	/*
  	 * We must make sure the anon_vma is allocated
-@@ -1756,6 +2021,15 @@ int expand_downwards(struct vm_area_struct *vma,
+@@ -1799,6 +2064,15 @@ int expand_downwards(struct vm_area_struct *vma,
  	if (error)
  		return error;
  
@@ -72156,7 +71288,7 @@ index da15a79..314aef3 100644
  	vma_lock_anon_vma(vma);
  
  	/*
-@@ -1765,9 +2039,17 @@ int expand_downwards(struct vm_area_struct *vma,
+@@ -1808,9 +2082,17 @@ int expand_downwards(struct vm_area_struct *vma,
  	 */
  
  	/* Somebody else might have raced and expanded it already */
@@ -72175,7 +71307,7 @@ index da15a79..314aef3 100644
  		size = vma->vm_end - address;
  		grow = (vma->vm_start - address) >> PAGE_SHIFT;
  
-@@ -1777,11 +2059,22 @@ int expand_downwards(struct vm_area_struct *vma,
+@@ -1820,11 +2102,22 @@ int expand_downwards(struct vm_area_struct *vma,
  			if (!error) {
  				vma->vm_start = address;
  				vma->vm_pgoff -= grow;
@@ -72198,7 +71330,7 @@ index da15a79..314aef3 100644
  	khugepaged_enter_vma_merge(vma);
  	return error;
  }
-@@ -1851,6 +2144,13 @@ static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
+@@ -1894,6 +2187,13 @@ static void remove_vma_list(struct mm_struct *mm, struct vm_area_struct *vma)
  	do {
  		long nrpages = vma_pages(vma);
  
@@ -72212,7 +71344,7 @@ index da15a79..314aef3 100644
  		mm->total_vm -= nrpages;
  		vm_stat_account(mm, vma->vm_flags, vma->vm_file, -nrpages);
  		vma = remove_vma(vma);
-@@ -1896,6 +2196,16 @@ detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -1939,6 +2239,16 @@ detach_vmas_to_be_unmapped(struct mm_struct *mm, struct vm_area_struct *vma,
  	insertion_point = (prev ? &prev->vm_next : &mm->mmap);
  	vma->vm_prev = NULL;
  	do {
@@ -72229,7 +71361,7 @@ index da15a79..314aef3 100644
  		rb_erase(&vma->vm_rb, &mm->mm_rb);
  		mm->map_count--;
  		tail_vma = vma;
-@@ -1924,14 +2234,33 @@ static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
+@@ -1967,14 +2277,33 @@ static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
  	struct vm_area_struct *new;
  	int err = -ENOMEM;
  
@@ -72263,7 +71395,7 @@ index da15a79..314aef3 100644
  	/* most fields are the same, copy all, and then fixup */
  	*new = *vma;
  
-@@ -1944,6 +2273,22 @@ static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
+@@ -1987,6 +2316,22 @@ static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
  		new->vm_pgoff += ((addr - vma->vm_start) >> PAGE_SHIFT);
  	}
  
@@ -72286,7 +71418,7 @@ index da15a79..314aef3 100644
  	pol = mpol_dup(vma_policy(vma));
  	if (IS_ERR(pol)) {
  		err = PTR_ERR(pol);
-@@ -1969,6 +2314,42 @@ static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
+@@ -2012,6 +2357,42 @@ static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
  	else
  		err = vma_adjust(vma, vma->vm_start, addr, vma->vm_pgoff, new);
  
@@ -72329,7 +71461,7 @@ index da15a79..314aef3 100644
  	/* Success. */
  	if (!err)
  		return 0;
-@@ -1981,10 +2362,18 @@ static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
+@@ -2024,10 +2405,18 @@ static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
  			removed_exe_file_vma(mm);
  		fput(new->vm_file);
  	}
@@ -72349,7 +71481,7 @@ index da15a79..314aef3 100644
  	kmem_cache_free(vm_area_cachep, new);
   out_err:
  	return err;
-@@ -1997,6 +2386,15 @@ static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
+@@ -2040,6 +2429,15 @@ static int __split_vma(struct mm_struct * mm, struct vm_area_struct * vma,
  int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
  	      unsigned long addr, int new_below)
  {
@@ -72365,7 +71497,7 @@ index da15a79..314aef3 100644
  	if (mm->map_count >= sysctl_max_map_count)
  		return -ENOMEM;
  
-@@ -2008,11 +2406,30 @@ int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -2051,11 +2449,30 @@ int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
   * work.  This now handles partial unmappings.
   * Jeremy Fitzhardinge <jeremy@goop.org>
   */
@@ -72396,7 +71528,7 @@ index da15a79..314aef3 100644
  	if ((start & ~PAGE_MASK) || start > TASK_SIZE || len > TASK_SIZE-start)
  		return -EINVAL;
  
-@@ -2087,6 +2504,8 @@ int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
+@@ -2130,6 +2547,8 @@ int do_munmap(struct mm_struct *mm, unsigned long start, size_t len)
  	/* Fix up all other VM information */
  	remove_vma_list(mm, vma);
  
@@ -72404,21 +71536,23 @@ index da15a79..314aef3 100644
 +
  	return 0;
  }
+ EXPORT_SYMBOL(do_munmap);
+@@ -2139,6 +2558,13 @@ int vm_munmap(unsigned long start, size_t len)
+ 	int ret;
+ 	struct mm_struct *mm = current->mm;
  
-@@ -2099,22 +2518,18 @@ SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
- 
- 	profile_munmap(addr);
- 
++
 +#ifdef CONFIG_PAX_SEGMEXEC
 +	if ((mm->pax_flags & MF_PAX_SEGMEXEC) &&
-+	    (len > SEGMEXEC_TASK_SIZE || addr > SEGMEXEC_TASK_SIZE-len))
++	    (len > SEGMEXEC_TASK_SIZE || start > SEGMEXEC_TASK_SIZE-len))
 +		return -EINVAL;
 +#endif
 +
  	down_write(&mm->mmap_sem);
- 	ret = do_munmap(mm, addr, len);
+ 	ret = do_munmap(mm, start, len);
  	up_write(&mm->mmap_sem);
- 	return ret;
+@@ -2152,16 +2578,6 @@ SYSCALL_DEFINE2(munmap, unsigned long, addr, size_t, len)
+ 	return vm_munmap(addr, len);
  }
  
 -static inline void verify_mm_writelocked(struct mm_struct *mm)
@@ -72434,7 +71568,7 @@ index da15a79..314aef3 100644
  /*
   *  this is really a simplified "do_mmap".  it only handles
   *  anonymous maps.  eventually we may be able to do some
-@@ -2128,6 +2543,7 @@ unsigned long do_brk(unsigned long addr, unsigned long len)
+@@ -2175,6 +2591,7 @@ static unsigned long do_brk(unsigned long addr, unsigned long len)
  	struct rb_node ** rb_link, * rb_parent;
  	pgoff_t pgoff = addr >> PAGE_SHIFT;
  	int error;
@@ -72442,7 +71576,7 @@ index da15a79..314aef3 100644
  
  	len = PAGE_ALIGN(len);
  	if (!len)
-@@ -2139,16 +2555,30 @@ unsigned long do_brk(unsigned long addr, unsigned long len)
+@@ -2186,16 +2603,30 @@ static unsigned long do_brk(unsigned long addr, unsigned long len)
  
  	flags = VM_DATA_DEFAULT_FLAGS | VM_ACCOUNT | mm->def_flags;
  
@@ -72474,7 +71608,7 @@ index da15a79..314aef3 100644
  		locked += mm->locked_vm;
  		lock_limit = rlimit(RLIMIT_MEMLOCK);
  		lock_limit >>= PAGE_SHIFT;
-@@ -2165,22 +2595,22 @@ unsigned long do_brk(unsigned long addr, unsigned long len)
+@@ -2212,22 +2643,22 @@ static unsigned long do_brk(unsigned long addr, unsigned long len)
  	/*
  	 * Clear old maps.  this also does some error checking for us
  	 */
@@ -72484,9 +71618,10 @@ index da15a79..314aef3 100644
  		if (do_munmap(mm, addr, len))
  			return -ENOMEM;
 -		goto munmap_back;
+-	}
 +		vma = find_vma_prepare(mm, addr, &prev, &rb_link, &rb_parent);
 +		BUG_ON(vma && vma->vm_start < addr + len);
- 	}
++ 	}
  
  	/* Check against address space limits *after* clearing old maps... */
 -	if (!may_expand_vm(mm, len >> PAGE_SHIFT))
@@ -72496,12 +71631,12 @@ index da15a79..314aef3 100644
  	if (mm->map_count > sysctl_max_map_count)
  		return -ENOMEM;
  
--	if (security_vm_enough_memory(len >> PAGE_SHIFT))
-+	if (security_vm_enough_memory(charged))
+-	if (security_vm_enough_memory_mm(mm, len >> PAGE_SHIFT))
++	if (security_vm_enough_memory_mm(mm, charged))
  		return -ENOMEM;
  
  	/* Can we just expand an old private anonymous mapping? */
-@@ -2194,7 +2624,7 @@ unsigned long do_brk(unsigned long addr, unsigned long len)
+@@ -2241,7 +2672,7 @@ static unsigned long do_brk(unsigned long addr, unsigned long len)
  	 */
  	vma = kmem_cache_zalloc(vm_area_cachep, GFP_KERNEL);
  	if (!vma) {
@@ -72510,7 +71645,7 @@ index da15a79..314aef3 100644
  		return -ENOMEM;
  	}
  
-@@ -2208,11 +2638,12 @@ unsigned long do_brk(unsigned long addr, unsigned long len)
+@@ -2255,11 +2686,12 @@ static unsigned long do_brk(unsigned long addr, unsigned long len)
  	vma_link(mm, vma, prev, rb_link, rb_parent);
  out:
  	perf_event_mmap(vma);
@@ -72525,7 +71660,7 @@ index da15a79..314aef3 100644
  	return addr;
  }
  
-@@ -2259,8 +2690,10 @@ void exit_mmap(struct mm_struct *mm)
+@@ -2315,8 +2747,10 @@ void exit_mmap(struct mm_struct *mm)
  	 * Walk the list again, actually closing and freeing it,
  	 * with preemption enabled, without holding any MM locks.
  	 */
@@ -72537,7 +71672,7 @@ index da15a79..314aef3 100644
  
  	BUG_ON(mm->nr_ptes > (FIRST_USER_ADDRESS+PMD_SIZE-1)>>PMD_SHIFT);
  }
-@@ -2274,6 +2707,13 @@ int insert_vm_struct(struct mm_struct * mm, struct vm_area_struct * vma)
+@@ -2330,6 +2764,13 @@ int insert_vm_struct(struct mm_struct * mm, struct vm_area_struct * vma)
  	struct vm_area_struct * __vma, * prev;
  	struct rb_node ** rb_link, * rb_parent;
  
@@ -72551,7 +71686,7 @@ index da15a79..314aef3 100644
  	/*
  	 * The vm_pgoff of a purely anonymous vma should be irrelevant
  	 * until its first write fault, when page's anon_vma and index
-@@ -2296,7 +2736,22 @@ int insert_vm_struct(struct mm_struct * mm, struct vm_area_struct * vma)
+@@ -2352,7 +2793,22 @@ int insert_vm_struct(struct mm_struct * mm, struct vm_area_struct * vma)
  	if ((vma->vm_flags & VM_ACCOUNT) &&
  	     security_vm_enough_memory_mm(mm, vma_pages(vma)))
  		return -ENOMEM;
@@ -72574,7 +71709,7 @@ index da15a79..314aef3 100644
  	return 0;
  }
  
-@@ -2315,6 +2770,8 @@ struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
+@@ -2371,6 +2827,8 @@ struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
  	struct mempolicy *pol;
  	bool faulted_in_anon_vma = true;
  
@@ -72583,7 +71718,7 @@ index da15a79..314aef3 100644
  	/*
  	 * If anonymous vma has not yet been faulted, update new pgoff
  	 * to match new location, to increase its chance of merging.
-@@ -2382,6 +2839,39 @@ struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
+@@ -2438,6 +2896,39 @@ struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
  	return NULL;
  }
  
@@ -72623,7 +71758,7 @@ index da15a79..314aef3 100644
  /*
   * Return true if the calling process may expand its vm space by the passed
   * number of pages
-@@ -2393,6 +2883,12 @@ int may_expand_vm(struct mm_struct *mm, unsigned long npages)
+@@ -2449,6 +2940,12 @@ int may_expand_vm(struct mm_struct *mm, unsigned long npages)
  
  	lim = rlimit(RLIMIT_AS) >> PAGE_SHIFT;
  
@@ -72636,7 +71771,7 @@ index da15a79..314aef3 100644
  	if (cur + npages > lim)
  		return 0;
  	return 1;
-@@ -2463,6 +2959,22 @@ int install_special_mapping(struct mm_struct *mm,
+@@ -2519,6 +3016,22 @@ int install_special_mapping(struct mm_struct *mm,
  	vma->vm_start = addr;
  	vma->vm_end = addr + len;
  
@@ -72660,16 +71795,17 @@ index da15a79..314aef3 100644
  	vma->vm_page_prot = vm_get_page_prot(vma->vm_flags);
  
 diff --git a/mm/mprotect.c b/mm/mprotect.c
-index f437d05..e3763f6 100644
+index a409926..8b32e6d 100644
 --- a/mm/mprotect.c
 +++ b/mm/mprotect.c
-@@ -23,10 +23,16 @@
+@@ -23,10 +23,17 @@
  #include <linux/mmu_notifier.h>
  #include <linux/migrate.h>
  #include <linux/perf_event.h>
 +
 +#ifdef CONFIG_PAX_MPROTECT
 +#include <linux/elf.h>
++#include <linux/binfmts.h>
 +#endif
 +
  #include <asm/uaccess.h>
@@ -72680,7 +71816,7 @@ index f437d05..e3763f6 100644
  
  #ifndef pgprot_modify
  static inline pgprot_t pgprot_modify(pgprot_t oldprot, pgprot_t newprot)
-@@ -141,6 +147,48 @@ static void change_protection(struct vm_area_struct *vma,
+@@ -141,6 +148,48 @@ static void change_protection(struct vm_area_struct *vma,
  	flush_tlb_range(vma, start, end);
  }
  
@@ -72729,7 +71865,7 @@ index f437d05..e3763f6 100644
  int
  mprotect_fixup(struct vm_area_struct *vma, struct vm_area_struct **pprev,
  	unsigned long start, unsigned long end, unsigned long newflags)
-@@ -153,11 +201,29 @@ mprotect_fixup(struct vm_area_struct *vma, struct vm_area_struct **pprev,
+@@ -153,11 +202,29 @@ mprotect_fixup(struct vm_area_struct *vma, struct vm_area_struct **pprev,
  	int error;
  	int dirty_accountable = 0;
  
@@ -72759,7 +71895,7 @@ index f437d05..e3763f6 100644
  	/*
  	 * If we make a private mapping writable we increase our commit;
  	 * but (without finer accounting) cannot reduce our commit if we
-@@ -174,6 +240,42 @@ mprotect_fixup(struct vm_area_struct *vma, struct vm_area_struct **pprev,
+@@ -174,6 +241,42 @@ mprotect_fixup(struct vm_area_struct *vma, struct vm_area_struct **pprev,
  		}
  	}
  
@@ -72802,7 +71938,7 @@ index f437d05..e3763f6 100644
  	/*
  	 * First try to merge with previous and/or next vma.
  	 */
-@@ -204,9 +306,21 @@ success:
+@@ -204,9 +307,21 @@ success:
  	 * vm_flags and vm_page_prot are protected by the mmap_sem
  	 * held in write mode.
  	 */
@@ -72825,7 +71961,7 @@ index f437d05..e3763f6 100644
  
  	if (vma_wants_writenotify(vma)) {
  		vma->vm_page_prot = vm_get_page_prot(newflags & ~VM_SHARED);
-@@ -248,6 +362,17 @@ SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
+@@ -248,6 +363,17 @@ SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
  	end = start + len;
  	if (end <= start)
  		return -ENOMEM;
@@ -72843,7 +71979,7 @@ index f437d05..e3763f6 100644
  	if (!arch_validate_prot(prot))
  		return -EINVAL;
  
-@@ -255,7 +380,7 @@ SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
+@@ -255,7 +381,7 @@ SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
  	/*
  	 * Does the application expect PROT_READ to imply PROT_EXEC:
  	 */
@@ -72852,7 +71988,7 @@ index f437d05..e3763f6 100644
  		prot |= PROT_EXEC;
  
  	vm_flags = calc_vm_prot_bits(prot);
-@@ -288,6 +413,11 @@ SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
+@@ -288,6 +414,11 @@ SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
  	if (start > vma->vm_start)
  		prev = vma;
  
@@ -72864,7 +72000,7 @@ index f437d05..e3763f6 100644
  	for (nstart = start ; ; ) {
  		unsigned long newflags;
  
-@@ -297,6 +427,14 @@ SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
+@@ -297,6 +428,14 @@ SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
  
  		/* newflags >> 4 shift VM_MAY% in place of VM_% */
  		if ((newflags & ~(newflags >> 4)) & (VM_READ | VM_WRITE | VM_EXEC)) {
@@ -72879,7 +72015,7 @@ index f437d05..e3763f6 100644
  			error = -EACCES;
  			goto out;
  		}
-@@ -311,6 +449,9 @@ SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
+@@ -311,6 +450,9 @@ SYSCALL_DEFINE3(mprotect, unsigned long, start, size_t, len,
  		error = mprotect_fixup(vma, &prev, nstart, tmp, newflags);
  		if (error)
  			goto out;
@@ -72890,7 +72026,7 @@ index f437d05..e3763f6 100644
  
  		if (nstart < prev->vm_end)
 diff --git a/mm/mremap.c b/mm/mremap.c
-index 87bb839..c3bfadb 100644
+index db8d983..76506cb 100644
 --- a/mm/mremap.c
 +++ b/mm/mremap.c
 @@ -106,6 +106,12 @@ static void move_ptes(struct vm_area_struct *vma, pmd_t *old_pmd,
@@ -72998,7 +72134,7 @@ index 87bb839..c3bfadb 100644
  out:
  	if (ret & ~PAGE_MASK)
 diff --git a/mm/nommu.c b/mm/nommu.c
-index f59e170..34e2a2b 100644
+index bb8f4f0..40d3e02 100644
 --- a/mm/nommu.c
 +++ b/mm/nommu.c
 @@ -62,7 +62,6 @@ int sysctl_overcommit_memory = OVERCOMMIT_GUESS; /* heuristic overcommit */
@@ -73025,7 +72161,7 @@ index f59e170..34e2a2b 100644
   * expand a stack to a given address
   * - not supported under NOMMU conditions
   */
-@@ -1555,6 +1545,7 @@ int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -1580,6 +1570,7 @@ int split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
  
  	/* most fields are the same, copy all, and then fixup */
  	*new = *vma;
@@ -73034,7 +72170,7 @@ index f59e170..34e2a2b 100644
  	new->vm_region = region;
  
 diff --git a/mm/page_alloc.c b/mm/page_alloc.c
-index a13ded1..b949d15 100644
+index 918330f..ae99ae1 100644
 --- a/mm/page_alloc.c
 +++ b/mm/page_alloc.c
 @@ -335,7 +335,7 @@ out:
@@ -73081,7 +72217,7 @@ index a13ded1..b949d15 100644
  
  	if (order && (gfp_flags & __GFP_COMP))
  		prep_compound_page(page, order);
-@@ -3468,7 +3480,13 @@ static int pageblock_is_reserved(unsigned long start_pfn, unsigned long end_pfn)
+@@ -3523,7 +3535,13 @@ static int pageblock_is_reserved(unsigned long start_pfn, unsigned long end_pfn)
  	unsigned long pfn;
  
  	for (pfn = start_pfn; pfn < end_pfn; pfn++) {
@@ -73096,7 +72232,7 @@ index a13ded1..b949d15 100644
  	}
  	return 0;
 diff --git a/mm/percpu.c b/mm/percpu.c
-index 317de23..1ba7776 100644
+index bb4be74..a43ea85 100644
 --- a/mm/percpu.c
 +++ b/mm/percpu.c
 @@ -122,7 +122,7 @@ static unsigned int pcpu_low_unit_cpu __read_mostly;
@@ -73160,10 +72296,10 @@ index c20ff48..137702a 100644
  	if (!mm || IS_ERR(mm)) {
  		rc = IS_ERR(mm) ? PTR_ERR(mm) : -ESRCH;
 diff --git a/mm/rmap.c b/mm/rmap.c
-index c8454e0..b04f3a2 100644
+index 5b5ad58..0f77903 100644
 --- a/mm/rmap.c
 +++ b/mm/rmap.c
-@@ -152,6 +152,10 @@ int anon_vma_prepare(struct vm_area_struct *vma)
+@@ -167,6 +167,10 @@ int anon_vma_prepare(struct vm_area_struct *vma)
  	struct anon_vma *anon_vma = vma->anon_vma;
  	struct anon_vma_chain *avc;
  
@@ -73174,7 +72310,7 @@ index c8454e0..b04f3a2 100644
  	might_sleep();
  	if (unlikely(!anon_vma)) {
  		struct mm_struct *mm = vma->vm_mm;
-@@ -161,6 +165,12 @@ int anon_vma_prepare(struct vm_area_struct *vma)
+@@ -176,6 +180,12 @@ int anon_vma_prepare(struct vm_area_struct *vma)
  		if (!avc)
  			goto out_enomem;
  
@@ -73187,7 +72323,7 @@ index c8454e0..b04f3a2 100644
  		anon_vma = find_mergeable_anon_vma(vma);
  		allocated = NULL;
  		if (!anon_vma) {
-@@ -174,6 +184,21 @@ int anon_vma_prepare(struct vm_area_struct *vma)
+@@ -189,6 +199,18 @@ int anon_vma_prepare(struct vm_area_struct *vma)
  		/* page_table_lock to protect against threads */
  		spin_lock(&mm->page_table_lock);
  		if (likely(!vma->anon_vma)) {
@@ -73198,18 +72334,15 @@ index c8454e0..b04f3a2 100644
 +			if (vma_m) {
 +				BUG_ON(vma_m->anon_vma);
 +				vma_m->anon_vma = anon_vma;
-+				avc_m->anon_vma = anon_vma;
-+				avc_m->vma = vma;
-+				list_add(&avc_m->same_vma, &vma_m->anon_vma_chain);
-+				list_add(&avc_m->same_anon_vma, &anon_vma->head);
++				anon_vma_chain_link(vma_m, avc_m, anon_vma);
 +				avc_m = NULL;
 +			}
 +#endif
 +
  			vma->anon_vma = anon_vma;
- 			avc->anon_vma = anon_vma;
- 			avc->vma = vma;
-@@ -187,12 +212,24 @@ int anon_vma_prepare(struct vm_area_struct *vma)
+ 			anon_vma_chain_link(vma, avc, anon_vma);
+ 			allocated = NULL;
+@@ -199,12 +221,24 @@ int anon_vma_prepare(struct vm_area_struct *vma)
  
  		if (unlikely(allocated))
  			put_anon_vma(allocated);
@@ -73234,7 +72367,7 @@ index c8454e0..b04f3a2 100644
  	anon_vma_chain_free(avc);
   out_enomem:
  	return -ENOMEM;
-@@ -243,7 +280,7 @@ static void anon_vma_chain_link(struct vm_area_struct *vma,
+@@ -240,7 +274,7 @@ static inline void unlock_anon_vma_root(struct anon_vma *root)
   * Attach the anon_vmas from src to dst.
   * Returns 0 on success, -ENOMEM on failure.
   */
@@ -73243,7 +72376,7 @@ index c8454e0..b04f3a2 100644
  {
  	struct anon_vma_chain *avc, *pavc;
  	struct anon_vma *root = NULL;
-@@ -321,7 +358,7 @@ void anon_vma_moveto_tail(struct vm_area_struct *dst)
+@@ -318,7 +352,7 @@ void anon_vma_moveto_tail(struct vm_area_struct *dst)
   * the corresponding VMA in the parent process is attached to.
   * Returns 0 on success, non-zero on failure.
   */
@@ -73253,7 +72386,7 @@ index c8454e0..b04f3a2 100644
  	struct anon_vma_chain *avc;
  	struct anon_vma *anon_vma;
 diff --git a/mm/shmem.c b/mm/shmem.c
-index 269d049..a9d2b50 100644
+index f99ff3e..faea8b6 100644
 --- a/mm/shmem.c
 +++ b/mm/shmem.c
 @@ -31,7 +31,7 @@
@@ -73274,7 +72407,7 @@ index 269d049..a9d2b50 100644
  
  struct shmem_xattr {
  	struct list_head list;	/* anchored by shmem_inode_info->xattr_list */
-@@ -2180,8 +2180,7 @@ int shmem_fill_super(struct super_block *sb, void *data, int silent)
+@@ -2235,8 +2235,7 @@ int shmem_fill_super(struct super_block *sb, void *data, int silent)
  	int err = -ENOMEM;
  
  	/* Round up to L1_CACHE_BYTES to resist false sharing */
@@ -73285,7 +72418,7 @@ index 269d049..a9d2b50 100644
  		return -ENOMEM;
  
 diff --git a/mm/slab.c b/mm/slab.c
-index f0bd785..348b96a 100644
+index e901a36..ee8fe97 100644
 --- a/mm/slab.c
 +++ b/mm/slab.c
 @@ -153,7 +153,7 @@
@@ -73375,7 +72508,7 @@ index f0bd785..348b96a 100644
  					NULL);
  		}
  #ifdef CONFIG_ZONE_DMA
-@@ -4339,10 +4339,10 @@ static int s_show(struct seq_file *m, void *p)
+@@ -4390,10 +4390,10 @@ static int s_show(struct seq_file *m, void *p)
  	}
  	/* cpu stats */
  	{
@@ -73390,7 +72523,7 @@ index f0bd785..348b96a 100644
  
  		seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
  			   allochit, allocmiss, freehit, freemiss);
-@@ -4601,13 +4601,62 @@ static int __init slab_proc_init(void)
+@@ -4652,13 +4652,62 @@ static int __init slab_proc_init(void)
  {
  	proc_create("slabinfo",S_IWUSR|S_IRUSR,NULL,&proc_slabinfo_operations);
  #ifdef CONFIG_DEBUG_SLAB_LEAK
@@ -73811,10 +72944,10 @@ index 8105be4..e045f96 100644
  EXPORT_SYMBOL(kmem_cache_free);
  
 diff --git a/mm/slub.c b/mm/slub.c
-index 0342a5d..8180ae9 100644
+index 80848cd..14cd19c 100644
 --- a/mm/slub.c
 +++ b/mm/slub.c
-@@ -208,7 +208,7 @@ struct track {
+@@ -209,7 +209,7 @@ struct track {
  
  enum track_item { TRACK_ALLOC, TRACK_FREE };
  
@@ -73823,7 +72956,7 @@ index 0342a5d..8180ae9 100644
  static int sysfs_slab_add(struct kmem_cache *);
  static int sysfs_slab_alias(struct kmem_cache *, const char *);
  static void sysfs_slab_remove(struct kmem_cache *);
-@@ -532,7 +532,7 @@ static void print_track(const char *s, struct track *t)
+@@ -538,7 +538,7 @@ static void print_track(const char *s, struct track *t)
  	if (!t->addr)
  		return;
  
@@ -73832,7 +72965,7 @@ index 0342a5d..8180ae9 100644
  		s, (void *)t->addr, jiffies - t->when, t->cpu, t->pid);
  #ifdef CONFIG_STACKTRACE
  	{
-@@ -2571,6 +2571,8 @@ void kmem_cache_free(struct kmem_cache *s, void *x)
+@@ -2600,6 +2600,8 @@ void kmem_cache_free(struct kmem_cache *s, void *x)
  
  	page = virt_to_head_page(x);
  
@@ -73841,7 +72974,7 @@ index 0342a5d..8180ae9 100644
  	slab_free(s, page, x, _RET_IP_);
  
  	trace_kmem_cache_free(_RET_IP_, x);
-@@ -2604,7 +2606,7 @@ static int slub_min_objects;
+@@ -2633,7 +2635,7 @@ static int slub_min_objects;
   * Merge control. If this is set then no merging of slab caches will occur.
   * (Could be removed. This was introduced to pacify the merge skeptics.)
   */
@@ -73850,7 +72983,7 @@ index 0342a5d..8180ae9 100644
  
  /*
   * Calculate the order of allocation given an slab object size.
-@@ -3057,7 +3059,7 @@ static int kmem_cache_open(struct kmem_cache *s,
+@@ -3086,7 +3088,7 @@ static int kmem_cache_open(struct kmem_cache *s,
  	else
  		s->cpu_partial = 30;
  
@@ -73859,7 +72992,7 @@ index 0342a5d..8180ae9 100644
  #ifdef CONFIG_NUMA
  	s->remote_node_defrag_ratio = 1000;
  #endif
-@@ -3161,8 +3163,7 @@ static inline int kmem_cache_close(struct kmem_cache *s)
+@@ -3190,8 +3192,7 @@ static inline int kmem_cache_close(struct kmem_cache *s)
  void kmem_cache_destroy(struct kmem_cache *s)
  {
  	down_write(&slub_lock);
@@ -73869,7 +73002,7 @@ index 0342a5d..8180ae9 100644
  		list_del(&s->list);
  		up_write(&slub_lock);
  		if (kmem_cache_close(s)) {
-@@ -3373,6 +3374,50 @@ void *__kmalloc_node(size_t size, gfp_t flags, int node)
+@@ -3402,6 +3403,50 @@ void *__kmalloc_node(size_t size, gfp_t flags, int node)
  EXPORT_SYMBOL(__kmalloc_node);
  #endif
  
@@ -73920,7 +73053,7 @@ index 0342a5d..8180ae9 100644
  size_t ksize(const void *object)
  {
  	struct page *page;
-@@ -3647,7 +3692,7 @@ static void __init kmem_cache_bootstrap_fixup(struct kmem_cache *s)
+@@ -3676,7 +3721,7 @@ static void __init kmem_cache_bootstrap_fixup(struct kmem_cache *s)
  	int node;
  
  	list_add(&s->list, &slab_caches);
@@ -73929,7 +73062,7 @@ index 0342a5d..8180ae9 100644
  
  	for_each_node_state(node, N_NORMAL_MEMORY) {
  		struct kmem_cache_node *n = get_node(s, node);
-@@ -3767,17 +3812,17 @@ void __init kmem_cache_init(void)
+@@ -3796,17 +3841,17 @@ void __init kmem_cache_init(void)
  
  	/* Caches that are not of the two-to-the-power-of size */
  	if (KMALLOC_MIN_SIZE <= 32) {
@@ -73950,7 +73083,7 @@ index 0342a5d..8180ae9 100644
  		caches++;
  	}
  
-@@ -3845,7 +3890,7 @@ static int slab_unmergeable(struct kmem_cache *s)
+@@ -3874,7 +3919,7 @@ static int slab_unmergeable(struct kmem_cache *s)
  	/*
  	 * We may have set a slab to be unmergeable during bootstrap.
  	 */
@@ -73959,7 +73092,7 @@ index 0342a5d..8180ae9 100644
  		return 1;
  
  	return 0;
-@@ -3904,7 +3949,7 @@ struct kmem_cache *kmem_cache_create(const char *name, size_t size,
+@@ -3933,7 +3978,7 @@ struct kmem_cache *kmem_cache_create(const char *name, size_t size,
  	down_write(&slub_lock);
  	s = find_mergeable(size, align, flags, name, ctor);
  	if (s) {
@@ -73968,7 +73101,7 @@ index 0342a5d..8180ae9 100644
  		/*
  		 * Adjust the object sizes so that we clear
  		 * the complete object on kzalloc.
-@@ -3913,7 +3958,7 @@ struct kmem_cache *kmem_cache_create(const char *name, size_t size,
+@@ -3942,7 +3987,7 @@ struct kmem_cache *kmem_cache_create(const char *name, size_t size,
  		s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
  
  		if (sysfs_slab_alias(s, name)) {
@@ -73977,7 +73110,7 @@ index 0342a5d..8180ae9 100644
  			goto err;
  		}
  		up_write(&slub_lock);
-@@ -4042,7 +4087,7 @@ void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
+@@ -4071,7 +4116,7 @@ void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
  }
  #endif
  
@@ -73986,7 +73119,7 @@ index 0342a5d..8180ae9 100644
  static int count_inuse(struct page *page)
  {
  	return page->inuse;
-@@ -4429,12 +4474,12 @@ static void resiliency_test(void)
+@@ -4458,12 +4503,12 @@ static void resiliency_test(void)
  	validate_slab_cache(kmalloc_caches[9]);
  }
  #else
@@ -74001,7 +73134,7 @@ index 0342a5d..8180ae9 100644
  enum slab_stat_type {
  	SL_ALL,			/* All slabs */
  	SL_PARTIAL,		/* Only partially allocated slabs */
-@@ -4677,7 +4722,7 @@ SLAB_ATTR_RO(ctor);
+@@ -4706,7 +4751,7 @@ SLAB_ATTR_RO(ctor);
  
  static ssize_t aliases_show(struct kmem_cache *s, char *buf)
  {
@@ -74010,7 +73143,7 @@ index 0342a5d..8180ae9 100644
  }
  SLAB_ATTR_RO(aliases);
  
-@@ -5244,6 +5289,7 @@ static char *create_unique_id(struct kmem_cache *s)
+@@ -5277,6 +5322,7 @@ static char *create_unique_id(struct kmem_cache *s)
  	return name;
  }
  
@@ -74018,7 +73151,7 @@ index 0342a5d..8180ae9 100644
  static int sysfs_slab_add(struct kmem_cache *s)
  {
  	int err;
-@@ -5306,6 +5352,7 @@ static void sysfs_slab_remove(struct kmem_cache *s)
+@@ -5339,6 +5385,7 @@ static void sysfs_slab_remove(struct kmem_cache *s)
  	kobject_del(&s->kobj);
  	kobject_put(&s->kobj);
  }
@@ -74026,7 +73159,7 @@ index 0342a5d..8180ae9 100644
  
  /*
   * Need to buffer aliases during bootup until sysfs becomes
-@@ -5319,6 +5366,7 @@ struct saved_alias {
+@@ -5352,6 +5399,7 @@ struct saved_alias {
  
  static struct saved_alias *alias_list;
  
@@ -74034,7 +73167,7 @@ index 0342a5d..8180ae9 100644
  static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
  {
  	struct saved_alias *al;
-@@ -5341,6 +5389,7 @@ static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
+@@ -5374,6 +5422,7 @@ static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
  	alias_list = al;
  	return 0;
  }
@@ -74065,7 +73198,7 @@ index 1b7e22a..3fcd4f3 100644
  	return pgd;
  }
 diff --git a/mm/swap.c b/mm/swap.c
-index 14380e9..e244704 100644
+index 5c13f13..f1cfc13 100644
 --- a/mm/swap.c
 +++ b/mm/swap.c
 @@ -30,6 +30,7 @@
@@ -74086,7 +73219,7 @@ index 14380e9..e244704 100644
  }
  
 diff --git a/mm/swapfile.c b/mm/swapfile.c
-index 099c209..7db7b6f 100644
+index fafc26d..1b7493e 100644
 --- a/mm/swapfile.c
 +++ b/mm/swapfile.c
 @@ -61,7 +61,7 @@ static DEFINE_MUTEX(swapon_mutex);
@@ -74098,7 +73231,7 @@ index 099c209..7db7b6f 100644
  
  static inline unsigned char swap_count(unsigned char ent)
  {
-@@ -1669,7 +1669,7 @@ SYSCALL_DEFINE1(swapoff, const char __user *, specialfile)
+@@ -1671,7 +1671,7 @@ SYSCALL_DEFINE1(swapoff, const char __user *, specialfile)
  	}
  	filp_close(swap_file, NULL);
  	err = 0;
@@ -74107,7 +73240,7 @@ index 099c209..7db7b6f 100644
  	wake_up_interruptible(&proc_poll_wait);
  
  out_dput:
-@@ -1685,8 +1685,8 @@ static unsigned swaps_poll(struct file *file, poll_table *wait)
+@@ -1687,8 +1687,8 @@ static unsigned swaps_poll(struct file *file, poll_table *wait)
  
  	poll_wait(file, &proc_poll_wait, wait);
  
@@ -74118,7 +73251,7 @@ index 099c209..7db7b6f 100644
  		return POLLIN | POLLRDNORM | POLLERR | POLLPRI;
  	}
  
-@@ -1784,7 +1784,7 @@ static int swaps_open(struct inode *inode, struct file *file)
+@@ -1786,7 +1786,7 @@ static int swaps_open(struct inode *inode, struct file *file)
  		return ret;
  
  	seq = file->private_data;
@@ -74127,7 +73260,7 @@ index 099c209..7db7b6f 100644
  	return 0;
  }
  
-@@ -2122,7 +2122,7 @@ SYSCALL_DEFINE2(swapon, const char __user *, specialfile, int, swap_flags)
+@@ -2127,7 +2127,7 @@ SYSCALL_DEFINE2(swapon, const char __user *, specialfile, int, swap_flags)
  		(p->flags & SWP_DISCARDABLE) ? "D" : "");
  
  	mutex_unlock(&swapon_mutex);
@@ -74137,10 +73270,10 @@ index 099c209..7db7b6f 100644
  
  	if (S_ISREG(inode->i_mode))
 diff --git a/mm/util.c b/mm/util.c
-index 136ac4f..f917fa9 100644
+index ae962b3..0bba886 100644
 --- a/mm/util.c
 +++ b/mm/util.c
-@@ -243,6 +243,12 @@ void __vma_link_list(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -284,6 +284,12 @@ done:
  void arch_pick_mmap_layout(struct mm_struct *mm)
  {
  	mm->mmap_base = TASK_UNMAPPED_BASE;
@@ -74154,7 +73287,7 @@ index 136ac4f..f917fa9 100644
  	mm->unmap_area = arch_unmap_area;
  }
 diff --git a/mm/vmalloc.c b/mm/vmalloc.c
-index 86ce9a5..550d03c 100644
+index 94dff88..7d25ed1 100644
 --- a/mm/vmalloc.c
 +++ b/mm/vmalloc.c
 @@ -39,8 +39,19 @@ static void vunmap_pte_range(pmd_t *pmd, unsigned long addr, unsigned long end)
@@ -74365,7 +73498,7 @@ index 86ce9a5..550d03c 100644
  		goto err_free2;
  
 diff --git a/mm/vmstat.c b/mm/vmstat.c
-index f600557..1459fc8 100644
+index 7db1b9b..e9f6b07 100644
 --- a/mm/vmstat.c
 +++ b/mm/vmstat.c
 @@ -78,7 +78,7 @@ void vm_events_fold_cpu(int cpu)
@@ -74553,10 +73686,10 @@ index 23f45ce..c748f1a 100644
  #undef __HANDLE_ITEM
  }
 diff --git a/net/batman-adv/bat_iv_ogm.c b/net/batman-adv/bat_iv_ogm.c
-index 3512e25..2b33401 100644
+index a6d5d63..1cc6c2b 100644
 --- a/net/batman-adv/bat_iv_ogm.c
 +++ b/net/batman-adv/bat_iv_ogm.c
-@@ -541,7 +541,7 @@ void bat_ogm_schedule(struct hard_iface *hard_iface, int tt_num_changes)
+@@ -539,7 +539,7 @@ static void bat_iv_ogm_schedule(struct hard_iface *hard_iface,
  
  	/* change sequence number to network order */
  	batman_ogm_packet->seqno =
@@ -74565,7 +73698,7 @@ index 3512e25..2b33401 100644
  
  	batman_ogm_packet->ttvn = atomic_read(&bat_priv->ttvn);
  	batman_ogm_packet->tt_crc = htons((uint16_t)
-@@ -561,7 +561,7 @@ void bat_ogm_schedule(struct hard_iface *hard_iface, int tt_num_changes)
+@@ -559,7 +559,7 @@ static void bat_iv_ogm_schedule(struct hard_iface *hard_iface,
  	else
  		batman_ogm_packet->gw_flags = NO_FLAGS;
  
@@ -74573,8 +73706,8 @@ index 3512e25..2b33401 100644
 +	atomic_inc_unchecked(&hard_iface->seqno);
  
  	slide_own_bcast_window(hard_iface);
- 	bat_ogm_queue_add(bat_priv, hard_iface->packet_buff,
-@@ -922,7 +922,7 @@ static void bat_ogm_process(const struct ethhdr *ethhdr,
+ 	bat_iv_ogm_queue_add(bat_priv, hard_iface->packet_buff,
+@@ -917,7 +917,7 @@ static void bat_iv_ogm_process(const struct ethhdr *ethhdr,
  		return;
  
  	/* could be changed by schedule_own_packet() */
@@ -74584,10 +73717,10 @@ index 3512e25..2b33401 100644
  	has_directlink_flag = (batman_ogm_packet->flags & DIRECTLINK ? 1 : 0);
  
 diff --git a/net/batman-adv/hard-interface.c b/net/batman-adv/hard-interface.c
-index 7704df4..beb4e16 100644
+index 3778977..f6a9450 100644
 --- a/net/batman-adv/hard-interface.c
 +++ b/net/batman-adv/hard-interface.c
-@@ -326,8 +326,8 @@ int hardif_enable_interface(struct hard_iface *hard_iface,
+@@ -328,8 +328,8 @@ int hardif_enable_interface(struct hard_iface *hard_iface,
  	hard_iface->batman_adv_ptype.dev = hard_iface->net_dev;
  	dev_add_pack(&hard_iface->batman_adv_ptype);
  
@@ -74599,7 +73732,7 @@ index 7704df4..beb4e16 100644
  		 hard_iface->net_dev->name);
  
 diff --git a/net/batman-adv/soft-interface.c b/net/batman-adv/soft-interface.c
-index 987c75a..20d6f36 100644
+index a5590f4..8d31969 100644
 --- a/net/batman-adv/soft-interface.c
 +++ b/net/batman-adv/soft-interface.c
 @@ -645,7 +645,7 @@ static int interface_tx(struct sk_buff *skb, struct net_device *soft_iface)
@@ -74611,7 +73744,7 @@ index 987c75a..20d6f36 100644
  
  		add_bcast_packet_to_list(bat_priv, skb, 1);
  
-@@ -843,7 +843,7 @@ struct net_device *softif_create(const char *name)
+@@ -841,7 +841,7 @@ struct net_device *softif_create(const char *name)
  	atomic_set(&bat_priv->batman_queue_left, BATMAN_QUEUE_LEN);
  
  	atomic_set(&bat_priv->mesh_state, MESH_INACTIVE);
@@ -74621,7 +73754,7 @@ index 987c75a..20d6f36 100644
  	atomic_set(&bat_priv->tt_local_changes, 0);
  	atomic_set(&bat_priv->tt_ogm_append_cnt, 0);
 diff --git a/net/batman-adv/types.h b/net/batman-adv/types.h
-index e9eb043..d174eeb 100644
+index 302efb5..1590365 100644
 --- a/net/batman-adv/types.h
 +++ b/net/batman-adv/types.h
 @@ -38,8 +38,8 @@ struct hard_iface {
@@ -74635,7 +73768,7 @@ index e9eb043..d174eeb 100644
  	unsigned char *packet_buff;
  	int packet_len;
  	struct kobject *hardif_obj;
-@@ -154,7 +154,7 @@ struct bat_priv {
+@@ -155,7 +155,7 @@ struct bat_priv {
  	atomic_t orig_interval;		/* uint */
  	atomic_t hop_penalty;		/* uint */
  	atomic_t log_level;		/* uint */
@@ -74645,7 +73778,7 @@ index e9eb043..d174eeb 100644
  	atomic_t batman_queue_left;
  	atomic_t ttvn; /* translation table version number */
 diff --git a/net/batman-adv/unicast.c b/net/batman-adv/unicast.c
-index 07d1c1d..7e9bea9 100644
+index 676f6a6..3b4e668 100644
 --- a/net/batman-adv/unicast.c
 +++ b/net/batman-adv/unicast.c
 @@ -264,7 +264,7 @@ int frag_send_skb(struct sk_buff *skb, struct bat_priv *bat_priv,
@@ -74658,10 +73791,10 @@ index 07d1c1d..7e9bea9 100644
  	frag2->seqno = htons(seqno);
  
 diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c
-index 280953b..cd219bb 100644
+index 5238b6b..c9798ce 100644
 --- a/net/bluetooth/hci_conn.c
 +++ b/net/bluetooth/hci_conn.c
-@@ -234,7 +234,7 @@ void hci_le_ltk_reply(struct hci_conn *conn, u8 ltk[16])
+@@ -233,7 +233,7 @@ void hci_le_ltk_reply(struct hci_conn *conn, u8 ltk[16])
  	memset(&cp, 0, sizeof(cp));
  
  	cp.handle = cpu_to_le16(conn->handle);
@@ -74671,10 +73804,10 @@ index 280953b..cd219bb 100644
  	hci_send_cmd(hdev, HCI_OP_LE_LTK_REPLY, sizeof(cp), &cp);
  }
 diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
-index 32d338c..d24bcdb 100644
+index 6f9c25b..d19fd66 100644
 --- a/net/bluetooth/l2cap_core.c
 +++ b/net/bluetooth/l2cap_core.c
-@@ -2418,8 +2418,10 @@ static int l2cap_parse_conf_rsp(struct l2cap_chan *chan, void *rsp, int len, voi
+@@ -2466,8 +2466,10 @@ static int l2cap_parse_conf_rsp(struct l2cap_chan *chan, void *rsp, int len, voi
  			break;
  
  		case L2CAP_CONF_RFC:
@@ -74687,7 +73820,7 @@ index 32d338c..d24bcdb 100644
  
  			if (test_bit(CONF_STATE2_DEVICE, &chan->conf_state) &&
  							rfc.mode != chan->mode)
-@@ -2537,8 +2539,10 @@ static void l2cap_conf_rfc_get(struct l2cap_chan *chan, void *rsp, int len)
+@@ -2585,8 +2587,10 @@ static void l2cap_conf_rfc_get(struct l2cap_chan *chan, void *rsp, int len)
  
  		switch (type) {
  		case L2CAP_CONF_RFC:
@@ -74713,139 +73846,6 @@ index 5fe2ff3..10968b5 100644
  			BUGPRINT("c2u Didn't work\n");
  			ret = -EFAULT;
  			break;
-diff --git a/net/caif/caif_socket.c b/net/caif/caif_socket.c
-index a97d97a..6f679ed 100644
---- a/net/caif/caif_socket.c
-+++ b/net/caif/caif_socket.c
-@@ -48,19 +48,20 @@ static struct dentry *debugfsdir;
- #ifdef CONFIG_DEBUG_FS
- struct debug_fs_counter {
- 	atomic_t caif_nr_socks;
--	atomic_t caif_sock_create;
--	atomic_t num_connect_req;
--	atomic_t num_connect_resp;
--	atomic_t num_connect_fail_resp;
--	atomic_t num_disconnect;
--	atomic_t num_remote_shutdown_ind;
--	atomic_t num_tx_flow_off_ind;
--	atomic_t num_tx_flow_on_ind;
--	atomic_t num_rx_flow_off;
--	atomic_t num_rx_flow_on;
-+	atomic_unchecked_t caif_sock_create;
-+	atomic_unchecked_t num_connect_req;
-+	atomic_unchecked_t num_connect_resp;
-+	atomic_unchecked_t num_connect_fail_resp;
-+	atomic_unchecked_t num_disconnect;
-+	atomic_unchecked_t num_remote_shutdown_ind;
-+	atomic_unchecked_t num_tx_flow_off_ind;
-+	atomic_unchecked_t num_tx_flow_on_ind;
-+	atomic_unchecked_t num_rx_flow_off;
-+	atomic_unchecked_t num_rx_flow_on;
- };
- static struct debug_fs_counter cnt;
- #define	dbfs_atomic_inc(v) atomic_inc_return(v)
-+#define	dbfs_atomic_inc_unchecked(v) atomic_inc_return_unchecked(v)
- #define	dbfs_atomic_dec(v) atomic_dec_return(v)
- #else
- #define	dbfs_atomic_inc(v) 0
-@@ -161,7 +162,7 @@ static int caif_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
- 					atomic_read(&cf_sk->sk.sk_rmem_alloc),
- 					sk_rcvbuf_lowwater(cf_sk));
- 		set_rx_flow_off(cf_sk);
--		dbfs_atomic_inc(&cnt.num_rx_flow_off);
-+		dbfs_atomic_inc_unchecked(&cnt.num_rx_flow_off);
- 		caif_flow_ctrl(sk, CAIF_MODEMCMD_FLOW_OFF_REQ);
- 	}
- 
-@@ -172,7 +173,7 @@ static int caif_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
- 		set_rx_flow_off(cf_sk);
- 		if (net_ratelimit())
- 			pr_debug("sending flow OFF due to rmem_schedule\n");
--		dbfs_atomic_inc(&cnt.num_rx_flow_off);
-+		dbfs_atomic_inc_unchecked(&cnt.num_rx_flow_off);
- 		caif_flow_ctrl(sk, CAIF_MODEMCMD_FLOW_OFF_REQ);
- 	}
- 	skb->dev = NULL;
-@@ -233,14 +234,14 @@ static void caif_ctrl_cb(struct cflayer *layr,
- 	switch (flow) {
- 	case CAIF_CTRLCMD_FLOW_ON_IND:
- 		/* OK from modem to start sending again */
--		dbfs_atomic_inc(&cnt.num_tx_flow_on_ind);
-+		dbfs_atomic_inc_unchecked(&cnt.num_tx_flow_on_ind);
- 		set_tx_flow_on(cf_sk);
- 		cf_sk->sk.sk_state_change(&cf_sk->sk);
- 		break;
- 
- 	case CAIF_CTRLCMD_FLOW_OFF_IND:
- 		/* Modem asks us to shut up */
--		dbfs_atomic_inc(&cnt.num_tx_flow_off_ind);
-+		dbfs_atomic_inc_unchecked(&cnt.num_tx_flow_off_ind);
- 		set_tx_flow_off(cf_sk);
- 		cf_sk->sk.sk_state_change(&cf_sk->sk);
- 		break;
-@@ -249,7 +250,7 @@ static void caif_ctrl_cb(struct cflayer *layr,
- 		/* We're now connected */
- 		caif_client_register_refcnt(&cf_sk->layer,
- 						cfsk_hold, cfsk_put);
--		dbfs_atomic_inc(&cnt.num_connect_resp);
-+		dbfs_atomic_inc_unchecked(&cnt.num_connect_resp);
- 		cf_sk->sk.sk_state = CAIF_CONNECTED;
- 		set_tx_flow_on(cf_sk);
- 		cf_sk->sk.sk_state_change(&cf_sk->sk);
-@@ -263,7 +264,7 @@ static void caif_ctrl_cb(struct cflayer *layr,
- 
- 	case CAIF_CTRLCMD_INIT_FAIL_RSP:
- 		/* Connect request failed */
--		dbfs_atomic_inc(&cnt.num_connect_fail_resp);
-+		dbfs_atomic_inc_unchecked(&cnt.num_connect_fail_resp);
- 		cf_sk->sk.sk_err = ECONNREFUSED;
- 		cf_sk->sk.sk_state = CAIF_DISCONNECTED;
- 		cf_sk->sk.sk_shutdown = SHUTDOWN_MASK;
-@@ -277,7 +278,7 @@ static void caif_ctrl_cb(struct cflayer *layr,
- 
- 	case CAIF_CTRLCMD_REMOTE_SHUTDOWN_IND:
- 		/* Modem has closed this connection, or device is down. */
--		dbfs_atomic_inc(&cnt.num_remote_shutdown_ind);
-+		dbfs_atomic_inc_unchecked(&cnt.num_remote_shutdown_ind);
- 		cf_sk->sk.sk_shutdown = SHUTDOWN_MASK;
- 		cf_sk->sk.sk_err = ECONNRESET;
- 		set_rx_flow_on(cf_sk);
-@@ -297,7 +298,7 @@ static void caif_check_flow_release(struct sock *sk)
- 		return;
- 
- 	if (atomic_read(&sk->sk_rmem_alloc) <= sk_rcvbuf_lowwater(cf_sk)) {
--			dbfs_atomic_inc(&cnt.num_rx_flow_on);
-+			dbfs_atomic_inc_unchecked(&cnt.num_rx_flow_on);
- 			set_rx_flow_on(cf_sk);
- 			caif_flow_ctrl(sk, CAIF_MODEMCMD_FLOW_ON_REQ);
- 	}
-@@ -856,7 +857,7 @@ static int caif_connect(struct socket *sock, struct sockaddr *uaddr,
- 	/*ifindex = id of the interface.*/
- 	cf_sk->conn_req.ifindex = cf_sk->sk.sk_bound_dev_if;
- 
--	dbfs_atomic_inc(&cnt.num_connect_req);
-+	dbfs_atomic_inc_unchecked(&cnt.num_connect_req);
- 	cf_sk->layer.receive = caif_sktrecv_cb;
- 
- 	err = caif_connect_client(sock_net(sk), &cf_sk->conn_req,
-@@ -945,7 +946,7 @@ static int caif_release(struct socket *sock)
- 	spin_unlock_bh(&sk->sk_receive_queue.lock);
- 	sock->sk = NULL;
- 
--	dbfs_atomic_inc(&cnt.num_disconnect);
-+	dbfs_atomic_inc_unchecked(&cnt.num_disconnect);
- 
- 	WARN_ON(IS_ERR(cf_sk->debugfs_socket_dir));
- 	if (cf_sk->debugfs_socket_dir != NULL)
-@@ -1124,7 +1125,7 @@ static int caif_create(struct net *net, struct socket *sock, int protocol,
- 	cf_sk->conn_req.protocol = protocol;
- 	/* Increase the number of sockets created. */
- 	dbfs_atomic_inc(&cnt.caif_nr_socks);
--	num = dbfs_atomic_inc(&cnt.caif_sock_create);
-+	num = dbfs_atomic_inc_unchecked(&cnt.caif_sock_create);
- #ifdef CONFIG_DEBUG_FS
- 	if (!IS_ERR(debugfsdir)) {
- 
 diff --git a/net/caif/cfctrl.c b/net/caif/cfctrl.c
 index 5cf5222..6f704ad 100644
 --- a/net/caif/cfctrl.c
@@ -74903,7 +73903,7 @@ index 3d79b12..8de85fa 100644
  
  
 diff --git a/net/compat.c b/net/compat.c
-index 6def90e..c6992fa 100644
+index e055708..3f80795 100644
 --- a/net/compat.c
 +++ b/net/compat.c
 @@ -71,9 +71,9 @@ int get_compat_msghdr(struct msghdr *kmsg, struct compat_msghdr __user *umsg)
@@ -74961,16 +73961,16 @@ index 6def90e..c6992fa 100644
  			msg->msg_controllen)
  		return NULL;
  	return (struct compat_cmsghdr __user *)ptr;
-@@ -221,7 +221,7 @@ int put_cmsg_compat(struct msghdr *kmsg, int level, int type, int len, void *dat
+@@ -219,7 +219,7 @@ Efault:
+ 
+ int put_cmsg_compat(struct msghdr *kmsg, int level, int type, int len, void *data)
  {
- 	struct compat_timeval ctv;
- 	struct compat_timespec cts[3];
 -	struct compat_cmsghdr __user *cm = (struct compat_cmsghdr __user *) kmsg->msg_control;
 +	struct compat_cmsghdr __user *cm = (struct compat_cmsghdr __force_user *) kmsg->msg_control;
  	struct compat_cmsghdr cmhdr;
  	int cmlen;
  
-@@ -273,7 +273,7 @@ int put_cmsg_compat(struct msghdr *kmsg, int level, int type, int len, void *dat
+@@ -275,7 +275,7 @@ int put_cmsg_compat(struct msghdr *kmsg, int level, int type, int len, void *dat
  
  void scm_detach_fds_compat(struct msghdr *kmsg, struct scm_cookie *scm)
  {
@@ -74979,7 +73979,7 @@ index 6def90e..c6992fa 100644
  	int fdmax = (kmsg->msg_controllen - sizeof(struct compat_cmsghdr)) / sizeof(int);
  	int fdnum = scm->fp->count;
  	struct file **fp = scm->fp->fp;
-@@ -370,7 +370,7 @@ static int do_set_sock_timeout(struct socket *sock, int level,
+@@ -372,7 +372,7 @@ static int do_set_sock_timeout(struct socket *sock, int level,
  		return -EFAULT;
  	old_fs = get_fs();
  	set_fs(KERNEL_DS);
@@ -74988,7 +73988,7 @@ index 6def90e..c6992fa 100644
  	set_fs(old_fs);
  
  	return err;
-@@ -431,7 +431,7 @@ static int do_get_sock_timeout(struct socket *sock, int level, int optname,
+@@ -433,7 +433,7 @@ static int do_get_sock_timeout(struct socket *sock, int level, int optname,
  	len = sizeof(ktime);
  	old_fs = get_fs();
  	set_fs(KERNEL_DS);
@@ -74997,7 +73997,7 @@ index 6def90e..c6992fa 100644
  	set_fs(old_fs);
  
  	if (!err) {
-@@ -566,7 +566,7 @@ int compat_mc_setsockopt(struct sock *sock, int level, int optname,
+@@ -576,7 +576,7 @@ int compat_mc_setsockopt(struct sock *sock, int level, int optname,
  	case MCAST_JOIN_GROUP:
  	case MCAST_LEAVE_GROUP:
  	{
@@ -75006,7 +74006,7 @@ index 6def90e..c6992fa 100644
  		struct group_req __user *kgr =
  			compat_alloc_user_space(sizeof(struct group_req));
  		u32 interface;
-@@ -587,7 +587,7 @@ int compat_mc_setsockopt(struct sock *sock, int level, int optname,
+@@ -597,7 +597,7 @@ int compat_mc_setsockopt(struct sock *sock, int level, int optname,
  	case MCAST_BLOCK_SOURCE:
  	case MCAST_UNBLOCK_SOURCE:
  	{
@@ -75015,7 +74015,7 @@ index 6def90e..c6992fa 100644
  		struct group_source_req __user *kgsr = compat_alloc_user_space(
  			sizeof(struct group_source_req));
  		u32 interface;
-@@ -608,7 +608,7 @@ int compat_mc_setsockopt(struct sock *sock, int level, int optname,
+@@ -618,7 +618,7 @@ int compat_mc_setsockopt(struct sock *sock, int level, int optname,
  	}
  	case MCAST_MSFILTER:
  	{
@@ -75024,7 +74024,7 @@ index 6def90e..c6992fa 100644
  		struct group_filter __user *kgf;
  		u32 interface, fmode, numsrc;
  
-@@ -646,7 +646,7 @@ int compat_mc_getsockopt(struct sock *sock, int level, int optname,
+@@ -656,7 +656,7 @@ int compat_mc_getsockopt(struct sock *sock, int level, int optname,
  	char __user *optval, int __user *optlen,
  	int (*getsockopt)(struct sock *, int, int, char __user *, int __user *))
  {
@@ -75034,10 +74034,10 @@ index 6def90e..c6992fa 100644
  	int __user	*koptlen;
  	u32 interface, fmode, numsrc;
 diff --git a/net/core/datagram.c b/net/core/datagram.c
-index 68bbf9f..5ef0d12 100644
+index e4fbfd6..6a6ac94 100644
 --- a/net/core/datagram.c
 +++ b/net/core/datagram.c
-@@ -285,7 +285,7 @@ int skb_kill_datagram(struct sock *sk, struct sk_buff *skb, unsigned int flags)
+@@ -290,7 +290,7 @@ int skb_kill_datagram(struct sock *sk, struct sk_buff *skb, unsigned int flags)
  	}
  
  	kfree_skb(skb);
@@ -75047,10 +74047,10 @@ index 68bbf9f..5ef0d12 100644
  
  	return err;
 diff --git a/net/core/dev.c b/net/core/dev.c
-index 0336374..659088a 100644
+index 99e1d75..adf968a 100644
 --- a/net/core/dev.c
 +++ b/net/core/dev.c
-@@ -1138,10 +1138,14 @@ void dev_load(struct net *net, const char *name)
+@@ -1136,9 +1136,13 @@ void dev_load(struct net *net, const char *name)
  	if (no_module && capable(CAP_NET_ADMIN))
  		no_module = request_module("netdev-%s", name);
  	if (no_module && capable(CAP_SYS_MODULE)) {
@@ -75058,14 +74058,13 @@ index 0336374..659088a 100644
 +		___request_module(true, "grsec_modharden_netdev", "%s", name);
 +#else
  		if (!request_module("%s", name))
- 			pr_err("Loading kernel module for a network device "
- "with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev-%s "
- "instead\n", name);
+ 			pr_err("Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev-%s instead.\n",
+ 			       name);
 +#endif
  	}
  }
  EXPORT_SYMBOL(dev_load);
-@@ -1605,7 +1609,7 @@ int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
+@@ -1602,7 +1606,7 @@ int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
  {
  	if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
  		if (skb_copy_ubufs(skb, GFP_ATOMIC)) {
@@ -75074,7 +74073,7 @@ index 0336374..659088a 100644
  			kfree_skb(skb);
  			return NET_RX_DROP;
  		}
-@@ -1615,7 +1619,7 @@ int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
+@@ -1612,7 +1616,7 @@ int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
  	nf_reset(skb);
  
  	if (unlikely(!is_skb_forwardable(dev, skb))) {
@@ -75083,7 +74082,7 @@ index 0336374..659088a 100644
  		kfree_skb(skb);
  		return NET_RX_DROP;
  	}
-@@ -2077,7 +2081,7 @@ static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
+@@ -2042,7 +2046,7 @@ static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
  
  struct dev_gso_cb {
  	void (*destructor)(struct sk_buff *skb);
@@ -75092,7 +74091,7 @@ index 0336374..659088a 100644
  
  #define DEV_GSO_CB(skb) ((struct dev_gso_cb *)(skb)->cb)
  
-@@ -2933,7 +2937,7 @@ enqueue:
+@@ -2898,7 +2902,7 @@ enqueue:
  
  	local_irq_restore(flags);
  
@@ -75101,7 +74100,7 @@ index 0336374..659088a 100644
  	kfree_skb(skb);
  	return NET_RX_DROP;
  }
-@@ -3005,7 +3009,7 @@ int netif_rx_ni(struct sk_buff *skb)
+@@ -2970,7 +2974,7 @@ int netif_rx_ni(struct sk_buff *skb)
  }
  EXPORT_SYMBOL(netif_rx_ni);
  
@@ -75110,7 +74109,7 @@ index 0336374..659088a 100644
  {
  	struct softnet_data *sd = &__get_cpu_var(softnet_data);
  
-@@ -3293,7 +3297,7 @@ ncls:
+@@ -3258,7 +3262,7 @@ ncls:
  	if (pt_prev) {
  		ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
  	} else {
@@ -75119,7 +74118,7 @@ index 0336374..659088a 100644
  		kfree_skb(skb);
  		/* Jamal, now you will not able to escape explaining
  		 * me how you were going to use this. :-)
-@@ -3853,7 +3857,7 @@ void netif_napi_del(struct napi_struct *napi)
+@@ -3818,7 +3822,7 @@ void netif_napi_del(struct napi_struct *napi)
  }
  EXPORT_SYMBOL(netif_napi_del);
  
@@ -75128,7 +74127,21 @@ index 0336374..659088a 100644
  {
  	struct softnet_data *sd = &__get_cpu_var(softnet_data);
  	unsigned long time_limit = jiffies + 2;
-@@ -5878,7 +5882,7 @@ struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
+@@ -4288,8 +4292,13 @@ static int ptype_seq_show(struct seq_file *seq, void *v)
+ 		else
+ 			seq_printf(seq, "%04x", ntohs(pt->type));
+ 
++#ifdef CONFIG_GRKERNSEC_HIDESYM
++		seq_printf(seq, " %-8s %p\n",
++			   pt->dev ? pt->dev->name : "", NULL);
++#else
+ 		seq_printf(seq, " %-8s %pF\n",
+ 			   pt->dev ? pt->dev->name : "", pt->func);
++#endif
+ 	}
+ 
+ 	return 0;
+@@ -5839,7 +5848,7 @@ struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
  	} else {
  		netdev_stats_to_stats64(storage, &dev->stats);
  	}
@@ -75178,10 +74191,10 @@ index e318c7e..168b1d0 100644
  			fle->object = flo;
  		else
 diff --git a/net/core/iovec.c b/net/core/iovec.c
-index c40f27e..7f49254 100644
+index 7e7aeb0..2a998cb 100644
 --- a/net/core/iovec.c
 +++ b/net/core/iovec.c
-@@ -42,7 +42,7 @@ int verify_iovec(struct msghdr *m, struct iovec *iov, struct sockaddr *address,
+@@ -42,7 +42,7 @@ int verify_iovec(struct msghdr *m, struct iovec *iov, struct sockaddr_storage *a
  	if (m->msg_namelen) {
  		if (mode == VERIFY_READ) {
  			void __user *namep;
@@ -75190,7 +74203,7 @@ index c40f27e..7f49254 100644
  			err = move_addr_to_kernel(namep, m->msg_namelen,
  						  address);
  			if (err < 0)
-@@ -54,7 +54,7 @@ int verify_iovec(struct msghdr *m, struct iovec *iov, struct sockaddr *address,
+@@ -54,7 +54,7 @@ int verify_iovec(struct msghdr *m, struct iovec *iov, struct sockaddr_storage *a
  	}
  
  	size = m->msg_iovlen * sizeof(struct iovec);
@@ -75200,10 +74213,10 @@ index c40f27e..7f49254 100644
  
  	m->msg_iov = iov;
 diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
-index 5c30296..ebe7b61 100644
+index 90430b7..0032ec0 100644
 --- a/net/core/rtnetlink.c
 +++ b/net/core/rtnetlink.c
-@@ -57,7 +57,7 @@ struct rtnl_link {
+@@ -56,7 +56,7 @@ struct rtnl_link {
  	rtnl_doit_func		doit;
  	rtnl_dumpit_func	dumpit;
  	rtnl_calcit_func 	calcit;
@@ -75213,10 +74226,10 @@ index 5c30296..ebe7b61 100644
  static DEFINE_MUTEX(rtnl_mutex);
  
 diff --git a/net/core/scm.c b/net/core/scm.c
-index ff52ad0..aff1c0f 100644
+index 611c5ef..88f6d6d 100644
 --- a/net/core/scm.c
 +++ b/net/core/scm.c
-@@ -220,7 +220,7 @@ EXPORT_SYMBOL(__scm_send);
+@@ -219,7 +219,7 @@ EXPORT_SYMBOL(__scm_send);
  int put_cmsg(struct msghdr * msg, int level, int type, int len, void *data)
  {
  	struct cmsghdr __user *cm
@@ -75225,7 +74238,7 @@ index ff52ad0..aff1c0f 100644
  	struct cmsghdr cmhdr;
  	int cmlen = CMSG_LEN(len);
  	int err;
-@@ -243,7 +243,7 @@ int put_cmsg(struct msghdr * msg, int level, int type, int len, void *data)
+@@ -242,7 +242,7 @@ int put_cmsg(struct msghdr * msg, int level, int type, int len, void *data)
  	err = -EFAULT;
  	if (copy_to_user(cm, &cmhdr, sizeof cmhdr))
  		goto out;
@@ -75234,7 +74247,7 @@ index ff52ad0..aff1c0f 100644
  		goto out;
  	cmlen = CMSG_SPACE(len);
  	if (msg->msg_controllen < cmlen)
-@@ -259,7 +259,7 @@ EXPORT_SYMBOL(put_cmsg);
+@@ -258,7 +258,7 @@ EXPORT_SYMBOL(put_cmsg);
  void scm_detach_fds(struct msghdr *msg, struct scm_cookie *scm)
  {
  	struct cmsghdr __user *cm
@@ -75243,7 +74256,7 @@ index ff52ad0..aff1c0f 100644
  
  	int fdmax = 0;
  	int fdnum = scm->fp->count;
-@@ -279,7 +279,7 @@ void scm_detach_fds(struct msghdr *msg, struct scm_cookie *scm)
+@@ -278,7 +278,7 @@ void scm_detach_fds(struct msghdr *msg, struct scm_cookie *scm)
  	if (fdnum < fdmax)
  		fdmax = fdnum;
  
@@ -75253,10 +74266,10 @@ index ff52ad0..aff1c0f 100644
  	{
  		int new_fd;
 diff --git a/net/core/sock.c b/net/core/sock.c
-index 02f8dfe..86dfd4a 100644
+index b2e14c0..6651b32 100644
 --- a/net/core/sock.c
 +++ b/net/core/sock.c
-@@ -341,7 +341,7 @@ int sock_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
+@@ -340,7 +340,7 @@ int sock_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
  	struct sk_buff_head *list = &sk->sk_receive_queue;
  
  	if (atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf) {
@@ -75265,7 +74278,7 @@ index 02f8dfe..86dfd4a 100644
  		trace_sock_rcvqueue_full(sk, skb);
  		return -ENOMEM;
  	}
-@@ -351,7 +351,7 @@ int sock_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
+@@ -350,7 +350,7 @@ int sock_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
  		return err;
  
  	if (!sk_rmem_schedule(sk, skb->truesize)) {
@@ -75274,7 +74287,7 @@ index 02f8dfe..86dfd4a 100644
  		return -ENOBUFS;
  	}
  
-@@ -371,7 +371,7 @@ int sock_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
+@@ -370,7 +370,7 @@ int sock_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
  	skb_dst_force(skb);
  
  	spin_lock_irqsave(&list->lock, flags);
@@ -75283,7 +74296,7 @@ index 02f8dfe..86dfd4a 100644
  	__skb_queue_tail(list, skb);
  	spin_unlock_irqrestore(&list->lock, flags);
  
-@@ -391,7 +391,7 @@ int sk_receive_skb(struct sock *sk, struct sk_buff *skb, const int nested)
+@@ -390,7 +390,7 @@ int sk_receive_skb(struct sock *sk, struct sk_buff *skb, const int nested)
  	skb->dev = NULL;
  
  	if (sk_rcvqueues_full(sk, skb)) {
@@ -75292,7 +74305,7 @@ index 02f8dfe..86dfd4a 100644
  		goto discard_and_relse;
  	}
  	if (nested)
-@@ -409,7 +409,7 @@ int sk_receive_skb(struct sock *sk, struct sk_buff *skb, const int nested)
+@@ -408,7 +408,7 @@ int sk_receive_skb(struct sock *sk, struct sk_buff *skb, const int nested)
  		mutex_release(&sk->sk_lock.dep_map, 1, _RET_IP_);
  	} else if (sk_add_backlog(sk, skb)) {
  		bh_unlock_sock(sk);
@@ -75301,7 +74314,7 @@ index 02f8dfe..86dfd4a 100644
  		goto discard_and_relse;
  	}
  
-@@ -974,7 +974,7 @@ int sock_getsockopt(struct socket *sock, int level, int optname,
+@@ -984,7 +984,7 @@ int sock_getsockopt(struct socket *sock, int level, int optname,
  		if (len > sizeof(peercred))
  			len = sizeof(peercred);
  		cred_to_ucred(sk->sk_peer_pid, sk->sk_peer_cred, &peercred);
@@ -75310,7 +74323,7 @@ index 02f8dfe..86dfd4a 100644
  			return -EFAULT;
  		goto lenout;
  	}
-@@ -987,7 +987,7 @@ int sock_getsockopt(struct socket *sock, int level, int optname,
+@@ -997,7 +997,7 @@ int sock_getsockopt(struct socket *sock, int level, int optname,
  			return -ENOTCONN;
  		if (lv < len)
  			return -EINVAL;
@@ -75319,7 +74332,7 @@ index 02f8dfe..86dfd4a 100644
  			return -EFAULT;
  		goto lenout;
  	}
-@@ -1024,7 +1024,7 @@ int sock_getsockopt(struct socket *sock, int level, int optname,
+@@ -1043,7 +1043,7 @@ int sock_getsockopt(struct socket *sock, int level, int optname,
  
  	if (len > lv)
  		len = lv;
@@ -75328,7 +74341,7 @@ index 02f8dfe..86dfd4a 100644
  		return -EFAULT;
  lenout:
  	if (put_user(len, optlen))
-@@ -2108,7 +2108,7 @@ void sock_init_data(struct socket *sock, struct sock *sk)
+@@ -2128,7 +2128,7 @@ void sock_init_data(struct socket *sock, struct sock *sk)
  	 */
  	smp_wmb();
  	atomic_set(&sk->sk_refcnt, 1);
@@ -75405,10 +74418,10 @@ index 39a2d29..f39c0fe 100644
  	  Econet is a fairly old and slow networking protocol mainly used by
  	  Acorn computers to access file and print servers. It uses native
 diff --git a/net/ipv4/fib_frontend.c b/net/ipv4/fib_frontend.c
-index 92fc5f6..b790d91 100644
+index cbe3a68..a879b75 100644
 --- a/net/ipv4/fib_frontend.c
 +++ b/net/ipv4/fib_frontend.c
-@@ -970,12 +970,12 @@ static int fib_inetaddr_event(struct notifier_block *this, unsigned long event,
+@@ -969,12 +969,12 @@ static int fib_inetaddr_event(struct notifier_block *this, unsigned long event,
  #ifdef CONFIG_IP_ROUTE_MULTIPATH
  		fib_sync_up(dev);
  #endif
@@ -75423,7 +74436,7 @@ index 92fc5f6..b790d91 100644
  		if (ifa->ifa_dev->ifa_list == NULL) {
  			/* Last address was deleted from this interface.
  			 * Disable IP.
-@@ -1011,7 +1011,7 @@ static int fib_netdev_event(struct notifier_block *this, unsigned long event, vo
+@@ -1010,7 +1010,7 @@ static int fib_netdev_event(struct notifier_block *this, unsigned long event, vo
  #ifdef CONFIG_IP_ROUTE_MULTIPATH
  		fib_sync_up(dev);
  #endif
@@ -75433,10 +74446,10 @@ index 92fc5f6..b790d91 100644
  		break;
  	case NETDEV_DOWN:
 diff --git a/net/ipv4/fib_semantics.c b/net/ipv4/fib_semantics.c
-index 80106d8..232e898 100644
+index 5063fa3..9dd4a69 100644
 --- a/net/ipv4/fib_semantics.c
 +++ b/net/ipv4/fib_semantics.c
-@@ -699,7 +699,7 @@ __be32 fib_info_update_nh_saddr(struct net *net, struct fib_nh *nh)
+@@ -698,7 +698,7 @@ __be32 fib_info_update_nh_saddr(struct net *net, struct fib_nh *nh)
  	nh->nh_saddr = inet_select_addr(nh->nh_dev,
  					nh->nh_gw,
  					nh->nh_parent->fib_scope);
@@ -75490,10 +74503,10 @@ index d4d61b6..b81aec8 100644
  					secure_ip_id(daddr->addr.a4) :
  					secure_ipv6_id(daddr->addr.a6));
 diff --git a/net/ipv4/ip_fragment.c b/net/ipv4/ip_fragment.c
-index 1f23a57..7180dfe 100644
+index 3727e23..517f5df 100644
 --- a/net/ipv4/ip_fragment.c
 +++ b/net/ipv4/ip_fragment.c
-@@ -316,7 +316,7 @@ static inline int ip_frag_too_far(struct ipq *qp)
+@@ -318,7 +318,7 @@ static inline int ip_frag_too_far(struct ipq *qp)
  		return 0;
  
  	start = qp->rid;
@@ -75503,10 +74516,10 @@ index 1f23a57..7180dfe 100644
  
  	rc = qp->q.fragments && (end - start) > max;
 diff --git a/net/ipv4/ip_sockglue.c b/net/ipv4/ip_sockglue.c
-index 8aa87c1..35c3248 100644
+index 2fd0fba..83fac99 100644
 --- a/net/ipv4/ip_sockglue.c
 +++ b/net/ipv4/ip_sockglue.c
-@@ -1112,7 +1112,8 @@ static int do_ip_getsockopt(struct sock *sk, int level, int optname,
+@@ -1137,7 +1137,8 @@ static int do_ip_getsockopt(struct sock *sk, int level, int optname,
  		len = min_t(unsigned int, len, opt->optlen);
  		if (put_user(len, optlen))
  			return -EFAULT;
@@ -75516,7 +74529,7 @@ index 8aa87c1..35c3248 100644
  			return -EFAULT;
  		return 0;
  	}
-@@ -1240,7 +1241,7 @@ static int do_ip_getsockopt(struct sock *sk, int level, int optname,
+@@ -1268,7 +1269,7 @@ static int do_ip_getsockopt(struct sock *sk, int level, int optname,
  		if (sk->sk_type != SOCK_STREAM)
  			return -ENOPROTOOPT;
  
@@ -75526,10 +74539,10 @@ index 8aa87c1..35c3248 100644
  		msg.msg_flags = flags;
  
 diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c
-index 6e412a6..6640538 100644
+index 92ac7e7..13f93d9 100644
 --- a/net/ipv4/ipconfig.c
 +++ b/net/ipv4/ipconfig.c
-@@ -318,7 +318,7 @@ static int __init ic_devinet_ioctl(unsigned int cmd, struct ifreq *arg)
+@@ -321,7 +321,7 @@ static int __init ic_devinet_ioctl(unsigned int cmd, struct ifreq *arg)
  
  	mm_segment_t oldfs = get_fs();
  	set_fs(get_ds());
@@ -75538,7 +74551,7 @@ index 6e412a6..6640538 100644
  	set_fs(oldfs);
  	return res;
  }
-@@ -329,7 +329,7 @@ static int __init ic_dev_ioctl(unsigned int cmd, struct ifreq *arg)
+@@ -332,7 +332,7 @@ static int __init ic_dev_ioctl(unsigned int cmd, struct ifreq *arg)
  
  	mm_segment_t oldfs = get_fs();
  	set_fs(get_ds());
@@ -75547,7 +74560,7 @@ index 6e412a6..6640538 100644
  	set_fs(oldfs);
  	return res;
  }
-@@ -340,7 +340,7 @@ static int __init ic_route_ioctl(unsigned int cmd, struct rtentry *arg)
+@@ -343,7 +343,7 @@ static int __init ic_route_ioctl(unsigned int cmd, struct rtentry *arg)
  
  	mm_segment_t oldfs = get_fs();
  	set_fs(get_ds());
@@ -75557,7 +74570,7 @@ index 6e412a6..6640538 100644
  	return res;
  }
 diff --git a/net/ipv4/ping.c b/net/ipv4/ping.c
-index b072386..abdebcf 100644
+index 50009c7..5996a9f 100644
 --- a/net/ipv4/ping.c
 +++ b/net/ipv4/ping.c
 @@ -838,7 +838,7 @@ static void ping_format_sock(struct sock *sp, struct seq_file *f,
@@ -75570,7 +74583,7 @@ index b072386..abdebcf 100644
  
  static int ping_seq_show(struct seq_file *seq, void *v)
 diff --git a/net/ipv4/raw.c b/net/ipv4/raw.c
-index 3ccda5a..3c1e61d 100644
+index bbd604c..4d5469c 100644
 --- a/net/ipv4/raw.c
 +++ b/net/ipv4/raw.c
 @@ -304,7 +304,7 @@ static int raw_rcv_skb(struct sock * sk, struct sk_buff * skb)
@@ -75582,7 +74595,7 @@ index 3ccda5a..3c1e61d 100644
  		kfree_skb(skb);
  		return NET_RX_DROP;
  	}
-@@ -742,16 +742,20 @@ static int raw_init(struct sock *sk)
+@@ -740,16 +740,20 @@ static int raw_init(struct sock *sk)
  
  static int raw_seticmpfilter(struct sock *sk, char __user *optval, int optlen)
  {
@@ -75604,7 +74617,7 @@ index 3ccda5a..3c1e61d 100644
  
  	if (get_user(len, optlen))
  		goto out;
-@@ -761,8 +765,8 @@ static int raw_geticmpfilter(struct sock *sk, char __user *optval, int __user *o
+@@ -759,8 +763,8 @@ static int raw_geticmpfilter(struct sock *sk, char __user *optval, int __user *o
  	if (len > sizeof(struct icmp_filter))
  		len = sizeof(struct icmp_filter);
  	ret = -EFAULT;
@@ -75615,7 +74628,7 @@ index 3ccda5a..3c1e61d 100644
  		goto out;
  	ret = 0;
  out:	return ret;
-@@ -990,7 +994,13 @@ static void raw_sock_seq_show(struct seq_file *seq, struct sock *sp, int i)
+@@ -988,7 +992,13 @@ static void raw_sock_seq_show(struct seq_file *seq, struct sock *sp, int i)
  		sk_wmem_alloc_get(sp),
  		sk_rmem_alloc_get(sp),
  		0, 0L, 0, sock_i_uid(sp), 0, sock_i_ino(sp),
@@ -75631,10 +74644,10 @@ index 3ccda5a..3c1e61d 100644
  
  static int raw_seq_show(struct seq_file *seq, void *v)
 diff --git a/net/ipv4/route.c b/net/ipv4/route.c
-index 0197747..7adb0dc 100644
+index 167ea10..4b15883 100644
 --- a/net/ipv4/route.c
 +++ b/net/ipv4/route.c
-@@ -311,7 +311,7 @@ static inline unsigned int rt_hash(__be32 daddr, __be32 saddr, int idx,
+@@ -312,7 +312,7 @@ static inline unsigned int rt_hash(__be32 daddr, __be32 saddr, int idx,
  
  static inline int rt_genid(struct net *net)
  {
@@ -75643,7 +74656,7 @@ index 0197747..7adb0dc 100644
  }
  
  #ifdef CONFIG_PROC_FS
-@@ -935,7 +935,7 @@ static void rt_cache_invalidate(struct net *net)
+@@ -936,7 +936,7 @@ static void rt_cache_invalidate(struct net *net)
  	unsigned char shuffle;
  
  	get_random_bytes(&shuffle, sizeof(shuffle));
@@ -75652,7 +74665,7 @@ index 0197747..7adb0dc 100644
  	inetpeer_invalidate_tree(AF_INET);
  }
  
-@@ -3010,7 +3010,7 @@ static int rt_fill_info(struct net *net,
+@@ -3009,7 +3009,7 @@ static int rt_fill_info(struct net *net,
  	error = rt->dst.error;
  	if (peer) {
  		inet_peer_refcheck(rt->peer);
@@ -75662,20 +74675,21 @@ index 0197747..7adb0dc 100644
  			ts = peer->tcp_ts;
  			tsage = get_seconds() - peer->tcp_ts_stamp;
 diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c
-index fd54c5f..96d6407 100644
+index 0cb86ce..8e7fda8 100644
 --- a/net/ipv4/tcp_ipv4.c
 +++ b/net/ipv4/tcp_ipv4.c
-@@ -88,6 +88,9 @@ int sysctl_tcp_tw_reuse __read_mostly;
- int sysctl_tcp_low_latency __read_mostly;
+@@ -90,6 +90,10 @@ int sysctl_tcp_low_latency __read_mostly;
  EXPORT_SYMBOL(sysctl_tcp_low_latency);
  
+ 
 +#ifdef CONFIG_GRKERNSEC_BLACKHOLE
 +extern int grsec_enable_blackhole;
 +#endif
- 
++
  #ifdef CONFIG_TCP_MD5SIG
- static struct tcp_md5sig_key *tcp_v4_md5_do_lookup(struct sock *sk,
-@@ -1638,6 +1641,9 @@ int tcp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
+ static int tcp_v4_md5_hash_hdr(char *md5_hash, const struct tcp_md5sig_key *key,
+ 			       __be32 daddr, __be32 saddr, const struct tcphdr *th);
+@@ -1641,6 +1645,9 @@ int tcp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
  	return 0;
  
  reset:
@@ -75685,7 +74699,7 @@ index fd54c5f..96d6407 100644
  	tcp_v4_send_reset(rsk, skb);
  discard:
  	kfree_skb(skb);
-@@ -1700,12 +1706,19 @@ int tcp_v4_rcv(struct sk_buff *skb)
+@@ -1703,12 +1710,19 @@ int tcp_v4_rcv(struct sk_buff *skb)
  	TCP_SKB_CB(skb)->sacked	 = 0;
  
  	sk = __inet_lookup_skb(&tcp_hashinfo, skb, th->source, th->dest);
@@ -75708,7 +74722,7 @@ index fd54c5f..96d6407 100644
  
  	if (unlikely(iph->ttl < inet_sk(sk)->min_ttl)) {
  		NET_INC_STATS_BH(net, LINUX_MIB_TCPMINTTLDROP);
-@@ -1755,6 +1768,10 @@ no_tcp_socket:
+@@ -1758,6 +1772,10 @@ no_tcp_socket:
  bad_packet:
  		TCP_INC_STATS_BH(net, TCP_MIB_INERRS);
  	} else {
@@ -75719,7 +74733,7 @@ index fd54c5f..96d6407 100644
  		tcp_v4_send_reset(NULL, skb);
  	}
  
-@@ -2417,7 +2434,11 @@ static void get_openreq4(const struct sock *sk, const struct request_sock *req,
+@@ -2419,7 +2437,11 @@ static void get_openreq4(const struct sock *sk, const struct request_sock *req,
  		0,  /* non standard timer */
  		0, /* open_requests have no inode */
  		atomic_read(&sk->sk_refcnt),
@@ -75731,7 +74745,7 @@ index fd54c5f..96d6407 100644
  		len);
  }
  
-@@ -2467,7 +2488,12 @@ static void get_tcp4_sock(struct sock *sk, struct seq_file *f, int i, int *len)
+@@ -2469,7 +2491,12 @@ static void get_tcp4_sock(struct sock *sk, struct seq_file *f, int i, int *len)
  		sock_i_uid(sk),
  		icsk->icsk_probes_out,
  		sock_i_ino(sk),
@@ -75745,7 +74759,7 @@ index fd54c5f..96d6407 100644
  		jiffies_to_clock_t(icsk->icsk_rto),
  		jiffies_to_clock_t(icsk->icsk_ack.ato),
  		(icsk->icsk_ack.quick << 1) | icsk->icsk_ack.pingpong,
-@@ -2495,7 +2521,13 @@ static void get_timewait4_sock(const struct inet_timewait_sock *tw,
+@@ -2497,7 +2524,13 @@ static void get_timewait4_sock(const struct inet_timewait_sock *tw,
  		" %02X %08X:%08X %02X:%08lX %08X %5d %8d %d %d %pK%n",
  		i, src, srcp, dest, destp, tw->tw_substate, 0, 0,
  		3, jiffies_to_clock_t(ttd), 0, 0, 0, 0,
@@ -75761,7 +74775,7 @@ index fd54c5f..96d6407 100644
  
  #define TMPSZ 150
 diff --git a/net/ipv4/tcp_minisocks.c b/net/ipv4/tcp_minisocks.c
-index 550e755..25721b3 100644
+index 3cabafb..640525b 100644
 --- a/net/ipv4/tcp_minisocks.c
 +++ b/net/ipv4/tcp_minisocks.c
 @@ -27,6 +27,10 @@
@@ -75787,10 +74801,10 @@ index 550e755..25721b3 100644
  		req->rsk_ops->send_reset(sk, skb);
  
 diff --git a/net/ipv4/tcp_probe.c b/net/ipv4/tcp_probe.c
-index 85ee7eb..53277ab 100644
+index a981cdc..48f4c3a 100644
 --- a/net/ipv4/tcp_probe.c
 +++ b/net/ipv4/tcp_probe.c
-@@ -202,7 +202,7 @@ static ssize_t tcpprobe_read(struct file *file, char __user *buf,
+@@ -204,7 +204,7 @@ static ssize_t tcpprobe_read(struct file *file, char __user *buf,
  		if (cnt + width >= len)
  			break;
  
@@ -75800,7 +74814,7 @@ index 85ee7eb..53277ab 100644
  		cnt += width;
  	}
 diff --git a/net/ipv4/tcp_timer.c b/net/ipv4/tcp_timer.c
-index cd2e072..1fffee2 100644
+index 34d4a02..3b57f86 100644
 --- a/net/ipv4/tcp_timer.c
 +++ b/net/ipv4/tcp_timer.c
 @@ -22,6 +22,10 @@
@@ -75829,10 +74843,10 @@ index cd2e072..1fffee2 100644
  				  syn_set ? 0 : icsk->icsk_user_timeout, syn_set)) {
  		/* Has it gone just too far? */
 diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c
-index 5d075b5..d907d5f 100644
+index fe14105..0618260 100644
 --- a/net/ipv4/udp.c
 +++ b/net/ipv4/udp.c
-@@ -86,6 +86,7 @@
+@@ -87,6 +87,7 @@
  #include <linux/types.h>
  #include <linux/fcntl.h>
  #include <linux/module.h>
@@ -75840,7 +74854,7 @@ index 5d075b5..d907d5f 100644
  #include <linux/socket.h>
  #include <linux/sockios.h>
  #include <linux/igmp.h>
-@@ -108,6 +109,10 @@
+@@ -109,6 +110,10 @@
  #include <trace/events/udp.h>
  #include "udp_impl.h"
  
@@ -75851,7 +74865,7 @@ index 5d075b5..d907d5f 100644
  struct udp_table udp_table __read_mostly;
  EXPORT_SYMBOL(udp_table);
  
-@@ -566,6 +571,9 @@ found:
+@@ -567,6 +572,9 @@ found:
  	return s;
  }
  
@@ -75861,7 +74875,7 @@ index 5d075b5..d907d5f 100644
  /*
   * This routine is called by the ICMP module when it gets some
   * sort of error condition.  If err < 0 then the socket should
-@@ -857,9 +865,18 @@ int udp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
+@@ -858,9 +866,18 @@ int udp_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
  		dport = usin->sin_port;
  		if (dport == 0)
  			return -EINVAL;
@@ -75880,7 +74894,7 @@ index 5d075b5..d907d5f 100644
  		daddr = inet->inet_daddr;
  		dport = inet->inet_dport;
  		/* Open fast path for connected socket.
-@@ -1100,7 +1117,7 @@ static unsigned int first_packet_length(struct sock *sk)
+@@ -1102,7 +1119,7 @@ static unsigned int first_packet_length(struct sock *sk)
  		udp_lib_checksum_complete(skb)) {
  		UDP_INC_STATS_BH(sock_net(sk), UDP_MIB_INERRORS,
  				 IS_UDPLITE(sk));
@@ -75889,7 +74903,7 @@ index 5d075b5..d907d5f 100644
  		__skb_unlink(skb, rcvq);
  		__skb_queue_tail(&list_kill, skb);
  	}
-@@ -1186,6 +1203,10 @@ try_again:
+@@ -1188,6 +1205,10 @@ try_again:
  	if (!skb)
  		goto out;
  
@@ -75928,7 +74942,7 @@ index 5d075b5..d907d5f 100644
  	icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
  
  	/*
-@@ -2100,8 +2124,13 @@ static void udp4_format_sock(struct sock *sp, struct seq_file *f,
+@@ -2094,8 +2118,13 @@ static void udp4_format_sock(struct sock *sp, struct seq_file *f,
  		sk_wmem_alloc_get(sp),
  		sk_rmem_alloc_get(sp),
  		0, 0L, 0, sock_i_uid(sp), 0, sock_i_ino(sp),
@@ -75945,10 +74959,10 @@ index 5d075b5..d907d5f 100644
  
  int udp4_seq_show(struct seq_file *seq, void *v)
 diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c
-index 6b8ebc5..1d624f4 100644
+index 7d5cb97..c56564f 100644
 --- a/net/ipv6/addrconf.c
 +++ b/net/ipv6/addrconf.c
-@@ -2145,7 +2145,7 @@ int addrconf_set_dstaddr(struct net *net, void __user *arg)
+@@ -2142,7 +2142,7 @@ int addrconf_set_dstaddr(struct net *net, void __user *arg)
  		p.iph.ihl = 5;
  		p.iph.protocol = IPPROTO_IPV6;
  		p.iph.ttl = 64;
@@ -75980,10 +74994,10 @@ index 02dd203..e03fcc9 100644
  			dst = NULL;
  		}
 diff --git a/net/ipv6/ipv6_sockglue.c b/net/ipv6/ipv6_sockglue.c
-index 18a2719..779f36a 100644
+index 63dd1f8..e7f53ca 100644
 --- a/net/ipv6/ipv6_sockglue.c
 +++ b/net/ipv6/ipv6_sockglue.c
-@@ -960,7 +960,7 @@ static int do_ipv6_getsockopt(struct sock *sk, int level, int optname,
+@@ -990,7 +990,7 @@ static int do_ipv6_getsockopt(struct sock *sk, int level, int optname,
  		if (sk->sk_type != SOCK_STREAM)
  			return -ENOPROTOOPT;
  
@@ -75993,7 +75007,7 @@ index 18a2719..779f36a 100644
  		msg.msg_flags = flags;
  
 diff --git a/net/ipv6/raw.c b/net/ipv6/raw.c
-index d02f7e4..2d2a0f1 100644
+index 5bddea7..82d9d67 100644
 --- a/net/ipv6/raw.c
 +++ b/net/ipv6/raw.c
 @@ -377,7 +377,7 @@ static inline int rawv6_rcv_skb(struct sock *sk, struct sk_buff *skb)
@@ -76032,7 +75046,7 @@ index d02f7e4..2d2a0f1 100644
  			struct flowi6 *fl6, struct dst_entry **dstp,
  			unsigned int flags)
  {
-@@ -912,12 +912,15 @@ do_confirm:
+@@ -914,12 +914,15 @@ do_confirm:
  static int rawv6_seticmpfilter(struct sock *sk, int level, int optname,
  			       char __user *optval, int optlen)
  {
@@ -76049,7 +75063,7 @@ index d02f7e4..2d2a0f1 100644
  		return 0;
  	default:
  		return -ENOPROTOOPT;
-@@ -930,6 +933,7 @@ static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
+@@ -932,6 +935,7 @@ static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
  			       char __user *optval, int __user *optlen)
  {
  	int len;
@@ -76057,7 +75071,7 @@ index d02f7e4..2d2a0f1 100644
  
  	switch (optname) {
  	case ICMPV6_FILTER:
-@@ -941,7 +945,8 @@ static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
+@@ -943,7 +947,8 @@ static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
  			len = sizeof(struct icmp6_filter);
  		if (put_user(len, optlen))
  			return -EFAULT;
@@ -76067,7 +75081,7 @@ index d02f7e4..2d2a0f1 100644
  			return -EFAULT;
  		return 0;
  	default:
-@@ -1248,7 +1253,13 @@ static void raw6_sock_seq_show(struct seq_file *seq, struct sock *sp, int i)
+@@ -1250,7 +1255,13 @@ static void raw6_sock_seq_show(struct seq_file *seq, struct sock *sp, int i)
  		   0, 0L, 0,
  		   sock_i_uid(sp), 0,
  		   sock_i_ino(sp),
@@ -76083,7 +75097,7 @@ index d02f7e4..2d2a0f1 100644
  
  static int raw6_seq_show(struct seq_file *seq, void *v)
 diff --git a/net/ipv6/tcp_ipv6.c b/net/ipv6/tcp_ipv6.c
-index a89ca8d..12e66b0 100644
+index 98256cf..7f16dbd 100644
 --- a/net/ipv6/tcp_ipv6.c
 +++ b/net/ipv6/tcp_ipv6.c
 @@ -94,6 +94,10 @@ static struct tcp_md5sig_key *tcp_v6_md5_do_lookup(struct sock *sk,
@@ -76097,7 +75111,7 @@ index a89ca8d..12e66b0 100644
  static void tcp_v6_hash(struct sock *sk)
  {
  	if (sk->sk_state != TCP_CLOSE) {
-@@ -1654,6 +1658,9 @@ static int tcp_v6_do_rcv(struct sock *sk, struct sk_buff *skb)
+@@ -1542,6 +1546,9 @@ static int tcp_v6_do_rcv(struct sock *sk, struct sk_buff *skb)
  	return 0;
  
  reset:
@@ -76107,7 +75121,7 @@ index a89ca8d..12e66b0 100644
  	tcp_v6_send_reset(sk, skb);
  discard:
  	if (opt_skb)
-@@ -1733,12 +1740,20 @@ static int tcp_v6_rcv(struct sk_buff *skb)
+@@ -1623,12 +1630,20 @@ static int tcp_v6_rcv(struct sk_buff *skb)
  	TCP_SKB_CB(skb)->sacked = 0;
  
  	sk = __inet6_lookup_skb(&tcp_hashinfo, skb, th->source, th->dest);
@@ -76130,7 +75144,7 @@ index a89ca8d..12e66b0 100644
  
  	if (hdr->hop_limit < inet6_sk(sk)->min_hopcount) {
  		NET_INC_STATS_BH(net, LINUX_MIB_TCPMINTTLDROP);
-@@ -1786,6 +1801,10 @@ no_tcp_socket:
+@@ -1676,6 +1691,10 @@ no_tcp_socket:
  bad_packet:
  		TCP_INC_STATS_BH(net, TCP_MIB_INERRS);
  	} else {
@@ -76141,7 +75155,7 @@ index a89ca8d..12e66b0 100644
  		tcp_v6_send_reset(NULL, skb);
  	}
  
-@@ -2047,7 +2066,13 @@ static void get_openreq6(struct seq_file *seq,
+@@ -1930,7 +1949,13 @@ static void get_openreq6(struct seq_file *seq,
  		   uid,
  		   0,  /* non standard timer */
  		   0, /* open_requests have no inode */
@@ -76156,7 +75170,7 @@ index a89ca8d..12e66b0 100644
  }
  
  static void get_tcp6_sock(struct seq_file *seq, struct sock *sp, int i)
-@@ -2097,7 +2122,12 @@ static void get_tcp6_sock(struct seq_file *seq, struct sock *sp, int i)
+@@ -1980,7 +2005,12 @@ static void get_tcp6_sock(struct seq_file *seq, struct sock *sp, int i)
  		   sock_i_uid(sp),
  		   icsk->icsk_probes_out,
  		   sock_i_ino(sp),
@@ -76170,7 +75184,7 @@ index a89ca8d..12e66b0 100644
  		   jiffies_to_clock_t(icsk->icsk_rto),
  		   jiffies_to_clock_t(icsk->icsk_ack.ato),
  		   (icsk->icsk_ack.quick << 1 ) | icsk->icsk_ack.pingpong,
-@@ -2132,7 +2162,13 @@ static void get_timewait6_sock(struct seq_file *seq,
+@@ -2015,7 +2045,13 @@ static void get_timewait6_sock(struct seq_file *seq,
  		   dest->s6_addr32[2], dest->s6_addr32[3], destp,
  		   tw->tw_substate, 0, 0,
  		   3, jiffies_to_clock_t(ttd), 0, 0, 0, 0,
@@ -76186,7 +75200,7 @@ index a89ca8d..12e66b0 100644
  
  static int tcp6_seq_show(struct seq_file *seq, void *v)
 diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c
-index 4f96b5c..75543d7 100644
+index 37b0699..d323408 100644
 --- a/net/ipv6/udp.c
 +++ b/net/ipv6/udp.c
 @@ -50,6 +50,10 @@
@@ -76237,7 +75251,7 @@ index 4f96b5c..75543d7 100644
  		bh_unlock_sock(sk);
  		sock_put(sk);
  		goto discard;
-@@ -1410,8 +1417,13 @@ static void udp6_sock_seq_show(struct seq_file *seq, struct sock *sp, int bucket
+@@ -1411,8 +1418,13 @@ static void udp6_sock_seq_show(struct seq_file *seq, struct sock *sp, int bucket
  		   0, 0L, 0,
  		   sock_i_uid(sp), 0,
  		   sock_i_ino(sp),
@@ -76254,10 +75268,10 @@ index 4f96b5c..75543d7 100644
  
  int udp6_seq_show(struct seq_file *seq, void *v)
 diff --git a/net/irda/ircomm/ircomm_tty.c b/net/irda/ircomm/ircomm_tty.c
-index 253695d..9481ce8 100644
+index 6b9d5a0..4dffaf1 100644
 --- a/net/irda/ircomm/ircomm_tty.c
 +++ b/net/irda/ircomm/ircomm_tty.c
-@@ -282,16 +282,16 @@ static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
+@@ -281,16 +281,16 @@ static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
  	add_wait_queue(&self->open_wait, &wait);
  
  	IRDA_DEBUG(2, "%s(%d):block_til_ready before block on %s open_count=%d\n",
@@ -76277,7 +75291,7 @@ index 253695d..9481ce8 100644
  
  	while (1) {
  		if (tty->termios->c_cflag & CBAUD) {
-@@ -331,7 +331,7 @@ static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
+@@ -330,7 +330,7 @@ static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
  		}
  
  		IRDA_DEBUG(1, "%s(%d):block_til_ready blocking on %s open_count=%d\n",
@@ -76286,7 +75300,7 @@ index 253695d..9481ce8 100644
  
  		schedule();
  	}
-@@ -342,13 +342,13 @@ static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
+@@ -341,13 +341,13 @@ static int ircomm_tty_block_til_ready(struct ircomm_tty_cb *self,
  	if (extra_count) {
  		/* ++ is not atomic, so this should be protected - Jean II */
  		spin_lock_irqsave(&self->spinlock, flags);
@@ -76303,7 +75317,7 @@ index 253695d..9481ce8 100644
  
  	if (!retval)
  		self->flags |= ASYNC_NORMAL_ACTIVE;
-@@ -417,14 +417,14 @@ static int ircomm_tty_open(struct tty_struct *tty, struct file *filp)
+@@ -412,14 +412,14 @@ static int ircomm_tty_open(struct tty_struct *tty, struct file *filp)
  	}
  	/* ++ is not atomic, so this should be protected - Jean II */
  	spin_lock_irqsave(&self->spinlock, flags);
@@ -76320,7 +75334,7 @@ index 253695d..9481ce8 100644
  
  	/* Not really used by us, but lets do it anyway */
  	self->tty->low_latency = (self->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
-@@ -510,7 +510,7 @@ static void ircomm_tty_close(struct tty_struct *tty, struct file *filp)
+@@ -505,7 +505,7 @@ static void ircomm_tty_close(struct tty_struct *tty, struct file *filp)
  		return;
  	}
  
@@ -76329,7 +75343,7 @@ index 253695d..9481ce8 100644
  		/*
  		 * Uh, oh.  tty->count is 1, which means that the tty
  		 * structure will be freed.  state->count should always
-@@ -520,16 +520,16 @@ static void ircomm_tty_close(struct tty_struct *tty, struct file *filp)
+@@ -515,16 +515,16 @@ static void ircomm_tty_close(struct tty_struct *tty, struct file *filp)
  		 */
  		IRDA_DEBUG(0, "%s(), bad serial port count; "
  			   "tty->count is 1, state->count is %d\n", __func__ ,
@@ -76352,7 +75366,7 @@ index 253695d..9481ce8 100644
  		spin_unlock_irqrestore(&self->spinlock, flags);
  
  		IRDA_DEBUG(0, "%s(), open count > 0\n", __func__ );
-@@ -561,7 +561,7 @@ static void ircomm_tty_close(struct tty_struct *tty, struct file *filp)
+@@ -556,7 +556,7 @@ static void ircomm_tty_close(struct tty_struct *tty, struct file *filp)
  	tty->closing = 0;
  	self->tty = NULL;
  
@@ -76361,7 +75375,7 @@ index 253695d..9481ce8 100644
  		if (self->close_delay)
  			schedule_timeout_interruptible(self->close_delay);
  		wake_up_interruptible(&self->open_wait);
-@@ -1013,7 +1013,7 @@ static void ircomm_tty_hangup(struct tty_struct *tty)
+@@ -1008,7 +1008,7 @@ static void ircomm_tty_hangup(struct tty_struct *tty)
  	spin_lock_irqsave(&self->spinlock, flags);
  	self->flags &= ~ASYNC_NORMAL_ACTIVE;
  	self->tty = NULL;
@@ -76370,7 +75384,7 @@ index 253695d..9481ce8 100644
  	spin_unlock_irqrestore(&self->spinlock, flags);
  
  	wake_up_interruptible(&self->open_wait);
-@@ -1360,7 +1360,7 @@ static void ircomm_tty_line_info(struct ircomm_tty_cb *self, struct seq_file *m)
+@@ -1355,7 +1355,7 @@ static void ircomm_tty_line_info(struct ircomm_tty_cb *self, struct seq_file *m)
  	seq_putc(m, '\n');
  
  	seq_printf(m, "Role: %s\n", self->client ? "client" : "server");
@@ -76380,10 +75394,10 @@ index 253695d..9481ce8 100644
  	seq_printf(m, "Max header size: %d\n", self->max_header_size);
  
 diff --git a/net/iucv/af_iucv.c b/net/iucv/af_iucv.c
-index d5c5b8f..33beff0 100644
+index 07d7d55..541de95 100644
 --- a/net/iucv/af_iucv.c
 +++ b/net/iucv/af_iucv.c
-@@ -764,10 +764,10 @@ static int iucv_sock_autobind(struct sock *sk)
+@@ -783,10 +783,10 @@ static int iucv_sock_autobind(struct sock *sk)
  
  	write_lock_bh(&iucv_sk_list.lock);
  
@@ -76397,7 +75411,7 @@ index d5c5b8f..33beff0 100644
  
  	write_unlock_bh(&iucv_sk_list.lock);
 diff --git a/net/key/af_key.c b/net/key/af_key.c
-index 11dbb22..c20f667 100644
+index 7e5d927..cdbb54e 100644
 --- a/net/key/af_key.c
 +++ b/net/key/af_key.c
 @@ -3016,10 +3016,10 @@ static int pfkey_send_policy_notify(struct xfrm_policy *xp, int dir, const struc
@@ -76414,7 +75428,7 @@ index 11dbb22..c20f667 100644
  	return res;
  }
 diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h
-index 2f0642d..e5c6fba 100644
+index db8fae5..ff070cd 100644
 --- a/net/mac80211/ieee80211_i.h
 +++ b/net/mac80211/ieee80211_i.h
 @@ -28,6 +28,7 @@
@@ -76425,7 +75439,7 @@ index 2f0642d..e5c6fba 100644
  #include "key.h"
  #include "sta_info.h"
  
-@@ -781,7 +782,7 @@ struct ieee80211_local {
+@@ -842,7 +843,7 @@ struct ieee80211_local {
  	/* also used to protect ampdu_ac_queue and amdpu_ac_stop_refcnt */
  	spinlock_t queue_stop_reason_lock;
  
@@ -76435,7 +75449,7 @@ index 2f0642d..e5c6fba 100644
  	/* number of interfaces with corresponding FIF_ flags */
  	int fif_fcsfail, fif_plcpfail, fif_control, fif_other_bss, fif_pspoll,
 diff --git a/net/mac80211/iface.c b/net/mac80211/iface.c
-index 8e2137b..2974283 100644
+index c20051b..2accbc4 100644
 --- a/net/mac80211/iface.c
 +++ b/net/mac80211/iface.c
 @@ -222,7 +222,7 @@ static int ieee80211_do_open(struct net_device *dev, bool coming_up)
@@ -76474,7 +75488,7 @@ index 8e2137b..2974283 100644
  		drv_stop(local);
   err_del_bss:
  	sdata->bss = NULL;
-@@ -489,7 +489,7 @@ static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata,
+@@ -491,7 +491,7 @@ static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata,
  	}
  
  	if (going_down)
@@ -76483,7 +75497,7 @@ index 8e2137b..2974283 100644
  
  	switch (sdata->vif.type) {
  	case NL80211_IFTYPE_AP_VLAN:
-@@ -548,7 +548,7 @@ static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata,
+@@ -550,7 +550,7 @@ static void ieee80211_do_stop(struct ieee80211_sub_if_data *sdata,
  
  	ieee80211_recalc_ps(local, -1);
  
@@ -76493,10 +75507,10 @@ index 8e2137b..2974283 100644
  			napi_disable(&local->napi);
  		ieee80211_clear_tx_pending(local);
 diff --git a/net/mac80211/main.c b/net/mac80211/main.c
-index b142bd4..a651749 100644
+index 1633648..d45ebfa 100644
 --- a/net/mac80211/main.c
 +++ b/net/mac80211/main.c
-@@ -166,7 +166,7 @@ int ieee80211_hw_config(struct ieee80211_local *local, u32 changed)
+@@ -164,7 +164,7 @@ int ieee80211_hw_config(struct ieee80211_local *local, u32 changed)
  		local->hw.conf.power_level = power;
  	}
  
@@ -76506,7 +75520,7 @@ index b142bd4..a651749 100644
  		/*
  		 * Goal:
 diff --git a/net/mac80211/pm.c b/net/mac80211/pm.c
-index 596efaf..8f1911f 100644
+index ef8eba1..5c63952 100644
 --- a/net/mac80211/pm.c
 +++ b/net/mac80211/pm.c
 @@ -34,7 +34,7 @@ int __ieee80211_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
@@ -76527,7 +75541,7 @@ index 596efaf..8f1911f 100644
  	if (local->wowlan) {
  		int err = drv_suspend(local, wowlan);
  		if (err < 0) {
-@@ -129,7 +129,7 @@ int __ieee80211_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
+@@ -128,7 +128,7 @@ int __ieee80211_suspend(struct ieee80211_hw *hw, struct cfg80211_wowlan *wowlan)
  	}
  
  	/* stop hardware - this must stop RX */
@@ -76537,10 +75551,10 @@ index 596efaf..8f1911f 100644
  
   suspend:
 diff --git a/net/mac80211/rate.c b/net/mac80211/rate.c
-index f9b8e81..bb89b46 100644
+index 3313c11..bec9f17 100644
 --- a/net/mac80211/rate.c
 +++ b/net/mac80211/rate.c
-@@ -401,7 +401,7 @@ int ieee80211_init_rate_ctrl_alg(struct ieee80211_local *local,
+@@ -494,7 +494,7 @@ int ieee80211_init_rate_ctrl_alg(struct ieee80211_local *local,
  
  	ASSERT_RTNL();
  
@@ -76563,10 +75577,10 @@ index c97a065..ff61928 100644
  
  	return p;
 diff --git a/net/mac80211/util.c b/net/mac80211/util.c
-index 9919892..8c49803 100644
+index 32f7a3b..2b52a0d 100644
 --- a/net/mac80211/util.c
 +++ b/net/mac80211/util.c
-@@ -1143,7 +1143,7 @@ int ieee80211_reconfig(struct ieee80211_local *local)
+@@ -1179,7 +1179,7 @@ int ieee80211_reconfig(struct ieee80211_local *local)
  	}
  #endif
  	/* everything else happens only if HW was up & running */
@@ -76576,10 +75590,10 @@ index 9919892..8c49803 100644
  
  	/*
 diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig
-index f8ac4ef..b02560b 100644
+index 0c6f67e..d02cdfc 100644
 --- a/net/netfilter/Kconfig
 +++ b/net/netfilter/Kconfig
-@@ -806,6 +806,16 @@ config NETFILTER_XT_MATCH_ESP
+@@ -836,6 +836,16 @@ config NETFILTER_XT_MATCH_ESP
  
  	  To compile it as a module, choose M here.  If unsure, say N.
  
@@ -76597,10 +75611,10 @@ index f8ac4ef..b02560b 100644
  	tristate '"hashlimit" match support'
  	depends on (IP6_NF_IPTABLES || IP6_NF_IPTABLES=n)
 diff --git a/net/netfilter/Makefile b/net/netfilter/Makefile
-index 40f4c3d..0d5dd6b 100644
+index ca36765..0882e7c 100644
 --- a/net/netfilter/Makefile
 +++ b/net/netfilter/Makefile
-@@ -83,6 +83,7 @@ obj-$(CONFIG_NETFILTER_XT_MATCH_DEVGROUP) += xt_devgroup.o
+@@ -86,6 +86,7 @@ obj-$(CONFIG_NETFILTER_XT_MATCH_DEVGROUP) += xt_devgroup.o
  obj-$(CONFIG_NETFILTER_XT_MATCH_DSCP) += xt_dscp.o
  obj-$(CONFIG_NETFILTER_XT_MATCH_ECN) += xt_ecn.o
  obj-$(CONFIG_NETFILTER_XT_MATCH_ESP) += xt_esp.o
@@ -76640,7 +75654,7 @@ index 29fa5ba..8debc79 100644
  
  	if (!todrop_rate[i]) return 0;
 diff --git a/net/netfilter/ipvs/ip_vs_core.c b/net/netfilter/ipvs/ip_vs_core.c
-index 2555816..31492d9 100644
+index 00bdb1d..6725a48 100644
 --- a/net/netfilter/ipvs/ip_vs_core.c
 +++ b/net/netfilter/ipvs/ip_vs_core.c
 @@ -562,7 +562,7 @@ int ip_vs_leave(struct ip_vs_service *svc, struct sk_buff *skb,
@@ -76662,7 +75676,7 @@ index 2555816..31492d9 100644
  	if ((ipvs->sync_state & IP_VS_STATE_MASTER) &&
  	    cp->protocol == IPPROTO_SCTP) {
 diff --git a/net/netfilter/ipvs/ip_vs_ctl.c b/net/netfilter/ipvs/ip_vs_ctl.c
-index b3afe18..08ec940 100644
+index f558998..9cdff60 100644
 --- a/net/netfilter/ipvs/ip_vs_ctl.c
 +++ b/net/netfilter/ipvs/ip_vs_ctl.c
 @@ -788,7 +788,7 @@ __ip_vs_update_dest(struct ip_vs_service *svc, struct ip_vs_dest *dest,
@@ -76868,7 +75882,7 @@ index 4fe4fb4..87a89e5 100644
  	return 0;
  }
 diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c
-index 467af9c..8f415cc 100644
+index faa48f7..65f7f54 100644
 --- a/net/netlink/af_netlink.c
 +++ b/net/netlink/af_netlink.c
 @@ -741,7 +741,7 @@ static void netlink_overrun(struct sock *sk)
@@ -76880,7 +75894,7 @@ index 467af9c..8f415cc 100644
  }
  
  static struct sock *netlink_getsockbypid(struct sock *ssk, u32 pid)
-@@ -1997,7 +1997,7 @@ static int netlink_seq_show(struct seq_file *seq, void *v)
+@@ -2013,7 +2013,7 @@ static int netlink_seq_show(struct seq_file *seq, void *v)
  			   sk_wmem_alloc_get(s),
  			   nlk->cb,
  			   atomic_read(&s->sk_refcnt),
@@ -76890,10 +75904,10 @@ index 467af9c..8f415cc 100644
  			);
  
 diff --git a/net/netrom/af_netrom.c b/net/netrom/af_netrom.c
-index 7dab229..212156f 100644
+index 06592d8..64860f6 100644
 --- a/net/netrom/af_netrom.c
 +++ b/net/netrom/af_netrom.c
-@@ -839,6 +839,7 @@ static int nr_getname(struct socket *sock, struct sockaddr *uaddr,
+@@ -838,6 +838,7 @@ static int nr_getname(struct socket *sock, struct sockaddr *uaddr,
  	struct sock *sk = sock->sk;
  	struct nr_sock *nr = nr_sk(sk);
  
@@ -76901,7 +75915,7 @@ index 7dab229..212156f 100644
  	lock_sock(sk);
  	if (peer != 0) {
  		if (sk->sk_state != TCP_ESTABLISHED) {
-@@ -853,7 +854,6 @@ static int nr_getname(struct socket *sock, struct sockaddr *uaddr,
+@@ -852,7 +853,6 @@ static int nr_getname(struct socket *sock, struct sockaddr *uaddr,
  		*uaddr_len = sizeof(struct full_sockaddr_ax25);
  	} else {
  		sax->fsa_ax25.sax25_family = AF_NETROM;
@@ -76909,24 +75923,11 @@ index 7dab229..212156f 100644
  		sax->fsa_ax25.sax25_call   = nr->source_addr;
  		*uaddr_len = sizeof(struct sockaddr_ax25);
  	}
-diff --git a/net/openvswitch/datapath.c b/net/openvswitch/datapath.c
-index 2c03050..5cf68c1 100644
---- a/net/openvswitch/datapath.c
-+++ b/net/openvswitch/datapath.c
-@@ -322,7 +322,7 @@ static int queue_userspace_packet(int dp_ifindex, struct sk_buff *skb,
- 			return -ENOMEM;
- 
- 		nskb = __vlan_put_tag(nskb, vlan_tx_tag_get(nskb));
--		if (!skb)
-+		if (!nskb)
- 			return -ENOMEM;
- 
- 		nskb->vlan_tci = 0;
 diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c
-index 2dbb32b..a1b4722 100644
+index 4f2c0df..f0ff342 100644
 --- a/net/packet/af_packet.c
 +++ b/net/packet/af_packet.c
-@@ -1676,7 +1676,7 @@ static int packet_rcv(struct sk_buff *skb, struct net_device *dev,
+@@ -1687,7 +1687,7 @@ static int packet_rcv(struct sk_buff *skb, struct net_device *dev,
  
  	spin_lock(&sk->sk_receive_queue.lock);
  	po->stats.tp_packets++;
@@ -76935,7 +75936,7 @@ index 2dbb32b..a1b4722 100644
  	__skb_queue_tail(&sk->sk_receive_queue, skb);
  	spin_unlock(&sk->sk_receive_queue.lock);
  	sk->sk_data_ready(sk, skb->len);
-@@ -1685,7 +1685,7 @@ static int packet_rcv(struct sk_buff *skb, struct net_device *dev,
+@@ -1696,7 +1696,7 @@ static int packet_rcv(struct sk_buff *skb, struct net_device *dev,
  drop_n_acct:
  	spin_lock(&sk->sk_receive_queue.lock);
  	po->stats.tp_drops++;
@@ -76944,7 +75945,7 @@ index 2dbb32b..a1b4722 100644
  	spin_unlock(&sk->sk_receive_queue.lock);
  
  drop_n_restore:
-@@ -3271,7 +3271,7 @@ static int packet_getsockopt(struct socket *sock, int level, int optname,
+@@ -3294,7 +3294,7 @@ static int packet_getsockopt(struct socket *sock, int level, int optname,
  	case PACKET_HDRLEN:
  		if (len > sizeof(int))
  			len = sizeof(int);
@@ -76953,7 +75954,7 @@ index 2dbb32b..a1b4722 100644
  			return -EFAULT;
  		switch (val) {
  		case TPACKET_V1:
-@@ -3321,7 +3321,7 @@ static int packet_getsockopt(struct socket *sock, int level, int optname,
+@@ -3344,7 +3344,7 @@ static int packet_getsockopt(struct socket *sock, int level, int optname,
  
  	if (put_user(len, optlen))
  		return -EFAULT;
@@ -77080,7 +76081,7 @@ index edfaaaf..8c89879 100644
  	spinlock_t		i_ack_lock;	/* protect i_ack_next */
  	u64			i_ack_next;	/* next ACK to send */
 diff --git a/net/rds/ib_cm.c b/net/rds/ib_cm.c
-index 51c8689..36c555f 100644
+index a1e1162..265e129 100644
 --- a/net/rds/ib_cm.c
 +++ b/net/rds/ib_cm.c
 @@ -718,7 +718,7 @@ void rds_ib_conn_shutdown(struct rds_connection *conn)
@@ -77093,7 +76094,7 @@ index 51c8689..36c555f 100644
  	ic->i_ack_next = 0;
  #endif
 diff --git a/net/rds/ib_recv.c b/net/rds/ib_recv.c
-index e29e0ca..fa3a6a3 100644
+index 8d19491..05a3e65 100644
 --- a/net/rds/ib_recv.c
 +++ b/net/rds/ib_recv.c
 @@ -592,7 +592,7 @@ static u64 rds_ib_get_ack(struct rds_ib_connection *ic)
@@ -77128,7 +76129,7 @@ index 04ce3b1..48119a6 100644
  	spinlock_t		i_ack_lock;	/* protect i_ack_next */
  	u64			i_ack_next;	/* next ACK to send */
 diff --git a/net/rds/iw_cm.c b/net/rds/iw_cm.c
-index 9556d28..f046d0e 100644
+index a91e1db..cf3053f 100644
 --- a/net/rds/iw_cm.c
 +++ b/net/rds/iw_cm.c
 @@ -663,7 +663,7 @@ void rds_iw_conn_shutdown(struct rds_connection *conn)
@@ -77141,7 +76142,7 @@ index 9556d28..f046d0e 100644
  	ic->i_ack_next = 0;
  #endif
 diff --git a/net/rds/iw_recv.c b/net/rds/iw_recv.c
-index 5e57347..3916042 100644
+index 4503335..db566b4 100644
 --- a/net/rds/iw_recv.c
 +++ b/net/rds/iw_recv.c
 @@ -427,7 +427,7 @@ static u64 rds_iw_get_ack(struct rds_iw_connection *ic)
@@ -77463,10 +76464,10 @@ index 1e2eee8..ce3967e 100644
  			   assoc->assoc_id,
  			   assoc->sndbuf_used,
 diff --git a/net/sctp/socket.c b/net/sctp/socket.c
-index d043722..6903416 100644
+index 92ba71d..9a97902 100644
 --- a/net/sctp/socket.c
 +++ b/net/sctp/socket.c
-@@ -4575,7 +4575,7 @@ static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
+@@ -4569,7 +4569,7 @@ static int sctp_getsockopt_peer_addrs(struct sock *sk, int len,
  		addrlen = sctp_get_af_specific(temp.sa.sa_family)->sockaddr_len;
  		if (space_left < addrlen)
  			return -ENOMEM;
@@ -77476,7 +76477,7 @@ index d043722..6903416 100644
  		to += addrlen;
  		cnt++;
 diff --git a/net/socket.c b/net/socket.c
-index 0de4131..7e7ddab 100644
+index 851edcd..b786851 100644
 --- a/net/socket.c
 +++ b/net/socket.c
 @@ -88,6 +88,7 @@
@@ -77533,7 +76534,7 @@ index 0de4131..7e7ddab 100644
  		goto out;
 @@ -1451,6 +1466,14 @@ SYSCALL_DEFINE3(bind, int, fd, struct sockaddr __user *, umyaddr, int, addrlen)
  	if (sock) {
- 		err = move_addr_to_kernel(umyaddr, addrlen, (struct sockaddr *)&address);
+ 		err = move_addr_to_kernel(umyaddr, addrlen, &address);
  		if (err >= 0) {
 +			if (gr_handle_sock_server((struct sockaddr *)&address)) {
 +				err = -EACCES;
@@ -77629,7 +76630,7 @@ index 0de4131..7e7ddab 100644
  	err =
  	    security_socket_connect(sock, (struct sockaddr *)&address, addrlen);
  	if (err)
-@@ -1970,7 +2030,7 @@ static int __sys_sendmsg(struct socket *sock, struct msghdr __user *msg,
+@@ -1966,7 +2026,7 @@ static int __sys_sendmsg(struct socket *sock, struct msghdr __user *msg,
  		 * checking falls down on this.
  		 */
  		if (copy_from_user(ctl_buf,
@@ -77638,7 +76639,7 @@ index 0de4131..7e7ddab 100644
  				   ctl_len))
  			goto out_freectl;
  		msg_sys->msg_control = ctl_buf;
-@@ -2140,7 +2200,7 @@ static int __sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
+@@ -2136,7 +2196,7 @@ static int __sys_recvmsg(struct socket *sock, struct msghdr __user *msg,
  	 *      kernel msghdr to use the kernel address space)
  	 */
  
@@ -77646,8 +76647,8 @@ index 0de4131..7e7ddab 100644
 +	uaddr = (void __force_user *)msg_sys->msg_name;
  	uaddr_len = COMPAT_NAMELEN(msg);
  	if (MSG_CMSG_COMPAT & flags) {
- 		err = verify_compat_iovec(msg_sys, iov,
-@@ -2768,7 +2828,7 @@ static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
+ 		err = verify_compat_iovec(msg_sys, iov, &addr, VERIFY_WRITE);
+@@ -2758,7 +2818,7 @@ static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
  	}
  
  	ifr = compat_alloc_user_space(buf_size);
@@ -77656,7 +76657,7 @@ index 0de4131..7e7ddab 100644
  
  	if (copy_in_user(&ifr->ifr_name, &ifr32->ifr_name, IFNAMSIZ))
  		return -EFAULT;
-@@ -2792,12 +2852,12 @@ static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
+@@ -2782,12 +2842,12 @@ static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
  			offsetof(struct ethtool_rxnfc, fs.ring_cookie));
  
  		if (copy_in_user(rxnfc, compat_rxnfc,
@@ -77673,7 +76674,7 @@ index 0de4131..7e7ddab 100644
  		    copy_in_user(&rxnfc->rule_cnt, &compat_rxnfc->rule_cnt,
  				 sizeof(rxnfc->rule_cnt)))
  			return -EFAULT;
-@@ -2809,12 +2869,12 @@ static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
+@@ -2799,12 +2859,12 @@ static int ethtool_ioctl(struct net *net, struct compat_ifreq __user *ifr32)
  
  	if (convert_out) {
  		if (copy_in_user(compat_rxnfc, rxnfc,
@@ -77690,7 +76691,7 @@ index 0de4131..7e7ddab 100644
  		    copy_in_user(&compat_rxnfc->rule_cnt, &rxnfc->rule_cnt,
  				 sizeof(rxnfc->rule_cnt)))
  			return -EFAULT;
-@@ -2884,7 +2944,7 @@ static int bond_ioctl(struct net *net, unsigned int cmd,
+@@ -2874,7 +2934,7 @@ static int bond_ioctl(struct net *net, unsigned int cmd,
  		old_fs = get_fs();
  		set_fs(KERNEL_DS);
  		err = dev_ioctl(net, cmd,
@@ -77699,7 +76700,7 @@ index 0de4131..7e7ddab 100644
  		set_fs(old_fs);
  
  		return err;
-@@ -2993,7 +3053,7 @@ static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
+@@ -2983,7 +3043,7 @@ static int compat_sioc_ifmap(struct net *net, unsigned int cmd,
  
  	old_fs = get_fs();
  	set_fs(KERNEL_DS);
@@ -77708,7 +76709,7 @@ index 0de4131..7e7ddab 100644
  	set_fs(old_fs);
  
  	if (cmd == SIOCGIFMAP && !err) {
-@@ -3098,7 +3158,7 @@ static int routing_ioctl(struct net *net, struct socket *sock,
+@@ -3088,7 +3148,7 @@ static int routing_ioctl(struct net *net, struct socket *sock,
  		ret |= __get_user(rtdev, &(ur4->rt_dev));
  		if (rtdev) {
  			ret |= copy_from_user(devname, compat_ptr(rtdev), 15);
@@ -77717,7 +76718,7 @@ index 0de4131..7e7ddab 100644
  			devname[15] = 0;
  		} else
  			r4.rt_dev = NULL;
-@@ -3324,8 +3384,8 @@ int kernel_getsockopt(struct socket *sock, int level, int optname,
+@@ -3314,8 +3374,8 @@ int kernel_getsockopt(struct socket *sock, int level, int optname,
  	int __user *uoptlen;
  	int err;
  
@@ -77728,7 +76729,7 @@ index 0de4131..7e7ddab 100644
  
  	set_fs(KERNEL_DS);
  	if (level == SOL_SOCKET)
-@@ -3345,7 +3405,7 @@ int kernel_setsockopt(struct socket *sock, int level, int optname,
+@@ -3335,7 +3395,7 @@ int kernel_setsockopt(struct socket *sock, int level, int optname,
  	char __user *uoptval;
  	int err;
  
@@ -77738,10 +76739,10 @@ index 0de4131..7e7ddab 100644
  	set_fs(KERNEL_DS);
  	if (level == SOL_SOCKET)
 diff --git a/net/sunrpc/sched.c b/net/sunrpc/sched.c
-index 8efd96c..b492ab2 100644
+index 994cfea..5343b6b 100644
 --- a/net/sunrpc/sched.c
 +++ b/net/sunrpc/sched.c
-@@ -239,9 +239,9 @@ static int rpc_wait_bit_killable(void *word)
+@@ -240,9 +240,9 @@ static int rpc_wait_bit_killable(void *word)
  #ifdef RPC_DEBUG
  static void rpc_task_set_debuginfo(struct rpc_task *task)
  {
@@ -77753,24 +76754,11 @@ index 8efd96c..b492ab2 100644
  }
  #else
  static inline void rpc_task_set_debuginfo(struct rpc_task *task)
-diff --git a/net/sunrpc/svcsock.c b/net/sunrpc/svcsock.c
-index 4645709..d41d668 100644
---- a/net/sunrpc/svcsock.c
-+++ b/net/sunrpc/svcsock.c
-@@ -396,7 +396,7 @@ static int svc_partial_recvfrom(struct svc_rqst *rqstp,
- 				int buflen, unsigned int base)
- {
- 	size_t save_iovlen;
--	void __user *save_iovbase;
-+	void *save_iovbase;
- 	unsigned int i;
- 	int ret;
- 
 diff --git a/net/sunrpc/xprtrdma/svc_rdma.c b/net/sunrpc/xprtrdma/svc_rdma.c
-index 09af4fa..77110a9 100644
+index 8343737..677025e 100644
 --- a/net/sunrpc/xprtrdma/svc_rdma.c
 +++ b/net/sunrpc/xprtrdma/svc_rdma.c
-@@ -61,15 +61,15 @@ unsigned int svcrdma_max_req_size = RPCRDMA_MAX_REQ_SIZE;
+@@ -62,15 +62,15 @@ unsigned int svcrdma_max_req_size = RPCRDMA_MAX_REQ_SIZE;
  static unsigned int min_max_inline = 4096;
  static unsigned int max_max_inline = 65536;
  
@@ -77795,7 +76783,7 @@ index 09af4fa..77110a9 100644
  
  /* Temporary NFS request map and context caches */
  struct kmem_cache *svc_rdma_map_cachep;
-@@ -109,7 +109,7 @@ static int read_reset_stat(ctl_table *table, int write,
+@@ -110,7 +110,7 @@ static int read_reset_stat(ctl_table *table, int write,
  		len -= *ppos;
  		if (len > *lenp)
  			len = *lenp;
@@ -77804,7 +76792,7 @@ index 09af4fa..77110a9 100644
  			return -EFAULT;
  		*lenp = len;
  		*ppos += len;
-@@ -150,63 +150,63 @@ static ctl_table svcrdma_parm_table[] = {
+@@ -151,63 +151,63 @@ static ctl_table svcrdma_parm_table[] = {
  	{
  		.procname	= "rdma_stat_read",
  		.data		= &rdma_stat_read,
@@ -77878,10 +76866,10 @@ index 09af4fa..77110a9 100644
  		.proc_handler	= read_reset_stat,
  	},
 diff --git a/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c b/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c
-index df67211..c354b13 100644
+index 41cb63b..c4a1489 100644
 --- a/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c
 +++ b/net/sunrpc/xprtrdma/svc_rdma_recvfrom.c
-@@ -499,7 +499,7 @@ next_sge:
+@@ -501,7 +501,7 @@ next_sge:
  			svc_rdma_put_context(ctxt, 0);
  			goto out;
  		}
@@ -77890,7 +76878,7 @@ index df67211..c354b13 100644
  
  		if (read_wr.num_sge < chl_map->ch[ch_no].count) {
  			chl_map->ch[ch_no].count -= read_wr.num_sge;
-@@ -609,7 +609,7 @@ int svc_rdma_recvfrom(struct svc_rqst *rqstp)
+@@ -611,7 +611,7 @@ int svc_rdma_recvfrom(struct svc_rqst *rqstp)
  				  dto_q);
  		list_del_init(&ctxt->dto_q);
  	} else {
@@ -77899,7 +76887,7 @@ index df67211..c354b13 100644
  		clear_bit(XPT_DATA, &xprt->xpt_flags);
  		ctxt = NULL;
  	}
-@@ -629,7 +629,7 @@ int svc_rdma_recvfrom(struct svc_rqst *rqstp)
+@@ -631,7 +631,7 @@ int svc_rdma_recvfrom(struct svc_rqst *rqstp)
  	dprintk("svcrdma: processing ctxt=%p on xprt=%p, rqstp=%p, status=%d\n",
  		ctxt, rdma_xprt, rqstp, ctxt->wc_status);
  	BUG_ON(ctxt->wc_status != IB_WC_SUCCESS);
@@ -77909,7 +76897,7 @@ index df67211..c354b13 100644
  	/* Build up the XDR from the receive buffers. */
  	rdma_build_arg_xdr(rqstp, ctxt, ctxt->byte_len);
 diff --git a/net/sunrpc/xprtrdma/svc_rdma_sendto.c b/net/sunrpc/xprtrdma/svc_rdma_sendto.c
-index 249a835..fb2794b 100644
+index 42eb7ba..c887c45 100644
 --- a/net/sunrpc/xprtrdma/svc_rdma_sendto.c
 +++ b/net/sunrpc/xprtrdma/svc_rdma_sendto.c
 @@ -362,7 +362,7 @@ static int send_write(struct svcxprt_rdma *xprt, struct svc_rqst *rqstp,
@@ -77922,10 +76910,10 @@ index 249a835..fb2794b 100644
  		goto err;
  	return 0;
 diff --git a/net/sunrpc/xprtrdma/svc_rdma_transport.c b/net/sunrpc/xprtrdma/svc_rdma_transport.c
-index 894cb42..cf5bafb 100644
+index 73b428b..5f3f8f3 100644
 --- a/net/sunrpc/xprtrdma/svc_rdma_transport.c
 +++ b/net/sunrpc/xprtrdma/svc_rdma_transport.c
-@@ -300,7 +300,7 @@ static void rq_cq_reap(struct svcxprt_rdma *xprt)
+@@ -292,7 +292,7 @@ static void rq_cq_reap(struct svcxprt_rdma *xprt)
  		return;
  
  	ib_req_notify_cq(xprt->sc_rq_cq, IB_CQ_NEXT_COMP);
@@ -77934,7 +76922,7 @@ index 894cb42..cf5bafb 100644
  
  	while ((ret = ib_poll_cq(xprt->sc_rq_cq, 1, &wc)) > 0) {
  		ctxt = (struct svc_rdma_op_ctxt *)(unsigned long)wc.wr_id;
-@@ -322,7 +322,7 @@ static void rq_cq_reap(struct svcxprt_rdma *xprt)
+@@ -314,7 +314,7 @@ static void rq_cq_reap(struct svcxprt_rdma *xprt)
  	}
  
  	if (ctxt)
@@ -77943,7 +76931,7 @@ index 894cb42..cf5bafb 100644
  
  	set_bit(XPT_DATA, &xprt->sc_xprt.xpt_flags);
  	/*
-@@ -394,7 +394,7 @@ static void sq_cq_reap(struct svcxprt_rdma *xprt)
+@@ -386,7 +386,7 @@ static void sq_cq_reap(struct svcxprt_rdma *xprt)
  		return;
  
  	ib_req_notify_cq(xprt->sc_sq_cq, IB_CQ_NEXT_COMP);
@@ -77952,7 +76940,7 @@ index 894cb42..cf5bafb 100644
  	while ((ret = ib_poll_cq(cq, 1, &wc)) > 0) {
  		if (wc.status != IB_WC_SUCCESS)
  			/* Close the transport */
-@@ -412,7 +412,7 @@ static void sq_cq_reap(struct svcxprt_rdma *xprt)
+@@ -404,7 +404,7 @@ static void sq_cq_reap(struct svcxprt_rdma *xprt)
  	}
  
  	if (ctxt)
@@ -77961,7 +76949,7 @@ index 894cb42..cf5bafb 100644
  }
  
  static void sq_comp_handler(struct ib_cq *cq, void *cq_context)
-@@ -1274,7 +1274,7 @@ int svc_rdma_send(struct svcxprt_rdma *xprt, struct ib_send_wr *wr)
+@@ -1266,7 +1266,7 @@ int svc_rdma_send(struct svcxprt_rdma *xprt, struct ib_send_wr *wr)
  		spin_lock_bh(&xprt->sc_lock);
  		if (xprt->sc_sq_depth < atomic_read(&xprt->sc_sq_count) + wr_count) {
  			spin_unlock_bh(&xprt->sc_lock);
@@ -77971,7 +76959,7 @@ index 894cb42..cf5bafb 100644
  			/* See if we can opportunistically reap SQ WR to make room */
  			sq_cq_reap(xprt);
 diff --git a/net/sysctl_net.c b/net/sysctl_net.c
-index e758139..d29ea47 100644
+index c3e65ae..f512a2b 100644
 --- a/net/sysctl_net.c
 +++ b/net/sysctl_net.c
 @@ -47,7 +47,7 @@ static int net_ctl_permissions(struct ctl_table_root *root,
@@ -77984,10 +76972,10 @@ index e758139..d29ea47 100644
  		return (mode << 6) | (mode << 3) | mode;
  	}
 diff --git a/net/tipc/link.c b/net/tipc/link.c
-index ac1832a..533ed97 100644
+index b4b9b30..5b62131 100644
 --- a/net/tipc/link.c
 +++ b/net/tipc/link.c
-@@ -1205,7 +1205,7 @@ static int link_send_sections_long(struct tipc_port *sender,
+@@ -1203,7 +1203,7 @@ static int link_send_sections_long(struct tipc_port *sender,
  	struct tipc_msg fragm_hdr;
  	struct sk_buff *buf, *buf_chain, *prev;
  	u32 fragm_crs, fragm_rest, hsz, sect_rest;
@@ -77996,7 +76984,7 @@ index ac1832a..533ed97 100644
  	int curr_sect;
  	u32 fragm_no;
  
-@@ -1249,7 +1249,7 @@ again:
+@@ -1247,7 +1247,7 @@ again:
  
  		if (!sect_rest) {
  			sect_rest = msg_sect[++curr_sect].iov_len;
@@ -78005,7 +76993,7 @@ index ac1832a..533ed97 100644
  		}
  
  		if (sect_rest < fragm_rest)
-@@ -1268,7 +1268,7 @@ error:
+@@ -1266,7 +1266,7 @@ error:
  			}
  		} else
  			skb_copy_to_linear_data_offset(buf, fragm_crs,
@@ -78015,7 +77003,7 @@ index ac1832a..533ed97 100644
  		sect_rest -= sz;
  		fragm_crs += sz;
 diff --git a/net/tipc/msg.c b/net/tipc/msg.c
-index 3e4d3e2..27b55dc 100644
+index e3afe16..333ea83 100644
 --- a/net/tipc/msg.c
 +++ b/net/tipc/msg.c
 @@ -99,7 +99,7 @@ int tipc_msg_build(struct tipc_msg *hdr, struct iovec const *msg_sect,
@@ -78028,7 +77016,7 @@ index 3e4d3e2..27b55dc 100644
  		pos += msg_sect[cnt].iov_len;
  	}
 diff --git a/net/tipc/subscr.c b/net/tipc/subscr.c
-index 8c49566..14510cb 100644
+index b2964e9..fdf2e27 100644
 --- a/net/tipc/subscr.c
 +++ b/net/tipc/subscr.c
 @@ -101,7 +101,7 @@ static void subscr_send_event(struct tipc_subscription *sub,
@@ -78041,10 +77029,10 @@ index 8c49566..14510cb 100644
  
  	sub->evt.event = htohl(event, sub->swap);
 diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c
-index 85d3bb7..79f4487 100644
+index d510353..26c8a32 100644
 --- a/net/unix/af_unix.c
 +++ b/net/unix/af_unix.c
-@@ -770,6 +770,12 @@ static struct sock *unix_find_other(struct net *net,
+@@ -779,6 +779,12 @@ static struct sock *unix_find_other(struct net *net,
  		err = -ECONNREFUSED;
  		if (!S_ISSOCK(inode->i_mode))
  			goto put_fail;
@@ -78057,10 +77045,10 @@ index 85d3bb7..79f4487 100644
  		u = unix_find_socket_byinode(inode);
  		if (!u)
  			goto put_fail;
-@@ -790,6 +796,13 @@ static struct sock *unix_find_other(struct net *net,
+@@ -799,6 +805,13 @@ static struct sock *unix_find_other(struct net *net,
  		if (u) {
  			struct dentry *dentry;
- 			dentry = unix_sk(u)->dentry;
+ 			dentry = unix_sk(u)->path.dentry;
 +
 +			if (!gr_handle_chroot_unix(pid_vnr(u->sk_peer_pid))) {
 +				err = -EPERM;
@@ -78069,9 +77057,9 @@ index 85d3bb7..79f4487 100644
 +			}
 +
  			if (dentry)
- 				touch_atime(unix_sk(u)->mnt, dentry);
+ 				touch_atime(&unix_sk(u)->path);
  		} else
-@@ -872,11 +885,18 @@ static int unix_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
+@@ -881,11 +894,18 @@ static int unix_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
  		err = security_path_mknod(&path, dentry, mode, 0);
  		if (err)
  			goto out_mknod_drop_write;
@@ -78091,7 +77079,7 @@ index 85d3bb7..79f4487 100644
  		dput(path.dentry);
  		path.dentry = dentry;
 diff --git a/net/wireless/core.h b/net/wireless/core.h
-index 43ad9c8..ab5127c 100644
+index 3ac2dd0..fbe533e 100644
 --- a/net/wireless/core.h
 +++ b/net/wireless/core.h
 @@ -27,7 +27,7 @@ struct cfg80211_registered_device {
@@ -78104,7 +77092,7 @@ index 43ad9c8..ab5127c 100644
  	struct work_struct rfkill_sync;
  
 diff --git a/net/wireless/wext-core.c b/net/wireless/wext-core.c
-index 0af7f54..c916d2f 100644
+index af648e0..6185d3a 100644
 --- a/net/wireless/wext-core.c
 +++ b/net/wireless/wext-core.c
 @@ -747,8 +747,7 @@ static int ioctl_standard_iw_point(struct iw_point *iwp, unsigned int cmd,
@@ -78117,7 +77105,7 @@ index 0af7f54..c916d2f 100644
  			/* Allow userspace to GET more than max so
  			 * we can support any size GET requests.
  			 * There is still a limit : -ENOMEM.
-@@ -785,22 +784,6 @@ static int ioctl_standard_iw_point(struct iw_point *iwp, unsigned int cmd,
+@@ -787,22 +786,6 @@ static int ioctl_standard_iw_point(struct iw_point *iwp, unsigned int cmd,
  		}
  	}
  
@@ -78217,10 +77205,10 @@ index 7661576..80f7627 100644
  	}
  
 diff --git a/scripts/Makefile.build b/scripts/Makefile.build
-index d2b366c..51ff91ebc 100644
+index ff1720d..d428ee7 100644
 --- a/scripts/Makefile.build
 +++ b/scripts/Makefile.build
-@@ -109,7 +109,7 @@ endif
+@@ -111,7 +111,7 @@ endif
  endif
  
  # Do not include host rules unless needed
@@ -78319,7 +77307,7 @@ index 0000000..8729101
 +#!/bin/sh
 +echo -e "#include \"gcc-plugin.h\"\n#include \"tree.h\"\n#include \"tm.h\"\n#include \"rtl.h\"" | $1 -x c -shared - -o /dev/null -I`$2 -print-file-name=plugin`/include >/dev/null 2>&1 && echo "y"
 diff --git a/scripts/mod/file2alias.c b/scripts/mod/file2alias.c
-index e047e17..ea646ec 100644
+index 44ddaa5..a3119bd 100644
 --- a/scripts/mod/file2alias.c
 +++ b/scripts/mod/file2alias.c
 @@ -128,7 +128,7 @@ static void device_id_check(const char *modname, const char *device_id,
@@ -78531,21 +77519,8 @@ index 5c11312..72742b5 100644
  	    logoname);
      write_hex_cnt = 0;
      for (i = 0; i < logo_clutsize; i++) {
-diff --git a/scripts/tags.sh b/scripts/tags.sh
-index 833813a..0bc8588 100755
---- a/scripts/tags.sh
-+++ b/scripts/tags.sh
-@@ -116,7 +116,7 @@ docscope()
- 
- dogtags()
- {
--	all_sources | gtags -f -
-+	all_sources | gtags -i -f -
- }
- 
- exuberant()
 diff --git a/security/Kconfig b/security/Kconfig
-index 51bd5a0..c37f5e6 100644
+index ccc61f8..5effdb4 100644
 --- a/security/Kconfig
 +++ b/security/Kconfig
 @@ -4,6 +4,640 @@
@@ -79199,10 +78174,10 @@ index 51bd5a0..c37f5e6 100644
  	help
  	  This is the portion of low virtual memory which should be protected
 diff --git a/security/apparmor/lsm.c b/security/apparmor/lsm.c
-index 97ce8fa..23dad96 100644
+index ad05d39..afffccb 100644
 --- a/security/apparmor/lsm.c
 +++ b/security/apparmor/lsm.c
-@@ -620,7 +620,7 @@ static int apparmor_task_setrlimit(struct task_struct *task,
+@@ -622,7 +622,7 @@ static int apparmor_task_setrlimit(struct task_struct *task,
  	return error;
  }
  
@@ -79212,18 +78187,10 @@ index 97ce8fa..23dad96 100644
  
  	.ptrace_access_check =		apparmor_ptrace_access_check,
 diff --git a/security/commoncap.c b/security/commoncap.c
-index b8d2bb9..980069e 100644
+index 71a166a..851bb3e 100644
 --- a/security/commoncap.c
 +++ b/security/commoncap.c
-@@ -29,6 +29,7 @@
- #include <linux/securebits.h>
- #include <linux/user_namespace.h>
- #include <linux/personality.h>
-+#include <net/sock.h>
- 
- /*
-  * If a non-root user executes a setuid-root binary in
-@@ -575,6 +576,9 @@ int cap_bprm_secureexec(struct linux_binprm *bprm)
+@@ -576,6 +576,9 @@ int cap_bprm_secureexec(struct linux_binprm *bprm)
  {
  	const struct cred *cred = current_cred();
  
@@ -79307,10 +78274,10 @@ index 4c48e13..7abdac9 100644
  	if (iov != iovstack)
  		kfree(iov);
 diff --git a/security/keys/keyctl.c b/security/keys/keyctl.c
-index 0b3f5d7..892c8a6 100644
+index fb767c6..b9c49c0 100644
 --- a/security/keys/keyctl.c
 +++ b/security/keys/keyctl.c
-@@ -921,7 +921,7 @@ static int keyctl_change_reqkey_auth(struct key *key)
+@@ -935,7 +935,7 @@ static int keyctl_change_reqkey_auth(struct key *key)
  /*
   * Copy the iovec data from userspace
   */
@@ -79319,7 +78286,7 @@ index 0b3f5d7..892c8a6 100644
  				 unsigned ioc)
  {
  	for (; ioc > 0; ioc--) {
-@@ -943,7 +943,7 @@ static long copy_from_user_iovec(void *buffer, const struct iovec *iov,
+@@ -957,7 +957,7 @@ static long copy_from_user_iovec(void *buffer, const struct iovec *iov,
   * If successful, 0 will be returned.
   */
  long keyctl_instantiate_key_common(key_serial_t id,
@@ -79328,7 +78295,7 @@ index 0b3f5d7..892c8a6 100644
  				   unsigned ioc,
  				   size_t plen,
  				   key_serial_t ringid)
-@@ -1038,7 +1038,7 @@ long keyctl_instantiate_key(key_serial_t id,
+@@ -1052,7 +1052,7 @@ long keyctl_instantiate_key(key_serial_t id,
  			[0].iov_len  = plen
  		};
  
@@ -79337,7 +78304,7 @@ index 0b3f5d7..892c8a6 100644
  	}
  
  	return keyctl_instantiate_key_common(id, NULL, 0, 0, ringid);
-@@ -1071,7 +1071,7 @@ long keyctl_instantiate_key_iov(key_serial_t id,
+@@ -1085,7 +1085,7 @@ long keyctl_instantiate_key_iov(key_serial_t id,
  	if (ret == 0)
  		goto no_payload_free;
  
@@ -79390,10 +78357,18 @@ index f728728..6457a0c 100644
  
  /*
 diff --git a/security/security.c b/security/security.c
-index d754249..8bf426e 100644
+index bf619ff..8179030 100644
 --- a/security/security.c
 +++ b/security/security.c
-@@ -26,8 +26,8 @@
+@@ -20,6 +20,7 @@
+ #include <linux/ima.h>
+ #include <linux/evm.h>
+ #include <linux/fsnotify.h>
++#include <linux/mm.h>
+ #include <net/flow.h>
+ 
+ #define MAX_LSM_EVM_XATTR	2
+@@ -28,8 +29,8 @@
  static __initdata char chosen_lsm[SECURITY_NAME_MAX + 1] =
  	CONFIG_DEFAULT_SECURITY;
  
@@ -79404,7 +78379,7 @@ index d754249..8bf426e 100644
  	.name	= "default",
  };
  
-@@ -68,7 +68,9 @@ int __init security_init(void)
+@@ -70,7 +71,9 @@ int __init security_init(void)
  
  void reset_security_ops(void)
  {
@@ -79415,10 +78390,10 @@ index d754249..8bf426e 100644
  
  /* Save user chosen LSM */
 diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
-index 6a3683e..f52f4c0 100644
+index d85b793..a164832 100644
 --- a/security/selinux/hooks.c
 +++ b/security/selinux/hooks.c
-@@ -94,8 +94,6 @@
+@@ -95,8 +95,6 @@
  
  #define NUM_SEL_MNT_OPTS 5
  
@@ -79427,7 +78402,7 @@ index 6a3683e..f52f4c0 100644
  /* SECMARK reference count */
  static atomic_t selinux_secmark_refcount = ATOMIC_INIT(0);
  
-@@ -5429,7 +5427,7 @@ static int selinux_key_getsecurity(struct key *key, char **_buffer)
+@@ -5520,7 +5518,7 @@ static int selinux_key_getsecurity(struct key *key, char **_buffer)
  
  #endif
  
@@ -79437,10 +78412,10 @@ index 6a3683e..f52f4c0 100644
  
  	.ptrace_access_check =		selinux_ptrace_access_check,
 diff --git a/security/selinux/include/xfrm.h b/security/selinux/include/xfrm.h
-index b43813c..74be837 100644
+index c220f31..89fab3f 100644
 --- a/security/selinux/include/xfrm.h
 +++ b/security/selinux/include/xfrm.h
-@@ -48,7 +48,7 @@ int selinux_xfrm_decode_session(struct sk_buff *skb, u32 *sid, int ckall);
+@@ -50,7 +50,7 @@ int selinux_xfrm_decode_session(struct sk_buff *skb, u32 *sid, int ckall);
  
  static inline void selinux_xfrm_notify_policyload(void)
  {
@@ -79450,10 +78425,10 @@ index b43813c..74be837 100644
  #else
  static inline int selinux_xfrm_enabled(void)
 diff --git a/security/smack/smack_lsm.c b/security/smack/smack_lsm.c
-index e8af5b0b..78527ef 100644
+index 45c32f0..0038be2 100644
 --- a/security/smack/smack_lsm.c
 +++ b/security/smack/smack_lsm.c
-@@ -3481,7 +3481,7 @@ static int smack_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
+@@ -3500,7 +3500,7 @@ static int smack_inode_getsecctx(struct inode *inode, void **ctx, u32 *ctxlen)
  	return 0;
  }
  
@@ -79475,8 +78450,20 @@ index 620d37c..e2ad89b 100644
  	.name                = "tomoyo",
  	.cred_alloc_blank    = tomoyo_cred_alloc_blank,
  	.cred_prepare        = tomoyo_cred_prepare,
+diff --git a/security/yama/Kconfig b/security/yama/Kconfig
+index 51d6709..1f3dbe2 100644
+--- a/security/yama/Kconfig
++++ b/security/yama/Kconfig
+@@ -1,6 +1,6 @@
+ config SECURITY_YAMA
+ 	bool "Yama support"
+-	depends on SECURITY
++	depends on SECURITY && !GRKERNSEC
+ 	select SECURITYFS
+ 	select SECURITY_PATH
+ 	default n
 diff --git a/sound/aoa/codecs/onyx.c b/sound/aoa/codecs/onyx.c
-index 762af68..7103453 100644
+index 270790d..c67dfcb 100644
 --- a/sound/aoa/codecs/onyx.c
 +++ b/sound/aoa/codecs/onyx.c
 @@ -54,7 +54,7 @@ struct onyx {
@@ -79608,10 +78595,10 @@ index 91cdf94..4085161 100644
  	if (err < 0)
  		return err;
 diff --git a/sound/core/pcm_native.c b/sound/core/pcm_native.c
-index 25ed9fe..24c46e9 100644
+index 3fe99e6..26952e4 100644
 --- a/sound/core/pcm_native.c
 +++ b/sound/core/pcm_native.c
-@@ -2765,11 +2765,11 @@ int snd_pcm_kernel_ioctl(struct snd_pcm_substream *substream,
+@@ -2770,11 +2770,11 @@ int snd_pcm_kernel_ioctl(struct snd_pcm_substream *substream,
  	switch (substream->stream) {
  	case SNDRV_PCM_STREAM_PLAYBACK:
  		result = snd_pcm_playback_ioctl1(NULL, substream, cmd,
@@ -79795,7 +78782,7 @@ index 537a9cb..8e8c8e9 100644
  
  /**
 diff --git a/sound/firewire/isight.c b/sound/firewire/isight.c
-index cd094ec..eca1277 100644
+index d428ffe..751ef78 100644
 --- a/sound/firewire/isight.c
 +++ b/sound/firewire/isight.c
 @@ -96,7 +96,7 @@ static void isight_update_pointers(struct isight *isight, unsigned int count)
@@ -79903,7 +78890,7 @@ index 09d4648..cf234c7 100644
                  list_add(&s->list, &cs4297a_devs);
  
 diff --git a/sound/pci/hda/hda_codec.h b/sound/pci/hda/hda_codec.h
-index f0f1943..8e1f96c 100644
+index 56b4f74..7cfd41a 100644
 --- a/sound/pci/hda/hda_codec.h
 +++ b/sound/pci/hda/hda_codec.h
 @@ -611,7 +611,7 @@ struct hda_bus_ops {
@@ -79964,7 +78951,7 @@ index 0da778a..bc38b84 100644
  
  
 diff --git a/sound/pci/ymfpci/ymfpci_main.c b/sound/pci/ymfpci/ymfpci_main.c
-index 12a9a2b..2b6138f 100644
+index a8159b81..5f006a5 100644
 --- a/sound/pci/ymfpci/ymfpci_main.c
 +++ b/sound/pci/ymfpci/ymfpci_main.c
 @@ -203,8 +203,8 @@ static void snd_ymfpci_hw_stop(struct snd_ymfpci *chip)
@@ -79998,7 +78985,7 @@ index 12a9a2b..2b6138f 100644
  			wake_up(&chip->interrupt_sleep);
  		}
  	}
-@@ -2389,7 +2389,7 @@ int __devinit snd_ymfpci_create(struct snd_card *card,
+@@ -2398,7 +2398,7 @@ int __devinit snd_ymfpci_create(struct snd_card *card,
  	spin_lock_init(&chip->reg_lock);
  	spin_lock_init(&chip->voice_lock);
  	init_waitqueue_head(&chip->interrupt_sleep);
@@ -80008,10 +78995,10 @@ index 12a9a2b..2b6138f 100644
  	chip->pci = pci;
  	chip->irq = -1;
 diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c
-index cdc860a..db34a93 100644
+index 0ad8dca..7186339 100644
 --- a/sound/soc/soc-pcm.c
 +++ b/sound/soc/soc-pcm.c
-@@ -605,7 +605,7 @@ int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
+@@ -641,7 +641,7 @@ int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
  	struct snd_soc_platform *platform = rtd->platform;
  	struct snd_soc_dai *codec_dai = rtd->codec_dai;
  	struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
@@ -81345,66 +80332,58 @@ index 0000000..d8a8da2
 +}
 diff --git a/tools/gcc/size_overflow_hash.h b/tools/gcc/size_overflow_hash.h
 new file mode 100644
-index 0000000..ce7366b
+index 0000000..41de68c
 --- /dev/null
 +++ b/tools/gcc/size_overflow_hash.h
-@@ -0,0 +1,13933 @@
+@@ -0,0 +1,13146 @@
 +struct size_overflow_hash _000001_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_dr",
 +	.file	= "drivers/base/devres.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000002_hash = {
 +	.next	= NULL,
 +	.name	= "__copy_from_user",
 +	.file	= "arch/x86/include/asm/uaccess_32.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000003_hash = {
 +	.next	= NULL,
 +	.name	= "copy_from_user",
 +	.file	= "arch/x86/include/asm/uaccess_32.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000004_hash = {
 +	.next	= NULL,
 +	.name	= "__copy_from_user_inatomic",
 +	.file	= "arch/x86/include/asm/uaccess_32.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000005_hash = {
 +	.next	= NULL,
 +	.name	= "__copy_from_user_nocache",
 +	.file	= "arch/x86/include/asm/uaccess_32.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000006_hash = {
 +	.next	= NULL,
 +	.name	= "__copy_to_user_inatomic",
 +	.file	= "arch/x86/include/asm/uaccess_32.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000007_hash = {
 +	.next	= NULL,
 +	.name	= "do_xip_mapping_read",
 +	.file	= "mm/filemap_xip.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000008_hash = {
 +	.next	= NULL,
 +	.name	= "hugetlbfs_read",
 +	.file	= "fs/hugetlbfs/inode.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000009_hash = {
 +	.next	= NULL,
 +	.name	= "kcalloc",
@@ -81412,371 +80391,318 @@ index 0000000..ce7366b
 +	.param1	= 1,
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000011_hash = {
 +	.next	= NULL,
 +	.name	= "kmalloc",
 +	.file	= "include/linux/slub_def.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000012_hash = {
 +	.next	= NULL,
 +	.name	= "kmalloc_slab",
 +	.file	= "include/linux/slub_def.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000013_hash = {
 +	.next	= NULL,
 +	.name	= "kmemdup",
 +	.file	= "include/linux/string.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000014_hash = {
 +	.next	= NULL,
 +	.name	= "__krealloc",
 +	.file	= "include/linux/slab.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000015_hash = {
 +	.next	= NULL,
 +	.name	= "memdup_user",
 +	.file	= "include/linux/string.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000016_hash = {
 +	.next	= NULL,
 +	.name	= "module_alloc",
 +	.file	= "include/linux/moduleloader.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000017_hash = {
 +	.next	= NULL,
 +	.name	= "read_default_ldt",
 +	.file	= "arch/x86/kernel/ldt.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000018_hash = {
 +	.next	= NULL,
 +	.name	= "read_kcore",
 +	.file	= "fs/proc/kcore.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000019_hash = {
 +	.next	= NULL,
 +	.name	= "read_ldt",
 +	.file	= "arch/x86/kernel/ldt.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000020_hash = {
 +	.next	= NULL,
 +	.name	= "read_zero",
 +	.file	= "drivers/char/mem.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000021_hash = {
 +	.next	= NULL,
 +	.name	= "__vmalloc_node",
 +	.file	= "mm/vmalloc.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000022_hash = {
 +	.next	= NULL,
 +	.name	= "vm_map_ram",
 +	.file	= "include/linux/vmalloc.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000023_hash = {
 +	.next	= NULL,
 +	.name	= "aa_simple_write_to_buffer",
 +	.file	= "security/apparmor/apparmorfs.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000024_hash = {
 +	.next	= NULL,
 +	.name	= "ablkcipher_copy_iv",
 +	.file	= "crypto/ablkcipher.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000025_hash = {
 +	.next	= NULL,
 +	.name	= "ablkcipher_next_slow",
 +	.file	= "crypto/ablkcipher.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000026_hash = {
 +	.next	= NULL,
 +	.name	= "acpi_os_allocate",
 +	.file	= "include/acpi/platform/aclinux.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000027_hash = {
 +	.next	= NULL,
 +	.name	= "acpi_system_write_wakeup_device",
 +	.file	= "drivers/acpi/proc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000028_hash = {
 +	.next	= NULL,
 +	.name	= "ahash_setkey_unaligned",
 +	.file	= "crypto/ahash.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000029_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_fdmem",
 +	.file	= "fs/file.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000030_hash = {
 +	.next	= NULL,
 +	.name	= "audit_unpack_string",
 +	.file	= "kernel/auditfilter.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000031_hash = {
 +	.next	= NULL,
 +	.name	= "bio_alloc_map_data",
 +	.file	= "fs/bio.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000032_hash = {
 +	.next	= NULL,
 +	.name	= "bio_kmalloc",
 +	.file	= "include/linux/bio.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000033_hash = {
 +	.next	= NULL,
 +	.name	= "blkcipher_copy_iv",
 +	.file	= "crypto/blkcipher.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000034_hash = {
 +	.next	= NULL,
 +	.name	= "blkcipher_next_slow",
 +	.file	= "crypto/blkcipher.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000035_hash = {
 +	.next	= NULL,
 +	.name	= "cgroup_write_string",
 +	.file	= "kernel/cgroup.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000036_hash = {
 +	.next	= NULL,
 +	.name	= "cgroup_write_X64",
 +	.file	= "kernel/cgroup.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000037_hash = {
 +	.next	= NULL,
 +	.name	= "clear_refs_write",
 +	.file	= "fs/proc/task_mmu.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000038_hash = {
 +	.next	= NULL,
 +	.name	= "comm_write",
 +	.file	= "fs/proc/base.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000039_hash = {
 +	.next	= NULL,
 +	.name	= "copy_and_check",
 +	.file	= "kernel/module.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000040_hash = {
 +	.next	= NULL,
 +	.name	= "__copy_to_user",
 +	.file	= "arch/x86/include/asm/uaccess_32.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000041_hash = {
 +	.next	= NULL,
 +	.name	= "copy_vm86_regs_from_user",
 +	.file	= "arch/x86/kernel/vm86_32.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000042_hash = {
 +	.next	= NULL,
 +	.name	= "csum_partial_copy_fromiovecend",
 +	.file	= "include/linux/socket.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000043_hash = {
 +	.next	= NULL,
 +	.name	= "ddebug_proc_write",
 +	.file	= "lib/dynamic_debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000044_hash = {
 +	.next	= NULL,
 +	.name	= "devm_kzalloc",
 +	.file	= "include/linux/device.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000045_hash = {
 +	.next	= NULL,
 +	.name	= "devres_alloc",
 +	.file	= "include/linux/device.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000046_hash = {
 +	.next	= NULL,
 +	.name	= "do_ip_setsockopt",
 +	.file	= "net/ipv4/ip_sockglue.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000047_hash = {
 +	.next	= NULL,
 +	.name	= "do_kimage_alloc",
 +	.file	= "kernel/kexec.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000048_hash = {
 +	.next	= NULL,
 +	.name	= "do_tty_write",
 +	.file	= "drivers/tty/tty_io.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000049_hash = {
 +	.next	= NULL,
 +	.name	= "fanotify_write",
 +	.file	= "fs/notify/fanotify/fanotify_user.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000050_hash = {
 +	.next	= NULL,
 +	.name	= "file_read_actor",
 +	.file	= "include/linux/fs.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000051_hash = {
 +	.next	= NULL,
 +	.name	= "fill_write_buffer",
 +	.file	= "fs/sysfs/file.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000052_hash = {
 +	.next	= NULL,
 +	.name	= "get_user_cpu_mask",
 +	.file	= "kernel/sched/core.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000053_hash = {
 +	.next	= NULL,
 +	.name	= "hashtab_create",
 +	.file	= "security/selinux/ss/hashtab.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000054_hash = {
 +	.next	= NULL,
 +	.name	= "heap_init",
 +	.file	= "include/linux/prio_heap.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000055_hash = {
 +	.next	= NULL,
 +	.name	= "hest_ghes_dev_register",
 +	.file	= "drivers/acpi/apei/hest.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000056_hash = {
 +	.next	= NULL,
 +	.name	= "ima_write_policy",
 +	.file	= "security/integrity/ima/ima_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000057_hash = {
 +	.next	= NULL,
 +	.name	= "input_ff_create",
 +	.file	= "include/linux/input.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000058_hash = {
 +	.next	= NULL,
 +	.name	= "input_mt_init_slots",
 +	.file	= "include/linux/input/mt.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000059_hash = {
 +	.next	= NULL,
 +	.name	= "iov_iter_copy_from_user",
 +	.file	= "include/linux/fs.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000060_hash = {
 +	.next	= NULL,
 +	.name	= "iov_iter_copy_from_user_atomic",
 +	.file	= "include/linux/fs.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000061_hash = {
 +	.next	= NULL,
 +	.name	= "keyctl_instantiate_key_common",
 +	.file	= "security/keys/keyctl.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000062_hash = {
 +	.next	= NULL,
 +	.name	= "keyctl_update_key",
 +	.file	= "security/keys/keyctl.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000063_hash = {
 +	.next	= NULL,
 +	.name	= "__kfifo_alloc",
@@ -81784,28 +80710,24 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000065_hash = {
 +	.next	= NULL,
 +	.name	= "kfifo_copy_from_user",
 +	.file	= "kernel/kfifo.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000066_hash = {
 +	.next	= NULL,
 +	.name	= "kmalloc_node",
 +	.file	= "include/linux/slab.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000067_hash = {
 +	.next	= NULL,
 +	.name	= "kmalloc_parameter",
 +	.file	= "kernel/params.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000068_hash = {
 +	.next	= NULL,
 +	.name	= "kobj_map",
@@ -81813,161 +80735,138 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000070_hash = {
 +	.next	= NULL,
 +	.name	= "krealloc",
 +	.file	= "include/linux/slab.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000071_hash = {
 +	.next	= NULL,
 +	.name	= "kvmalloc",
 +	.file	= "security/apparmor/lib.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000072_hash = {
 +	.next	= NULL,
 +	.name	= "kzalloc",
 +	.file	= "include/linux/slab.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000073_hash = {
 +	.next	= NULL,
 +	.name	= "listxattr",
 +	.file	= "fs/xattr.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000074_hash = {
 +	.next	= NULL,
 +	.name	= "mempool_kmalloc",
 +	.file	= "include/linux/mempool.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000075_hash = {
 +	.next	= NULL,
 +	.name	= "mem_rw",
 +	.file	= "fs/proc/base.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000076_hash = {
 +	.next	= NULL,
 +	.name	= "module_alloc_update_bounds",
 +	.file	= "kernel/module.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000077_hash = {
 +	.next	= NULL,
 +	.name	= "mpi_alloc_limb_space",
 +	.file	= "lib/mpi/mpiutil.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000078_hash = {
 +	.next	= NULL,
 +	.name	= "mpi_resize",
 +	.file	= "include/linux/mpi.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000079_hash = {
 +	.next	= NULL,
 +	.name	= "mtrr_write",
 +	.file	= "arch/x86/kernel/cpu/mtrr/if.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000080_hash = {
 +	.next	= NULL,
 +	.name	= "oom_adjust_write",
 +	.file	= "fs/proc/base.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000081_hash = {
 +	.next	= NULL,
 +	.name	= "oom_score_adj_write",
 +	.file	= "fs/proc/base.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000082_hash = {
 +	.next	= NULL,
 +	.name	= "pipe_iov_copy_from_user",
 +	.file	= "fs/pipe.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000083_hash = {
 +	.next	= NULL,
 +	.name	= "pipe_iov_copy_to_user",
 +	.file	= "fs/pipe.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000084_hash = {
 +	.next	= NULL,
 +	.name	= "pipe_set_size",
 +	.file	= "fs/pipe.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000085_hash = {
 +	.next	= NULL,
 +	.name	= "platform_device_add_data",
 +	.file	= "include/linux/platform_device.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000086_hash = {
 +	.next	= NULL,
 +	.name	= "platform_device_add_resources",
 +	.file	= "include/linux/platform_device.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000087_hash = {
 +	.next	= NULL,
 +	.name	= "pm_qos_power_write",
 +	.file	= "kernel/power/qos.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000088_hash = {
 +	.next	= NULL,
 +	.name	= "pnpbios_proc_write",
 +	.file	= "drivers/pnp/pnpbios/proc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000089_hash = {
 +	.next	= NULL,
 +	.name	= "__probe_kernel_read",
 +	.file	= "include/linux/uaccess.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000090_hash = {
 +	.next	= NULL,
 +	.name	= "__probe_kernel_write",
 +	.file	= "include/linux/uaccess.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000091_hash = {
 +	.next	= NULL,
 +	.name	= "proc_coredump_filter_write",
 +	.file	= "fs/proc/base.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000092_hash = {
 +	.next	= NULL,
 +	.name	= "process_vm_rw_pages",
@@ -81975,224 +80874,192 @@ index 0000000..ce7366b
 +	.param5	= 1,
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _000094_hash = {
 +	.next	= NULL,
 +	.name	= "proc_loginuid_write",
 +	.file	= "fs/proc/base.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000095_hash = {
 +	.next	= NULL,
 +	.name	= "proc_pid_attr_write",
 +	.file	= "fs/proc/base.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000096_hash = {
 +	.next	= NULL,
 +	.name	= "pstore_mkfile",
 +	.file	= "fs/pstore/inode.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000097_hash = {
 +	.next	= NULL,
 +	.name	= "qdisc_class_hash_alloc",
 +	.file	= "net/sched/sch_api.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000098_hash = {
 +	.next	= NULL,
 +	.name	= "read",
 +	.file	= "fs/sysfs/bin.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000099_hash = {
 +	.next	= NULL,
 +	.name	= "regmap_access_read_file",
 +	.file	= "drivers/base/regmap/regmap-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000100_hash = {
 +	.next	= NULL,
 +	.name	= "regmap_map_read_file",
 +	.file	= "drivers/base/regmap/regmap-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000101_hash = {
 +	.next	= NULL,
 +	.name	= "_regmap_raw_write",
 +	.file	= "drivers/base/regmap/regmap.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000102_hash = {
 +	.next	= NULL,
 +	.name	= "regset_tls_set",
 +	.file	= "arch/x86/kernel/tls.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000103_hash = {
 +	.next	= NULL,
 +	.name	= "request_key_auth_new",
 +	.file	= "security/keys/request_key_auth.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000104_hash = {
 +	.next	= NULL,
 +	.name	= "restore_i387_fxsave",
 +	.file	= "arch/x86/kernel/i387.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000105_hash = {
 +	.next	= NULL,
 +	.name	= "rngapi_reset",
 +	.file	= "crypto/rng.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000106_hash = {
 +	.next	= NULL,
 +	.name	= "rw_copy_check_uvector",
 +	.file	= "include/linux/fs.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000107_hash = {
 +	.next	= NULL,
 +	.name	= "sched_autogroup_write",
 +	.file	= "fs/proc/base.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000108_hash = {
 +	.next	= NULL,
 +	.name	= "security_context_to_sid_core",
 +	.file	= "security/selinux/ss/services.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000109_hash = {
 +	.next	= NULL,
 +	.name	= "sel_commit_bools_write",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000110_hash = {
 +	.next	= NULL,
 +	.name	= "sel_write_avc_cache_threshold",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000111_hash = {
 +	.next	= NULL,
 +	.name	= "sel_write_bool",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000112_hash = {
 +	.next	= NULL,
 +	.name	= "sel_write_checkreqprot",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000113_hash = {
 +	.next	= NULL,
 +	.name	= "sel_write_disable",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000114_hash = {
 +	.next	= NULL,
 +	.name	= "sel_write_enforce",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000115_hash = {
 +	.next	= NULL,
 +	.name	= "sel_write_load",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000116_hash = {
 +	.next	= NULL,
 +	.name	= "setkey_unaligned",
 +	.file	= "crypto/ablkcipher.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000117_hash = {
 +	.next	= NULL,
 +	.name	= "setkey_unaligned",
 +	.file	= "crypto/blkcipher.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000118_hash = {
 +	.next	= NULL,
 +	.name	= "setkey_unaligned",
 +	.file	= "crypto/aead.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000119_hash = {
 +	.next	= NULL,
 +	.name	= "setkey_unaligned",
 +	.file	= "crypto/cipher.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000120_hash = {
 +	.next	= NULL,
 +	.name	= "setxattr",
 +	.file	= "fs/xattr.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000121_hash = {
 +	.next	= NULL,
 +	.name	= "sg_kmalloc",
 +	.file	= "lib/scatterlist.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000122_hash = {
 +	.next	= NULL,
 +	.name	= "shash_setkey_unaligned",
 +	.file	= "crypto/shash.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000123_hash = {
 +	.next	= NULL,
 +	.name	= "shmem_xattr_set",
 +	.file	= "mm/shmem.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000124_hash = {
 +	.next	= NULL,
 +	.name	= "simple_transaction_get",
 +	.file	= "include/linux/fs.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000125_hash = {
 +	.next	= NULL,
 +	.name	= "simple_write_to_buffer",
@@ -82200,119 +81067,102 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000127_hash = {
 +	.next	= NULL,
 +	.name	= "smk_write_ambient",
 +	.file	= "security/smack/smackfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000128_hash = {
 +	.next	= NULL,
 +	.name	= "smk_write_cipso",
 +	.file	= "security/smack/smackfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000129_hash = {
 +	.next	= NULL,
 +	.name	= "smk_write_direct",
 +	.file	= "security/smack/smackfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000130_hash = {
 +	.next	= NULL,
 +	.name	= "smk_write_doi",
 +	.file	= "security/smack/smackfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000131_hash = {
 +	.next	= NULL,
 +	.name	= "smk_write_load_list",
 +	.file	= "security/smack/smackfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000132_hash = {
 +	.next	= &_000102_hash,
 +	.name	= "smk_write_logging",
 +	.file	= "security/smack/smackfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000133_hash = {
 +	.next	= NULL,
 +	.name	= "smk_write_netlbladdr",
 +	.file	= "security/smack/smackfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000134_hash = {
 +	.next	= NULL,
 +	.name	= "smk_write_onlycap",
 +	.file	= "security/smack/smackfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000135_hash = {
 +	.next	= NULL,
 +	.name	= "sys_add_key",
 +	.file	= "include/linux/syscalls.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000136_hash = {
 +	.next	= NULL,
 +	.name	= "sys_modify_ldt",
 +	.file	= "arch/x86/include/asm/syscalls.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000137_hash = {
 +	.next	= NULL,
 +	.name	= "sys_semtimedop",
 +	.file	= "include/linux/syscalls.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000138_hash = {
 +	.next	= NULL,
 +	.name	= "tomoyo_write_self",
 +	.file	= "security/tomoyo/securityfs_if.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000139_hash = {
 +	.next	= NULL,
 +	.name	= "tpm_write",
 +	.file	= "drivers/char/tpm/tpm.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000140_hash = {
 +	.next	= NULL,
 +	.name	= "tty_buffer_alloc",
 +	.file	= "drivers/tty/tty_buffer.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000141_hash = {
 +	.next	= NULL,
 +	.name	= "user_instantiate",
 +	.file	= "include/keys/user-type.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000142_hash = {
 +	.next	= NULL,
 +	.name	= "user_update",
 +	.file	= "include/keys/user-type.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000143_hash = {
 +	.next	= NULL,
 +	.name	= "vc_do_resize",
@@ -82320,140 +81170,120 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000145_hash = {
 +	.next	= NULL,
 +	.name	= "vcs_write",
 +	.file	= "drivers/tty/vt/vc_screen.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000146_hash = {
 +	.next	= NULL,
 +	.name	= "vga_arb_write",
 +	.file	= "drivers/gpu/vga/vgaarb.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000147_hash = {
 +	.next	= NULL,
 +	.name	= "vga_switcheroo_debugfs_write",
 +	.file	= "drivers/gpu/vga/vga_switcheroo.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000148_hash = {
 +	.next	= NULL,
 +	.name	= "__vmalloc",
 +	.file	= "include/linux/vmalloc.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000149_hash = {
 +	.next	= NULL,
 +	.name	= "vmalloc_32",
 +	.file	= "include/linux/vmalloc.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000150_hash = {
 +	.next	= NULL,
 +	.name	= "vmalloc_32_user",
 +	.file	= "include/linux/vmalloc.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000151_hash = {
 +	.next	= NULL,
 +	.name	= "vmalloc_exec",
 +	.file	= "include/linux/vmalloc.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000152_hash = {
 +	.next	= NULL,
 +	.name	= "vmalloc_node",
 +	.file	= "include/linux/vmalloc.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000153_hash = {
 +	.next	= NULL,
 +	.name	= "__vmalloc_node_flags",
 +	.file	= "mm/vmalloc.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000154_hash = {
 +	.next	= NULL,
 +	.name	= "vmalloc_user",
 +	.file	= "include/linux/vmalloc.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000155_hash = {
 +	.next	= NULL,
 +	.name	= "write",
 +	.file	= "fs/sysfs/bin.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000156_hash = {
 +	.next	= NULL,
 +	.name	= "__xip_file_write",
 +	.file	= "mm/filemap_xip.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000157_hash = {
 +	.next	= NULL,
 +	.name	= "acpi_ex_allocate_name_string",
 +	.file	= "drivers/acpi/acpica/exnames.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000158_hash = {
 +	.next	= NULL,
 +	.name	= "acpi_os_allocate_zeroed",
 +	.file	= "include/acpi/platform/aclinux.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000159_hash = {
 +	.next	= NULL,
 +	.name	= "acpi_ut_initialize_buffer",
 +	.file	= "drivers/acpi/acpica/utalloc.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000160_hash = {
 +	.next	= NULL,
 +	.name	= "add_numbered_child",
 +	.file	= "drivers/mfd/twl-core.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000161_hash = {
 +	.next	= NULL,
 +	.name	= "___alloc_bootmem_nopanic",
 +	.file	= "mm/nobootmem.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000162_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_large_system_hash",
 +	.file	= "include/linux/bootmem.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000163_hash = {
 +	.next	= NULL,
 +	.name	= "audit_init_entry",
 +	.file	= "kernel/auditfilter.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000164_hash = {
 +	.next	= NULL,
 +	.name	= "__bio_map_kern",
@@ -82461,7 +81291,6 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000166_hash = {
 +	.next	= NULL,
 +	.name	= "blk_register_region",
@@ -82469,7 +81298,6 @@ index 0000000..ce7366b
 +	.param1	= 1,
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000168_hash = {
 +	.next	= NULL,
 +	.name	= "cdev_add",
@@ -82477,56 +81305,48 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000170_hash = {
 +	.next	= NULL,
 +	.name	= "copy_to_user",
 +	.file	= "arch/x86/include/asm/uaccess_32.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000171_hash = {
 +	.next	= NULL,
 +	.name	= "crypto_ahash_setkey",
 +	.file	= "include/crypto/hash.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000172_hash = {
 +	.next	= NULL,
 +	.name	= "crypto_alloc_instance2",
 +	.file	= "include/crypto/algapi.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000173_hash = {
 +	.next	= NULL,
 +	.name	= "crypto_shash_setkey",
 +	.file	= "include/crypto/hash.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000174_hash = {
 +	.next	= NULL,
 +	.name	= "dev_set_alias",
 +	.file	= "include/linux/netdevice.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000175_hash = {
 +	.next	= NULL,
 +	.name	= "do_readv_writev",
 +	.file	= "fs/read_write.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000176_hash = {
 +	.next	= NULL,
 +	.name	= "getxattr",
 +	.file	= "fs/xattr.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000177_hash = {
 +	.next	= NULL,
 +	.name	= "hugetlbfs_read_actor",
@@ -82535,91 +81355,78 @@ index 0000000..ce7366b
 +	.param5	= 1,
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000180_hash = {
 +	.next	= NULL,
 +	.name	= "keyctl_instantiate_key",
 +	.file	= "security/keys/keyctl.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000181_hash = {
 +	.next	= NULL,
 +	.name	= "keyctl_instantiate_key_iov",
 +	.file	= "security/keys/keyctl.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000182_hash = {
 +	.next	= NULL,
 +	.name	= "__kfifo_from_user",
 +	.file	= "include/linux/kfifo.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000183_hash = {
 +	.next	= NULL,
 +	.name	= "kimage_crash_alloc",
 +	.file	= "kernel/kexec.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000184_hash = {
 +	.next	= NULL,
 +	.name	= "kimage_normal_alloc",
 +	.file	= "kernel/kexec.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000185_hash = {
 +	.next	= NULL,
 +	.name	= "mpi_alloc",
 +	.file	= "include/linux/mpi.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000186_hash = {
 +	.next	= NULL,
 +	.name	= "mpi_set_bit",
 +	.file	= "include/linux/mpi.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000187_hash = {
 +	.next	= NULL,
 +	.name	= "mpi_set_highbit",
 +	.file	= "include/linux/mpi.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000188_hash = {
 +	.next	= NULL,
 +	.name	= "neigh_hash_alloc",
 +	.file	= "net/core/neighbour.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000189_hash = {
 +	.next	= NULL,
 +	.name	= "nl_pid_hash_zalloc",
 +	.file	= "net/netlink/af_netlink.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000190_hash = {
 +	.next	= NULL,
 +	.name	= "pci_add_cap_save_buffer",
 +	.file	= "drivers/pci/pci.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000191_hash = {
 +	.next	= NULL,
 +	.name	= "pcpu_mem_zalloc",
 +	.file	= "mm/percpu.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000192_hash = {
 +	.next	= NULL,
 +	.name	= "platform_create_bundle",
@@ -82627,7 +81434,6 @@ index 0000000..ce7366b
 +	.param4	= 1,
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _000194_hash = {
 +	.next	= NULL,
 +	.name	= "process_vm_rw",
@@ -82635,7 +81441,6 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000196_hash = {
 +	.next	= NULL,
 +	.name	= "process_vm_rw_single_vec",
@@ -82643,266 +81448,228 @@ index 0000000..ce7366b
 +	.param1	= 1,
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000198_hash = {
 +	.next	= NULL,
 +	.name	= "profile_load",
 +	.file	= "security/apparmor/apparmorfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000199_hash = {
 +	.next	= NULL,
 +	.name	= "profile_remove",
 +	.file	= "security/apparmor/apparmorfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000200_hash = {
 +	.next	= NULL,
 +	.name	= "profile_replace",
 +	.file	= "security/apparmor/apparmorfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000201_hash = {
 +	.next	= NULL,
 +	.name	= "regcache_rbtree_insert_to_block",
 +	.file	= "drivers/base/regmap/regcache-rbtree.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000202_hash = {
 +	.next	= NULL,
 +	.name	= "regmap_raw_write",
 +	.file	= "include/linux/regmap.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000203_hash = {
 +	.next	= NULL,
 +	.name	= "relay_alloc_page_array",
 +	.file	= "kernel/relay.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000204_hash = {
 +	.next	= NULL,
 +	.name	= "RESIZE_IF_NEEDED",
 +	.file	= "lib/mpi/mpi-internal.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000205_hash = {
 +	.next	= NULL,
 +	.name	= "security_context_to_sid",
 +	.file	= "security/selinux/ss/services.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000206_hash = {
 +	.next	= NULL,
 +	.name	= "security_context_to_sid_default",
 +	.file	= "security/selinux/ss/services.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000207_hash = {
 +	.next	= NULL,
 +	.name	= "security_context_to_sid_force",
 +	.file	= "security/selinux/ss/services.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000208_hash = {
 +	.next	= NULL,
 +	.name	= "selinux_transaction_write",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000209_hash = {
 +	.next	= NULL,
 +	.name	= "sel_write_access",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000210_hash = {
 +	.next	= NULL,
 +	.name	= "sel_write_create",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000211_hash = {
 +	.next	= NULL,
 +	.name	= "sel_write_member",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000212_hash = {
 +	.next	= NULL,
 +	.name	= "sel_write_relabel",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000213_hash = {
 +	.next	= NULL,
 +	.name	= "sel_write_user",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000214_hash = {
 +	.next	= NULL,
 +	.name	= "setkey",
 +	.file	= "crypto/cipher.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000215_hash = {
 +	.next	= NULL,
 +	.name	= "setkey",
 +	.file	= "crypto/ablkcipher.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000216_hash = {
 +	.next	= NULL,
 +	.name	= "setkey",
 +	.file	= "crypto/aead.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000217_hash = {
 +	.next	= NULL,
 +	.name	= "setkey",
 +	.file	= "crypto/blkcipher.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000218_hash = {
 +	.next	= NULL,
 +	.name	= "smk_write_access",
 +	.file	= "security/smack/smackfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000219_hash = {
 +	.next	= NULL,
 +	.name	= "snapshot_write",
 +	.file	= "kernel/power/user.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000220_hash = {
 +	.next	= NULL,
 +	.name	= "spi_alloc_master",
 +	.file	= "include/linux/spi/spi.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000221_hash = {
 +	.next	= NULL,
 +	.name	= "spi_register_board_info",
 +	.file	= "include/linux/spi/spi.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000222_hash = {
 +	.next	= NULL,
 +	.name	= "sys_flistxattr",
 +	.file	= "include/linux/syscalls.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000223_hash = {
 +	.next	= NULL,
 +	.name	= "sys_fsetxattr",
 +	.file	= "include/linux/syscalls.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000224_hash = {
 +	.next	= NULL,
 +	.name	= "sysfs_write_file",
 +	.file	= "fs/sysfs/file.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000225_hash = {
 +	.next	= NULL,
 +	.name	= "sys_ipc",
 +	.file	= "include/linux/syscalls.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000226_hash = {
 +	.next	= NULL,
 +	.name	= "sys_keyctl",
 +	.file	= "include/linux/syscalls.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000227_hash = {
 +	.next	= NULL,
 +	.name	= "sys_listxattr",
 +	.file	= "include/linux/syscalls.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000228_hash = {
 +	.next	= NULL,
 +	.name	= "sys_llistxattr",
 +	.file	= "include/linux/syscalls.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000229_hash = {
 +	.next	= NULL,
 +	.name	= "sys_lsetxattr",
 +	.file	= "include/linux/syscalls.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000230_hash = {
 +	.next	= NULL,
 +	.name	= "sys_sched_setaffinity",
 +	.file	= "include/linux/syscalls.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000231_hash = {
 +	.next	= NULL,
 +	.name	= "sys_semop",
 +	.file	= "include/linux/syscalls.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000232_hash = {
 +	.next	= NULL,
 +	.name	= "sys_setxattr",
 +	.file	= "include/linux/syscalls.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000233_hash = {
 +	.next	= NULL,
 +	.name	= "tnode_alloc",
 +	.file	= "net/ipv4/fib_trie.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000234_hash = {
 +	.next	= NULL,
 +	.name	= "tomoyo_commit_ok",
 +	.file	= "security/tomoyo/memory.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000235_hash = {
 +	.next	= NULL,
 +	.name	= "tomoyo_scan_bprm",
@@ -82910,14 +81677,12 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000237_hash = {
 +	.next	= NULL,
 +	.name	= "tty_write",
 +	.file	= "drivers/tty/tty_io.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000238_hash = {
 +	.next	= NULL,
 +	.name	= "vc_resize",
@@ -82925,203 +81690,174 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000240_hash = {
 +	.next	= NULL,
 +	.name	= "vmalloc",
 +	.file	= "include/linux/vmalloc.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000241_hash = {
 +	.next	= NULL,
 +	.name	= "vzalloc",
 +	.file	= "include/linux/vmalloc.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000242_hash = {
 +	.next	= NULL,
 +	.name	= "vzalloc_node",
 +	.file	= "include/linux/vmalloc.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000243_hash = {
 +	.next	= NULL,
 +	.name	= "xfrm_hash_alloc",
 +	.file	= "net/xfrm/xfrm_hash.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000244_hash = {
 +	.next	= NULL,
 +	.name	= "acpi_ds_build_internal_package_obj",
 +	.file	= "drivers/acpi/acpica/dsobject.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000245_hash = {
 +	.next	= NULL,
 +	.name	= "acpi_system_read_event",
 +	.file	= "drivers/acpi/event.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000246_hash = {
 +	.next	= NULL,
 +	.name	= "acpi_ut_create_buffer_object",
 +	.file	= "drivers/acpi/acpica/utobject.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000247_hash = {
 +	.next	= NULL,
 +	.name	= "acpi_ut_create_package_object",
 +	.file	= "drivers/acpi/acpica/utobject.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000248_hash = {
 +	.next	= NULL,
 +	.name	= "acpi_ut_create_string_object",
 +	.file	= "drivers/acpi/acpica/utobject.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000249_hash = {
 +	.next	= NULL,
 +	.name	= "add_child",
 +	.file	= "drivers/mfd/twl-core.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000250_hash = {
 +	.next	= NULL,
 +	.name	= "___alloc_bootmem",
 +	.file	= "mm/nobootmem.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000251_hash = {
 +	.next	= NULL,
 +	.name	= "__alloc_bootmem_nopanic",
 +	.file	= "include/linux/bootmem.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000252_hash = {
 +	.next	= NULL,
 +	.name	= "async_setkey",
 +	.file	= "crypto/blkcipher.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000253_hash = {
 +	.next	= NULL,
 +	.name	= "bio_map_kern",
 +	.file	= "include/linux/bio.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000254_hash = {
 +	.next	= NULL,
 +	.name	= "copy_oldmem_page",
 +	.file	= "include/linux/crash_dump.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000255_hash = {
 +	.next	= NULL,
 +	.name	= "do_sigpending",
 +	.file	= "include/linux/signal.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000257_hash = {
 +	.next	= NULL,
 +	.name	= "keyctl_describe_key",
 +	.file	= "security/keys/keyctl.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000258_hash = {
 +	.next	= NULL,
 +	.name	= "keyctl_get_security",
 +	.file	= "security/keys/keyctl.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000259_hash = {
 +	.next	= NULL,
 +	.name	= "keyring_read",
 +	.file	= "security/keys/keyring.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000260_hash = {
 +	.next	= NULL,
 +	.name	= "kfifo_copy_to_user",
 +	.file	= "kernel/kfifo.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000261_hash = {
 +	.next	= NULL,
 +	.name	= "mousedev_read",
 +	.file	= "drivers/input/mousedev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000262_hash = {
 +	.next	= NULL,
 +	.name	= "mpi_lshift_limbs",
 +	.file	= "lib/mpi/mpi-bit.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000263_hash = {
 +	.next	= NULL,
 +	.name	= "neigh_hash_grow",
 +	.file	= "net/core/neighbour.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000264_hash = {
 +	.next	= NULL,
 +	.name	= "posix_clock_register",
 +	.file	= "include/linux/posix-clock.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000265_hash = {
 +	.next	= NULL,
 +	.name	= "__proc_file_read",
 +	.file	= "fs/proc/generic.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000266_hash = {
 +	.next	= NULL,
 +	.name	= "read_profile",
 +	.file	= "kernel/profile.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000267_hash = {
 +	.next	= NULL,
 +	.name	= "read_vmcore",
 +	.file	= "fs/proc/vmcore.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000268_hash = {
 +	.next	= NULL,
 +	.name	= "redirected_tty_write",
 +	.file	= "drivers/tty/tty_io.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000269_hash = {
 +	.next	= NULL,
 +	.name	= "__register_chrdev",
@@ -83129,28 +81865,24 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000271_hash = {
 +	.next	= NULL,
 +	.name	= "request_key_auth_read",
 +	.file	= "security/keys/request_key_auth.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000272_hash = {
 +	.next	= NULL,
 +	.name	= "shash_async_setkey",
 +	.file	= "crypto/shash.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000273_hash = {
 +	.next	= NULL,
 +	.name	= "shash_compat_setkey",
 +	.file	= "crypto/shash.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000274_hash = {
 +	.next	= NULL,
 +	.name	= "simple_read_from_buffer",
@@ -83158,49 +81890,42 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000276_hash = {
 +	.next	= NULL,
 +	.name	= "store_ifalias",
 +	.file	= "net/core/net-sysfs.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000277_hash = {
 +	.next	= NULL,
 +	.name	= "subbuf_read_actor",
 +	.file	= "kernel/relay.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000278_hash = {
 +	.next	= NULL,
 +	.name	= "sys_fgetxattr",
 +	.file	= "include/linux/syscalls.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000279_hash = {
 +	.next	= NULL,
 +	.name	= "sys_getxattr",
 +	.file	= "include/linux/syscalls.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000280_hash = {
 +	.next	= NULL,
 +	.name	= "sys_kexec_load",
 +	.file	= "include/linux/syscalls.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000281_hash = {
 +	.next	= NULL,
 +	.name	= "sys_lgetxattr",
 +	.file	= "include/linux/syscalls.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000282_hash = {
 +	.next	= NULL,
 +	.name	= "sys_process_vm_readv",
@@ -83208,7 +81933,6 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000284_hash = {
 +	.next	= NULL,
 +	.name	= "sys_process_vm_writev",
@@ -83216,644 +81940,552 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000286_hash = {
 +	.next	= NULL,
 +	.name	= "sys_sched_getaffinity",
 +	.file	= "include/linux/syscalls.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000287_hash = {
 +	.next	= NULL,
 +	.name	= "tomoyo_read_self",
 +	.file	= "security/tomoyo/securityfs_if.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000288_hash = {
 +	.next	= NULL,
 +	.name	= "tpm_read",
 +	.file	= "drivers/char/tpm/tpm.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000289_hash = {
 +	.next	= NULL,
 +	.name	= "user_read",
 +	.file	= "include/keys/user-type.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000290_hash = {
 +	.next	= NULL,
 +	.name	= "vcs_read",
 +	.file	= "drivers/tty/vt/vc_screen.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000291_hash = {
 +	.next	= NULL,
 +	.name	= "vfs_readv",
 +	.file	= "include/linux/fs.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000292_hash = {
 +	.next	= NULL,
 +	.name	= "vfs_writev",
 +	.file	= "include/linux/fs.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000293_hash = {
 +	.next	= NULL,
 +	.name	= "vga_arb_read",
 +	.file	= "drivers/gpu/vga/vgaarb.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000294_hash = {
 +	.next	= NULL,
 +	.name	= "xz_dec_lzma2_create",
 +	.file	= "lib/xz/xz_dec_lzma2.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000295_hash = {
 +	.next	= NULL,
 +	.name	= "aat2870_reg_read_file",
 +	.file	= "drivers/mfd/aat2870-core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000296_hash = {
 +	.next	= NULL,
 +	.name	= "__alloc_bootmem",
 +	.file	= "include/linux/bootmem.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000297_hash = {
 +	.next	= NULL,
 +	.name	= "__alloc_bootmem_low",
 +	.file	= "include/linux/bootmem.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000298_hash = {
 +	.next	= NULL,
 +	.name	= "__alloc_bootmem_node_nopanic",
 +	.file	= "include/linux/bootmem.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000299_hash = {
 +	.next	= NULL,
 +	.name	= "blk_rq_map_kern",
 +	.file	= "include/linux/blkdev.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000300_hash = {
 +	.next	= NULL,
 +	.name	= "cgroup_read_s64",
 +	.file	= "kernel/cgroup.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000301_hash = {
 +	.next	= NULL,
 +	.name	= "cgroup_read_u64",
 +	.file	= "kernel/cgroup.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000302_hash = {
 +	.next	= NULL,
 +	.name	= "cpuset_common_file_read",
 +	.file	= "kernel/cpuset.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000303_hash = {
 +	.next	= NULL,
 +	.name	= "filter_read",
 +	.file	= "lib/dma-debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000304_hash = {
 +	.next	= NULL,
 +	.name	= "ima_show_htable_value",
 +	.file	= "security/integrity/ima/ima_fs.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000305_hash = {
 +	.next	= NULL,
 +	.name	= "kernel_readv",
 +	.file	= "fs/splice.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000306_hash = {
 +	.next	= NULL,
 +	.name	= "__kfifo_to_user",
 +	.file	= "include/linux/kfifo.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000307_hash = {
 +	.next	= NULL,
 +	.name	= "__kfifo_to_user_r",
 +	.file	= "include/linux/kfifo.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000308_hash = {
 +	.next	= NULL,
 +	.name	= "mqueue_read_file",
 +	.file	= "ipc/mqueue.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000309_hash = {
 +	.next	= NULL,
 +	.name	= "oom_adjust_read",
 +	.file	= "fs/proc/base.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000310_hash = {
 +	.next	= NULL,
 +	.name	= "oom_score_adj_read",
 +	.file	= "fs/proc/base.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000311_hash = {
 +	.next	= NULL,
 +	.name	= "pm_qos_power_read",
 +	.file	= "kernel/power/qos.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000312_hash = {
 +	.next	= NULL,
 +	.name	= "proc_coredump_filter_read",
 +	.file	= "fs/proc/base.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000313_hash = {
 +	.next	= NULL,
 +	.name	= "proc_fdinfo_read",
 +	.file	= "fs/proc/base.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000314_hash = {
 +	.next	= NULL,
 +	.name	= "proc_info_read",
 +	.file	= "fs/proc/base.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000315_hash = {
 +	.next	= NULL,
 +	.name	= "proc_loginuid_read",
 +	.file	= "fs/proc/base.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000316_hash = {
 +	.next	= NULL,
 +	.name	= "proc_pid_attr_read",
 +	.file	= "fs/proc/base.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000317_hash = {
 +	.next	= NULL,
 +	.name	= "proc_sessionid_read",
 +	.file	= "fs/proc/base.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000318_hash = {
 +	.next	= NULL,
 +	.name	= "pstore_file_read",
 +	.file	= "fs/pstore/inode.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000319_hash = {
 +	.next	= NULL,
 +	.name	= "read_enabled_file_bool",
 +	.file	= "kernel/kprobes.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000320_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_blob",
 +	.file	= "fs/debugfs/file.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000321_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_bool",
 +	.file	= "fs/debugfs/file.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000322_hash = {
 +	.next	= NULL,
 +	.name	= "read_from_oldmem",
 +	.file	= "fs/proc/vmcore.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000323_hash = {
 +	.next	= NULL,
 +	.name	= "read_oldmem",
 +	.file	= "drivers/char/mem.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000324_hash = {
 +	.next	= NULL,
 +	.name	= "res_counter_read",
 +	.file	= "include/linux/res_counter.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000325_hash = {
 +	.next	= NULL,
 +	.name	= "sel_read_avc_cache_threshold",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000326_hash = {
 +	.next	= NULL,
 +	.name	= "sel_read_avc_hash_stats",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000327_hash = {
 +	.next	= NULL,
 +	.name	= "sel_read_bool",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000328_hash = {
 +	.next	= NULL,
 +	.name	= "sel_read_checkreqprot",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000329_hash = {
 +	.next	= NULL,
 +	.name	= "sel_read_class",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000330_hash = {
 +	.next	= NULL,
 +	.name	= "sel_read_enforce",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000331_hash = {
 +	.next	= NULL,
 +	.name	= "sel_read_handle_status",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000332_hash = {
 +	.next	= NULL,
 +	.name	= "sel_read_handle_unknown",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000333_hash = {
 +	.next	= NULL,
 +	.name	= "sel_read_initcon",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000334_hash = {
 +	.next	= NULL,
 +	.name	= "sel_read_mls",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000335_hash = {
 +	.next	= NULL,
 +	.name	= "sel_read_perm",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000336_hash = {
 +	.next	= NULL,
 +	.name	= "sel_read_policy",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000337_hash = {
 +	.next	= NULL,
 +	.name	= "sel_read_policycap",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000338_hash = {
 +	.next	= NULL,
 +	.name	= "sel_read_policyvers",
 +	.file	= "security/selinux/selinuxfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000339_hash = {
 +	.next	= NULL,
 +	.name	= "simple_attr_read",
 +	.file	= "include/linux/fs.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000340_hash = {
 +	.next	= NULL,
 +	.name	= "simple_transaction_read",
 +	.file	= "include/linux/fs.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000341_hash = {
 +	.next	= NULL,
 +	.name	= "smk_read_ambient",
 +	.file	= "security/smack/smackfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000342_hash = {
 +	.next	= NULL,
 +	.name	= "smk_read_direct",
 +	.file	= "security/smack/smackfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000343_hash = {
 +	.next	= NULL,
 +	.name	= "smk_read_doi",
 +	.file	= "security/smack/smackfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000344_hash = {
 +	.next	= NULL,
 +	.name	= "smk_read_logging",
 +	.file	= "security/smack/smackfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000345_hash = {
 +	.next	= NULL,
 +	.name	= "smk_read_onlycap",
 +	.file	= "security/smack/smackfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000346_hash = {
 +	.next	= NULL,
 +	.name	= "snapshot_read",
 +	.file	= "kernel/power/user.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000347_hash = {
 +	.next	= NULL,
 +	.name	= "supply_map_read_file",
 +	.file	= "drivers/regulator/core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000348_hash = {
 +	.next	= NULL,
 +	.name	= "sysfs_read_file",
 +	.file	= "fs/sysfs/file.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000349_hash = {
 +	.next	= NULL,
 +	.name	= "sys_preadv",
 +	.file	= "include/linux/syscalls.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000350_hash = {
 +	.next	= NULL,
 +	.name	= "sys_pwritev",
 +	.file	= "include/linux/syscalls.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000351_hash = {
 +	.next	= NULL,
 +	.name	= "sys_readv",
 +	.file	= "include/linux/syscalls.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000352_hash = {
 +	.next	= NULL,
 +	.name	= "sys_rt_sigpending",
 +	.file	= "include/linux/syscalls.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000353_hash = {
 +	.next	= NULL,
 +	.name	= "sys_writev",
 +	.file	= "include/linux/syscalls.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000354_hash = {
 +	.next	= NULL,
 +	.name	= "ima_show_htable_violations",
 +	.file	= "security/integrity/ima/ima_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000355_hash = {
 +	.next	= NULL,
 +	.name	= "ima_show_measurements_count",
 +	.file	= "security/integrity/ima/ima_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000356_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_cpu_rmap",
 +	.file	= "include/linux/cpu_rmap.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000357_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_page_cgroup",
 +	.file	= "mm/page_cgroup.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000358_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_sched_domains",
 +	.file	= "include/linux/sched.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000359_hash = {
 +	.next	= NULL,
 +	.name	= "compat_rw_copy_check_uvector",
 +	.file	= "include/linux/compat.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000360_hash = {
 +	.next	= NULL,
 +	.name	= "compat_sys_kexec_load",
 +	.file	= "include/linux/kexec.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000361_hash = {
 +	.next	= NULL,
 +	.name	= "compat_sys_semtimedop",
 +	.file	= "include/linux/compat.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000362_hash = {
 +	.next	= NULL,
 +	.name	= "copy_from_user",
 +	.file	= "arch/x86/include/asm/uaccess_64.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000363_hash = {
 +	.next	= NULL,
 +	.name	= "__copy_from_user",
 +	.file	= "arch/x86/include/asm/uaccess_64.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000364_hash = {
 +	.next	= NULL,
 +	.name	= "__copy_from_user_inatomic",
 +	.file	= "arch/x86/include/asm/uaccess_64.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000365_hash = {
 +	.next	= NULL,
 +	.name	= "__copy_from_user_nocache",
 +	.file	= "arch/x86/include/asm/uaccess_64.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000366_hash = {
 +	.next	= NULL,
 +	.name	= "__copy_in_user",
 +	.file	= "arch/x86/include/asm/uaccess_64.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000367_hash = {
 +	.next	= NULL,
 +	.name	= "copy_in_user",
 +	.file	= "arch/x86/include/asm/uaccess_64.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000368_hash = {
 +	.next	= NULL,
 +	.name	= "__copy_to_user",
 +	.file	= "arch/x86/include/asm/uaccess_64.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000369_hash = {
 +	.next	= NULL,
 +	.name	= "copy_to_user",
 +	.file	= "arch/x86/include/asm/uaccess_64.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000370_hash = {
 +	.next	= NULL,
 +	.name	= "__copy_to_user_inatomic",
 +	.file	= "arch/x86/include/asm/uaccess_64.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000371_hash = {
 +	.next	= NULL,
 +	.name	= "kmalloc_node",
 +	.file	= "include/linux/slub_def.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000372_hash = {
 +	.next	= NULL,
 +	.name	= "pcpu_alloc_bootmem",
 +	.file	= "arch/x86/kernel/setup_percpu.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000373_hash = {
 +	.next	= NULL,
 +	.name	= "sys32_rt_sigpending",
 +	.file	= "arch/x86/include/asm/sys_ia32.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000374_hash = {
 +	.next	= NULL,
 +	.name	= "tunables_read",
 +	.file	= "arch/x86/platform/uv/tlb_uv.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000375_hash = {
 +	.next	= NULL,
 +	.name	= "compat_do_readv_writev",
 +	.file	= "fs/compat.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000376_hash = {
 +	.next	= NULL,
 +	.name	= "compat_keyctl_instantiate_key_iov",
 +	.file	= "security/keys/compat.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000377_hash = {
 +	.next	= NULL,
 +	.name	= "compat_process_vm_rw",
@@ -83861,70 +82493,60 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000379_hash = {
 +	.next	= NULL,
 +	.name	= "do_pages_stat",
 +	.file	= "mm/migrate.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000380_hash = {
 +	.next	= NULL,
 +	.name	= "kzalloc_node",
 +	.file	= "include/linux/slab.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000381_hash = {
 +	.next	= NULL,
 +	.name	= "pcpu_fc_alloc",
 +	.file	= "arch/x86/kernel/setup_percpu.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000382_hash = {
 +	.next	= NULL,
 +	.name	= "ptc_proc_write",
 +	.file	= "arch/x86/platform/uv/tlb_uv.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000383_hash = {
 +	.next	= NULL,
 +	.name	= "tunables_write",
 +	.file	= "arch/x86/platform/uv/tlb_uv.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000384_hash = {
 +	.next	= NULL,
 +	.name	= "__alloc_bootmem_low_node",
 +	.file	= "include/linux/bootmem.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000385_hash = {
 +	.next	= NULL,
 +	.name	= "__alloc_bootmem_node",
 +	.file	= "include/linux/bootmem.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000386_hash = {
 +	.next	= NULL,
 +	.name	= "compat_readv",
 +	.file	= "fs/compat.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000387_hash = {
 +	.next	= NULL,
 +	.name	= "compat_sys_keyctl",
 +	.file	= "include/linux/compat.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000388_hash = {
 +	.next	= NULL,
 +	.name	= "compat_sys_process_vm_readv",
@@ -83932,7 +82554,6 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000390_hash = {
 +	.next	= NULL,
 +	.name	= "compat_sys_process_vm_writev",
@@ -83940,203 +82561,174 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000392_hash = {
 +	.next	= NULL,
 +	.name	= "compat_writev",
 +	.file	= "fs/compat.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000393_hash = {
 +	.next	= NULL,
 +	.name	= "sys_move_pages",
 +	.file	= "include/linux/syscalls.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000394_hash = {
 +	.next	= NULL,
 +	.name	= "__alloc_bootmem_node_high",
 +	.file	= "include/linux/bootmem.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000395_hash = {
 +	.next	= NULL,
 +	.name	= "compat_sys_move_pages",
 +	.file	= "include/linux/compat.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000396_hash = {
 +	.next	= NULL,
 +	.name	= "compat_sys_preadv",
 +	.file	= "include/linux/compat.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000397_hash = {
 +	.next	= NULL,
 +	.name	= "compat_sys_pwritev",
 +	.file	= "include/linux/compat.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000398_hash = {
 +	.next	= NULL,
 +	.name	= "compat_sys_readv",
 +	.file	= "include/linux/compat.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000399_hash = {
 +	.next	= NULL,
 +	.name	= "compat_sys_writev",
 +	.file	= "include/linux/compat.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000400_hash = {
 +	.next	= NULL,
 +	.name	= "sparse_early_usemaps_alloc_node",
 +	.file	= "mm/sparse.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000401_hash = {
 +	.next	= NULL,
 +	.name	= "__earlyonly_bootmem_alloc",
 +	.file	= "mm/sparse-vmemmap.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000402_hash = {
 +	.next	= NULL,
 +	.name	= "sparse_mem_maps_populate_node",
 +	.file	= "include/linux/mm.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000403_hash = {
 +	.next	= NULL,
 +	.name	= "vmemmap_alloc_block",
 +	.file	= "include/linux/mm.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000404_hash = {
 +	.next	= NULL,
 +	.name	= "sparse_early_mem_maps_alloc_node",
 +	.file	= "mm/sparse.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000405_hash = {
 +	.next	= NULL,
 +	.name	= "vmemmap_alloc_block_buf",
 +	.file	= "include/linux/mm.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000406_hash = {
 +	.next	= NULL,
 +	.name	= "acpi_battery_write_alarm",
 +	.file	= "drivers/acpi/battery.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000407_hash = {
 +	.next	= NULL,
 +	.name	= "acpi_battery_write_alarm",
 +	.file	= "drivers/acpi/sbs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000408_hash = {
 +	.next	= NULL,
 +	.name	= "ad7879_spi_xfer",
 +	.file	= "drivers/input/touchscreen/ad7879-spi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000409_hash = {
 +	.next	= NULL,
 +	.name	= "add_port",
 +	.file	= "drivers/char/virtio_console.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000410_hash = {
 +	.next	= NULL,
 +	.name	= "addtgt",
 +	.file	= "drivers/block/aoe/aoecmd.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000411_hash = {
 +	.next	= NULL,
 +	.name	= "adu_read",
 +	.file	= "drivers/usb/misc/adutux.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000412_hash = {
 +	.next	= NULL,
 +	.name	= "adu_write",
 +	.file	= "drivers/usb/misc/adutux.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000413_hash = {
 +	.next	= NULL,
 +	.name	= "aer_inject_write",
 +	.file	= "drivers/pci/pcie/aer/aer_inject.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000414_hash = {
 +	.next	= NULL,
 +	.name	= "aes_decrypt_fail_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000415_hash = {
 +	.next	= NULL,
 +	.name	= "aes_decrypt_interrupt_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000416_hash = {
 +	.next	= NULL,
 +	.name	= "aes_decrypt_packets_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000417_hash = {
 +	.next	= NULL,
 +	.name	= "aes_encrypt_fail_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000418_hash = {
 +	.next	= NULL,
 +	.name	= "aes_encrypt_interrupt_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000419_hash = {
 +	.next	= NULL,
 +	.name	= "aes_encrypt_packets_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000420_hash = {
 +	.next	= NULL,
 +	.name	= "afs_alloc_flat_call",
@@ -84144,112 +82736,96 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000422_hash = {
 +	.next	= NULL,
 +	.name	= "afs_cell_alloc",
 +	.file	= "fs/afs/cell.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000423_hash = {
 +	.next	= NULL,
 +	.name	= "afs_proc_cells_write",
 +	.file	= "fs/afs/proc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000424_hash = {
 +	.next	= NULL,
 +	.name	= "afs_proc_rootcell_write",
 +	.file	= "fs/afs/proc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000425_hash = {
 +	.next	= NULL,
 +	.name	= "aggr_recv_addba_req_evt",
 +	.file	= "drivers/net/wireless/ath/ath6kl/txrx.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000426_hash = {
 +	.next	= NULL,
 +	.name	= "agp_3_5_isochronous_node_enable",
 +	.file	= "drivers/char/agp/isoch.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000427_hash = {
 +	.next	= NULL,
 +	.name	= "agp_alloc_page_array",
 +	.file	= "drivers/char/agp/generic.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000428_hash = {
 +	.next	= NULL,
 +	.name	= "alg_setkey",
 +	.file	= "crypto/af_alg.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000429_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_buf",
 +	.file	= "drivers/char/virtio_console.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000430_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_context",
 +	.file	= "drivers/md/dm-raid1.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000431_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_context",
 +	.file	= "drivers/md/dm-stripe.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000432_hash = {
 +	.next	= NULL,
 +	.name	= "__alloc_dev_table",
 +	.file	= "fs/exofs/super.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000433_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_ep_req",
 +	.file	= "drivers/usb/gadget/f_midi.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000434_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_flex_gd",
 +	.file	= "fs/ext4/resize.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000435_hash = {
 +	.next	= NULL,
 +	.name	= "__alloc_objio_seg",
 +	.file	= "fs/nfs/objlayout/objio_osd.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000436_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_one_pg_vec_page",
 +	.file	= "net/packet/af_packet.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000437_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_ring",
@@ -84257,7 +82833,6 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000438_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_ring",
@@ -84265,420 +82840,360 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000441_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_ts_config",
 +	.file	= "include/linux/textsearch.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000442_hash = {
 +	.next	= NULL,
 +	.name	= "altera_drscan",
 +	.file	= "drivers/misc/altera-stapl/altera-jtag.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000443_hash = {
 +	.next	= NULL,
 +	.name	= "altera_irscan",
 +	.file	= "drivers/misc/altera-stapl/altera-jtag.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000444_hash = {
 +	.next	= &_000066_hash,
 +	.name	= "altera_set_dr_post",
 +	.file	= "drivers/misc/altera-stapl/altera-jtag.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000445_hash = {
 +	.next	= NULL,
 +	.name	= "altera_set_dr_pre",
 +	.file	= "drivers/misc/altera-stapl/altera-jtag.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000446_hash = {
 +	.next	= NULL,
 +	.name	= "altera_set_ir_post",
 +	.file	= "drivers/misc/altera-stapl/altera-jtag.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000447_hash = {
 +	.next	= NULL,
 +	.name	= "altera_set_ir_pre",
 +	.file	= "drivers/misc/altera-stapl/altera-jtag.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000448_hash = {
 +	.next	= NULL,
 +	.name	= "altera_swap_dr",
 +	.file	= "drivers/misc/altera-stapl/altera-jtag.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000449_hash = {
 +	.next	= NULL,
 +	.name	= "altera_swap_ir",
 +	.file	= "drivers/misc/altera-stapl/altera-jtag.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000450_hash = {
 +	.next	= NULL,
 +	.name	= "aoedev_flush",
 +	.file	= "drivers/block/aoe/aoedev.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000451_hash = {
 +	.next	= NULL,
 +	.name	= "asd_store_update_bios",
 +	.file	= "drivers/scsi/aic94xx/aic94xx_init.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000452_hash = {
 +	.next	= NULL,
 +	.name	= "asix_read_cmd",
 +	.file	= "drivers/net/usb/asix.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000453_hash = {
 +	.next	= NULL,
 +	.name	= "asix_write_cmd",
 +	.file	= "drivers/net/usb/asix.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000454_hash = {
 +	.next	= NULL,
 +	.name	= "asn1_octets_decode",
 +	.file	= "net/ipv4/netfilter/nf_nat_snmp_basic.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000455_hash = {
 +	.next	= NULL,
 +	.name	= "asn1_oid_decode",
 +	.file	= "net/ipv4/netfilter/nf_nat_snmp_basic.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000456_hash = {
 +	.next	= NULL,
 +	.name	= "asn1_oid_decode",
 +	.file	= "fs/cifs/asn1.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000457_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_add_bss_if_needed",
 +	.file	= "drivers/net/wireless/ath/ath6kl/cfg80211.c",
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _000458_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_debug_roam_tbl_event",
 +	.file	= "drivers/net/wireless/ath/ath6kl/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000459_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_disconnect_timeout_read",
 +	.file	= "drivers/net/wireless/ath/ath6kl/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000460_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_endpoint_stats_read",
 +	.file	= "drivers/net/wireless/ath/ath6kl/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000461_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_fwlog_mask_read",
 +	.file	= "drivers/net/wireless/ath/ath6kl/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000462_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_fwlog_read",
 +	.file	= "drivers/net/wireless/ath/ath6kl/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000463_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_keepalive_read",
 +	.file	= "drivers/net/wireless/ath/ath6kl/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000464_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_lrssi_roam_read",
 +	.file	= "drivers/net/wireless/ath/ath6kl/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000465_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_regdump_read",
 +	.file	= "drivers/net/wireless/ath/ath6kl/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000466_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_regread_read",
 +	.file	= "drivers/net/wireless/ath/ath6kl/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000467_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_regwrite_read",
 +	.file	= "drivers/net/wireless/ath/ath6kl/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000468_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_roam_table_read",
 +	.file	= "drivers/net/wireless/ath/ath6kl/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000469_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_send_go_probe_resp",
 +	.file	= "drivers/net/wireless/ath/ath6kl/cfg80211.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000470_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_set_ap_probe_resp_ies",
 +	.file	= "drivers/net/wireless/ath/ath6kl/cfg80211.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000471_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_set_assoc_req_ies",
 +	.file	= "drivers/net/wireless/ath/ath6kl/cfg80211.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000472_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_tm_rx_report_event",
 +	.file	= "drivers/net/wireless/ath/ath6kl/testmode.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000473_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_wmi_send_action_cmd",
 +	.file	= "drivers/net/wireless/ath/ath6kl/wmi.c",
 +	.param7	= 1,
 +};
-+
 +struct size_overflow_hash _000474_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_wmi_send_mgmt_cmd",
 +	.file	= "drivers/net/wireless/ath/ath6kl/wmi.c",
 +	.param7	= 1,
 +};
-+
 +struct size_overflow_hash _000475_hash = {
 +	.next	= NULL,
 +	.name	= "ath9k_debugfs_read_buf",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000476_hash = {
 +	.next	= NULL,
 +	.name	= "atk_debugfs_ggrp_read",
 +	.file	= "drivers/hwmon/asus_atk0110.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000477_hash = {
 +	.next	= NULL,
 +	.name	= "atm_get_addr",
 +	.file	= "net/atm/addr.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000478_hash = {
 +	.next	= NULL,
 +	.name	= "attach_hdlc_protocol",
 +	.file	= "include/linux/hdlc.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000479_hash = {
 +	.next	= NULL,
 +	.name	= "av7110_vbi_write",
 +	.file	= "drivers/media/dvb/ttpci/av7110_v4l.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000480_hash = {
 +	.next	= NULL,
 +	.name	= "ax25_setsockopt",
 +	.file	= "net/ax25/af_ax25.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000481_hash = {
 +	.next	= NULL,
 +	.name	= "b43_debugfs_read",
 +	.file	= "drivers/net/wireless/b43/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000482_hash = {
 +	.next	= NULL,
 +	.name	= "b43_debugfs_write",
 +	.file	= "drivers/net/wireless/b43/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000483_hash = {
 +	.next	= NULL,
 +	.name	= "b43legacy_debugfs_read",
 +	.file	= "drivers/net/wireless/b43legacy/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000484_hash = {
 +	.next	= NULL,
 +	.name	= "b43legacy_debugfs_write",
 +	.file	= "drivers/net/wireless/b43legacy/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000485_hash = {
 +	.next	= NULL,
 +	.name	= "b43_nphy_load_samples",
 +	.file	= "drivers/net/wireless/b43/phy_n.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000486_hash = {
 +	.next	= NULL,
 +	.name	= "bch_alloc",
 +	.file	= "lib/bch.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000487_hash = {
 +	.next	= NULL,
 +	.name	= "bfad_debugfs_read",
 +	.file	= "drivers/scsi/bfa/bfad_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000488_hash = {
 +	.next	= NULL,
 +	.name	= "bfad_debugfs_read_regrd",
 +	.file	= "drivers/scsi/bfa/bfad_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000489_hash = {
 +	.next	= NULL,
 +	.name	= "bfad_debugfs_write_regrd",
 +	.file	= "drivers/scsi/bfa/bfad_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000490_hash = {
 +	.next	= NULL,
 +	.name	= "bfad_debugfs_write_regwr",
 +	.file	= "drivers/scsi/bfa/bfad_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000491_hash = {
 +	.next	= NULL,
 +	.name	= "bits_to_user",
 +	.file	= "drivers/input/evdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000492_hash = {
 +	.next	= NULL,
 +	.name	= "bl_pipe_downcall",
 +	.file	= "fs/nfs/blocklayout/blocklayoutdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000493_hash = {
 +	.next	= NULL,
 +	.name	= "bm_entry_read",
 +	.file	= "fs/binfmt_misc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000494_hash = {
 +	.next	= NULL,
 +	.name	= "bm_realloc_pages",
 +	.file	= "drivers/block/drbd/drbd_bitmap.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000495_hash = {
 +	.next	= NULL,
 +	.name	= "bm_status_read",
 +	.file	= "fs/binfmt_misc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000496_hash = {
 +	.next	= NULL,
 +	.name	= "bnad_debugfs_read",
 +	.file	= "drivers/net/ethernet/brocade/bna/bnad_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000497_hash = {
 +	.next	= NULL,
 +	.name	= "bnad_debugfs_read_regrd",
 +	.file	= "drivers/net/ethernet/brocade/bna/bnad_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000498_hash = {
 +	.next	= NULL,
 +	.name	= "bnad_debugfs_write_regrd",
 +	.file	= "drivers/net/ethernet/brocade/bna/bnad_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000499_hash = {
 +	.next	= NULL,
 +	.name	= "bnad_debugfs_write_regwr",
 +	.file	= "drivers/net/ethernet/brocade/bna/bnad_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000500_hash = {
 +	.next	= NULL,
 +	.name	= "bnx2fc_cmd_mgr_alloc",
@@ -84686,252 +83201,216 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000502_hash = {
 +	.next	= NULL,
 +	.name	= "btmrvl_curpsmode_read",
 +	.file	= "drivers/bluetooth/btmrvl_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000503_hash = {
 +	.next	= NULL,
 +	.name	= "btmrvl_gpiogap_read",
 +	.file	= "drivers/bluetooth/btmrvl_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000504_hash = {
 +	.next	= NULL,
 +	.name	= "btmrvl_gpiogap_write",
 +	.file	= "drivers/bluetooth/btmrvl_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000505_hash = {
 +	.next	= NULL,
 +	.name	= "btmrvl_hscfgcmd_read",
 +	.file	= "drivers/bluetooth/btmrvl_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000506_hash = {
 +	.next	= NULL,
 +	.name	= "btmrvl_hscfgcmd_write",
 +	.file	= "drivers/bluetooth/btmrvl_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000507_hash = {
 +	.next	= &_000006_hash,
 +	.name	= "btmrvl_hscmd_read",
 +	.file	= "drivers/bluetooth/btmrvl_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000508_hash = {
 +	.next	= NULL,
 +	.name	= "btmrvl_hscmd_write",
 +	.file	= "drivers/bluetooth/btmrvl_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000509_hash = {
 +	.next	= NULL,
 +	.name	= "btmrvl_hsmode_read",
 +	.file	= "drivers/bluetooth/btmrvl_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000510_hash = {
 +	.next	= NULL,
 +	.name	= "btmrvl_hsmode_write",
 +	.file	= "drivers/bluetooth/btmrvl_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000511_hash = {
 +	.next	= NULL,
 +	.name	= "btmrvl_hsstate_read",
 +	.file	= "drivers/bluetooth/btmrvl_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000512_hash = {
 +	.next	= NULL,
 +	.name	= "btmrvl_pscmd_read",
 +	.file	= "drivers/bluetooth/btmrvl_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000513_hash = {
 +	.next	= NULL,
 +	.name	= "btmrvl_pscmd_write",
 +	.file	= "drivers/bluetooth/btmrvl_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000514_hash = {
 +	.next	= NULL,
 +	.name	= "btmrvl_psmode_read",
 +	.file	= "drivers/bluetooth/btmrvl_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000515_hash = {
 +	.next	= NULL,
 +	.name	= "btmrvl_psmode_write",
 +	.file	= "drivers/bluetooth/btmrvl_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000516_hash = {
 +	.next	= NULL,
 +	.name	= "btmrvl_psstate_read",
 +	.file	= "drivers/bluetooth/btmrvl_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000517_hash = {
 +	.next	= NULL,
 +	.name	= "btmrvl_txdnldready_read",
 +	.file	= "drivers/bluetooth/btmrvl_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000518_hash = {
 +	.next	= NULL,
 +	.name	= "btrfs_alloc_delayed_item",
 +	.file	= "fs/btrfs/delayed-inode.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000519_hash = {
 +	.next	= NULL,
 +	.name	= "btrfs_copy_from_user",
 +	.file	= "fs/btrfs/file.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000520_hash = {
 +	.next	= NULL,
 +	.name	= "__btrfs_map_block",
 +	.file	= "fs/btrfs/volumes.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000521_hash = {
 +	.next	= NULL,
 +	.name	= "__c4iw_init_resource_fifo",
 +	.file	= "drivers/infiniband/hw/cxgb4/resource.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000522_hash = {
 +	.next	= NULL,
 +	.name	= "cache_do_downcall",
 +	.file	= "net/sunrpc/cache.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000523_hash = {
 +	.next	= NULL,
 +	.name	= "cachefiles_daemon_write",
 +	.file	= "fs/cachefiles/daemon.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000524_hash = {
 +	.next	= NULL,
 +	.name	= "cache_read",
 +	.file	= "net/sunrpc/cache.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000525_hash = {
 +	.next	= NULL,
 +	.name	= "ca_extend",
 +	.file	= "drivers/md/persistent-data/dm-space-map-checker.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000526_hash = {
 +	.next	= NULL,
 +	.name	= "calc_hmac",
 +	.file	= "security/keys/encrypted-keys/encrypted.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000527_hash = {
 +	.next	= NULL,
 +	.name	= "capi_write",
 +	.file	= "drivers/isdn/capi/capi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000528_hash = {
 +	.next	= NULL,
 +	.name	= "carl9170_cmd_buf",
 +	.file	= "drivers/net/wireless/ath/carl9170/cmd.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000529_hash = {
 +	.next	= NULL,
 +	.name	= "carl9170_debugfs_read",
 +	.file	= "drivers/net/wireless/ath/carl9170/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000530_hash = {
 +	.next	= NULL,
 +	.name	= "carl9170_debugfs_write",
 +	.file	= "drivers/net/wireless/ath/carl9170/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000531_hash = {
 +	.next	= NULL,
 +	.name	= "cciss_proc_write",
 +	.file	= "drivers/block/cciss.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000532_hash = {
 +	.next	= NULL,
 +	.name	= "ceph_buffer_new",
 +	.file	= "include/linux/ceph/buffer.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000533_hash = {
 +	.next	= NULL,
 +	.name	= "ceph_copy_page_vector_to_user",
 +	.file	= "include/linux/ceph/libceph.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000534_hash = {
 +	.next	= NULL,
 +	.name	= "ceph_copy_user_to_page_vector",
 +	.file	= "include/linux/ceph/libceph.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000535_hash = {
 +	.next	= NULL,
 +	.name	= "ceph_read_dir",
 +	.file	= "fs/ceph/dir.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000536_hash = {
 +	.next	= NULL,
 +	.name	= "ceph_setxattr",
 +	.file	= "fs/ceph/xattr.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000537_hash = {
 +	.next	= NULL,
 +	.name	= "cfg80211_connect_result",
@@ -84939,28 +83418,24 @@ index 0000000..ce7366b
 +	.param4	= 1,
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _000539_hash = {
 +	.next	= NULL,
 +	.name	= "cfg80211_disconnected",
 +	.file	= "include/net/cfg80211.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000540_hash = {
 +	.next	= NULL,
 +	.name	= "cfg80211_inform_bss",
 +	.file	= "include/net/cfg80211.h",
 +	.param8	= 1,
 +};
-+
 +struct size_overflow_hash _000541_hash = {
 +	.next	= NULL,
 +	.name	= "cfg80211_inform_bss_frame",
 +	.file	= "include/net/cfg80211.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000542_hash = {
 +	.next	= NULL,
 +	.name	= "cfg80211_roamed_bss",
@@ -84968,245 +83443,210 @@ index 0000000..ce7366b
 +	.param4	= 1,
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _000544_hash = {
 +	.next	= NULL,
 +	.name	= "cfi_read_pri",
 +	.file	= "include/linux/mtd/cfi.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000545_hash = {
 +	.next	= NULL,
 +	.name	= "channel_type_read",
 +	.file	= "net/mac80211/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000546_hash = {
 +	.next	= NULL,
 +	.name	= "cifs_idmap_key_instantiate",
 +	.file	= "fs/cifs/cifsacl.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000547_hash = {
 +	.next	= NULL,
 +	.name	= "cifs_readdata_alloc",
 +	.file	= "fs/cifs/cifssmb.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000548_hash = {
 +	.next	= NULL,
 +	.name	= "cifs_security_flags_proc_write",
 +	.file	= "fs/cifs/cifs_debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000549_hash = {
 +	.next	= NULL,
 +	.name	= "cifs_setxattr",
 +	.file	= "fs/cifs/xattr.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000550_hash = {
 +	.next	= NULL,
 +	.name	= "cifs_spnego_key_instantiate",
 +	.file	= "fs/cifs/cifs_spnego.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000551_hash = {
 +	.next	= NULL,
 +	.name	= "cifs_writedata_alloc",
 +	.file	= "fs/cifs/cifssmb.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000552_hash = {
 +	.next	= NULL,
 +	.name	= "ci_ll_write",
 +	.file	= "drivers/media/dvb/ttpci/av7110_ca.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000553_hash = {
 +	.next	= NULL,
 +	.name	= "clusterip_proc_write",
 +	.file	= "net/ipv4/netfilter/ipt_CLUSTERIP.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000554_hash = {
 +	.next	= &_000108_hash,
 +	.name	= "cm4040_write",
 +	.file	= "drivers/char/pcmcia/cm4040_cs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000555_hash = {
 +	.next	= NULL,
 +	.name	= "cm_copy_private_data",
 +	.file	= "drivers/infiniband/core/cm.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000556_hash = {
 +	.next	= NULL,
 +	.name	= "cmm_write",
 +	.file	= "drivers/char/pcmcia/cm4000_cs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000557_hash = {
 +	.next	= NULL,
 +	.name	= "cm_write",
 +	.file	= "drivers/acpi/custom_method.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000558_hash = {
 +	.next	= NULL,
 +	.name	= "coda_psdev_read",
 +	.file	= "fs/coda/psdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000559_hash = {
 +	.next	= NULL,
 +	.name	= "coda_psdev_write",
 +	.file	= "fs/coda/psdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000560_hash = {
 +	.next	= NULL,
 +	.name	= "codec_list_read_file",
 +	.file	= "sound/soc/soc-core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000561_hash = {
 +	.next	= NULL,
 +	.name	= "codec_reg_read_file",
 +	.file	= "sound/soc/soc-core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000562_hash = {
 +	.next	= NULL,
 +	.name	= "command_file_write",
 +	.file	= "drivers/misc/ibmasm/ibmasmfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000563_hash = {
 +	.next	= NULL,
 +	.name	= "command_write",
 +	.file	= "drivers/uwb/uwb-debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000564_hash = {
 +	.next	= NULL,
 +	.name	= "concat_writev",
 +	.file	= "drivers/mtd/mtdconcat.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000565_hash = {
 +	.next	= NULL,
 +	.name	= "configfs_read_file",
 +	.file	= "fs/configfs/file.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000566_hash = {
 +	.next	= NULL,
 +	.name	= "context_alloc",
 +	.file	= "drivers/md/dm-raid.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000567_hash = {
 +	.next	= NULL,
 +	.name	= "copy_counters_to_user",
 +	.file	= "net/bridge/netfilter/ebtables.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000568_hash = {
 +	.next	= NULL,
 +	.name	= "copy_entries_to_user",
 +	.file	= "net/ipv6/netfilter/ip6_tables.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000569_hash = {
 +	.next	= NULL,
 +	.name	= "copy_entries_to_user",
 +	.file	= "net/ipv4/netfilter/arp_tables.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000570_hash = {
 +	.next	= NULL,
 +	.name	= "copy_entries_to_user",
 +	.file	= "net/ipv4/netfilter/ip_tables.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000571_hash = {
 +	.next	= NULL,
 +	.name	= "copy_from_user_toio",
 +	.file	= "include/sound/core.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000572_hash = {
 +	.next	= NULL,
 +	.name	= "copy_macs",
 +	.file	= "net/atm/mpc.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000573_hash = {
 +	.next	= NULL,
 +	.name	= "copy_to_user_fromio",
 +	.file	= "include/sound/core.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000574_hash = {
 +	.next	= NULL,
 +	.name	= "cosa_write",
 +	.file	= "drivers/net/wan/cosa.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000575_hash = {
 +	.next	= NULL,
 +	.name	= "create_attr_set",
 +	.file	= "drivers/platform/x86/thinkpad_acpi.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000576_hash = {
 +	.next	= NULL,
 +	.name	= "create_entry",
 +	.file	= "fs/binfmt_misc.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000577_hash = {
 +	.next	= NULL,
 +	.name	= "create_gpadl_header",
 +	.file	= "drivers/hv/channel.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000578_hash = {
 +	.next	= NULL,
 +	.name	= "create_queues",
@@ -85214,14 +83654,12 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000580_hash = {
 +	.next	= NULL,
 +	.name	= "_create_sg_bios",
 +	.file	= "drivers/scsi/osd/osd_initiator.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000581_hash = {
 +	.next	= NULL,
 +	.name	= "cryptd_alloc_instance",
@@ -85229,28 +83667,24 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000583_hash = {
 +	.next	= NULL,
 +	.name	= "cryptd_hash_setkey",
 +	.file	= "crypto/cryptd.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000584_hash = {
 +	.next	= NULL,
 +	.name	= "crypto_authenc_esn_setkey",
 +	.file	= "crypto/authencesn.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000585_hash = {
 +	.next	= NULL,
 +	.name	= "crypto_authenc_setkey",
 +	.file	= "crypto/authenc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000586_hash = {
 +	.next	= NULL,
 +	.name	= "ctrl_out",
@@ -85258,35 +83692,30 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000588_hash = {
 +	.next	= NULL,
 +	.name	= "cx18_copy_buf_to_user",
 +	.file	= "drivers/media/video/cx18/cx18-fileops.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000589_hash = {
 +	.next	= NULL,
 +	.name	= "cx24116_writeregN",
 +	.file	= "drivers/media/dvb/frontends/cx24116.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000590_hash = {
 +	.next	= NULL,
 +	.name	= "cxgb_alloc_mem",
 +	.file	= "drivers/net/ethernet/chelsio/cxgb3/cxgb3_offload.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000591_hash = {
 +	.next	= NULL,
 +	.name	= "cxgbi_alloc_big_mem",
 +	.file	= "drivers/scsi/cxgbi/libcxgbi.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000592_hash = {
 +	.next	= NULL,
 +	.name	= "cxgbi_device_register",
@@ -85294,210 +83723,180 @@ index 0000000..ce7366b
 +	.param1	= 1,
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000594_hash = {
 +	.next	= NULL,
 +	.name	= "__cxio_init_resource_fifo",
 +	.file	= "drivers/infiniband/hw/cxgb3/cxio_resource.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000595_hash = {
 +	.next	= NULL,
 +	.name	= "dac960_user_command_proc_write",
 +	.file	= "drivers/block/DAC960.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000596_hash = {
 +	.next	= NULL,
 +	.name	= "dai_list_read_file",
 +	.file	= "sound/soc/soc-core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000597_hash = {
 +	.next	= NULL,
 +	.name	= "dapm_bias_read_file",
 +	.file	= "sound/soc/soc-dapm.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000598_hash = {
 +	.next	= NULL,
 +	.name	= "dapm_widget_power_read_file",
 +	.file	= "sound/soc/soc-dapm.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000599_hash = {
 +	.next	= NULL,
 +	.name	= "datablob_format",
 +	.file	= "security/keys/encrypted-keys/encrypted.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000600_hash = {
 +	.next	= NULL,
 +	.name	= "dbgfs_frame",
 +	.file	= "drivers/net/caif/caif_spi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000601_hash = {
 +	.next	= NULL,
 +	.name	= "dbgfs_state",
 +	.file	= "drivers/net/caif/caif_spi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000602_hash = {
 +	.next	= NULL,
 +	.name	= "dccp_feat_clone_sp_val",
 +	.file	= "net/dccp/feat.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000603_hash = {
 +	.next	= NULL,
 +	.name	= "dccp_setsockopt_ccid",
 +	.file	= "net/dccp/proto.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000604_hash = {
 +	.next	= NULL,
 +	.name	= "dccp_setsockopt_service",
 +	.file	= "net/dccp/proto.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000605_hash = {
 +	.next	= NULL,
 +	.name	= "ddb_input_read",
 +	.file	= "drivers/media/dvb/ddbridge/ddbridge-core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000606_hash = {
 +	.next	= NULL,
 +	.name	= "ddb_output_write",
 +	.file	= "drivers/media/dvb/ddbridge/ddbridge-core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000607_hash = {
 +	.next	= NULL,
 +	.name	= "ddp_make_gl",
 +	.file	= "drivers/scsi/cxgbi/libcxgbi.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000608_hash = {
 +	.next	= NULL,
 +	.name	= "debugfs_read",
 +	.file	= "drivers/infiniband/hw/cxgb4/device.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000609_hash = {
 +	.next	= NULL,
 +	.name	= "debugfs_read",
 +	.file	= "drivers/char/virtio_console.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000610_hash = {
 +	.next	= NULL,
 +	.name	= "debug_output",
 +	.file	= "drivers/usb/host/ohci-dbg.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000611_hash = {
 +	.next	= NULL,
 +	.name	= "debug_output",
 +	.file	= "drivers/usb/host/ehci-dbg.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000612_hash = {
 +	.next	= NULL,
 +	.name	= "debug_read",
 +	.file	= "fs/ocfs2/dlm/dlmdebug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000613_hash = {
 +	.next	= NULL,
 +	.name	= "dev_config",
 +	.file	= "drivers/usb/gadget/inode.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000614_hash = {
 +	.next	= NULL,
 +	.name	= "device_write",
 +	.file	= "fs/dlm/user.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000615_hash = {
 +	.next	= NULL,
 +	.name	= "dev_read",
 +	.file	= "drivers/media/video/gspca/gspca.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000616_hash = {
 +	.next	= NULL,
 +	.name	= "dfs_file_read",
 +	.file	= "drivers/mtd/ubi/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000617_hash = {
 +	.next	= NULL,
 +	.name	= "dfs_file_write",
 +	.file	= "drivers/mtd/ubi/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000618_hash = {
 +	.next	= NULL,
 +	.name	= "direct_entry",
 +	.file	= "drivers/misc/lkdtm.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000619_hash = {
 +	.next	= NULL,
 +	.name	= "dispatch_proc_write",
 +	.file	= "drivers/platform/x86/thinkpad_acpi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000620_hash = {
 +	.next	= NULL,
 +	.name	= "diva_os_malloc",
 +	.file	= "drivers/isdn/hardware/eicon/platform.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000621_hash = {
 +	.next	= NULL,
 +	.name	= "dlmfs_file_read",
 +	.file	= "fs/ocfs2/dlmfs/dlmfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000622_hash = {
 +	.next	= NULL,
 +	.name	= "dlmfs_file_write",
 +	.file	= "fs/ocfs2/dlmfs/dlmfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000623_hash = {
 +	.next	= NULL,
 +	.name	= "dma_attach",
@@ -85505,49 +83904,42 @@ index 0000000..ce7366b
 +	.param6	= 1,
 +	.param7	= 1,
 +};
-+
 +struct size_overflow_hash _000625_hash = {
 +	.next	= NULL,
 +	.name	= "dma_rx_errors_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000626_hash = {
 +	.next	= NULL,
 +	.name	= "dma_rx_requested_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000627_hash = {
 +	.next	= NULL,
 +	.name	= "dma_show_regs",
 +	.file	= "drivers/tty/serial/mfd.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000628_hash = {
 +	.next	= NULL,
 +	.name	= "dma_tx_errors_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000629_hash = {
 +	.next	= NULL,
 +	.name	= "dma_tx_requested_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000630_hash = {
 +	.next	= NULL,
 +	.name	= "dm_read",
 +	.file	= "drivers/net/usb/dm9601.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000631_hash = {
 +	.next	= NULL,
 +	.name	= "dm_vcalloc",
@@ -85555,714 +83947,612 @@ index 0000000..ce7366b
 +	.param1	= 1,
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000633_hash = {
 +	.next	= NULL,
 +	.name	= "dm_write",
 +	.file	= "drivers/net/usb/dm9601.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000634_hash = {
 +	.next	= NULL,
 +	.name	= "__dn_setsockopt",
 +	.file	= "net/decnet/af_decnet.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000635_hash = {
 +	.next	= NULL,
 +	.name	= "dns_query",
 +	.file	= "include/linux/dns_resolver.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000636_hash = {
 +	.next	= NULL,
 +	.name	= "dns_resolver_instantiate",
 +	.file	= "net/dns_resolver/dns_key.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000637_hash = {
 +	.next	= NULL,
 +	.name	= "dns_resolver_read",
 +	.file	= "net/dns_resolver/dns_key.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000638_hash = {
 +	.next	= NULL,
 +	.name	= "do_add_counters",
 +	.file	= "net/ipv6/netfilter/ip6_tables.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000639_hash = {
 +	.next	= NULL,
 +	.name	= "do_add_counters",
 +	.file	= "net/ipv4/netfilter/ip_tables.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000640_hash = {
 +	.next	= NULL,
 +	.name	= "do_add_counters",
 +	.file	= "net/ipv4/netfilter/arp_tables.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000641_hash = {
 +	.next	= NULL,
 +	.name	= "__do_config_autodelink",
 +	.file	= "drivers/usb/storage/realtek_cr.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000642_hash = {
 +	.next	= NULL,
 +	.name	= "do_ipv6_setsockopt",
 +	.file	= "net/ipv6/ipv6_sockglue.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000643_hash = {
 +	.next	= NULL,
 +	.name	= "do_ip_vs_set_ctl",
 +	.file	= "net/netfilter/ipvs/ip_vs_ctl.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000644_hash = {
 +	.next	= NULL,
 +	.name	= "do_register_entry",
 +	.file	= "drivers/misc/lkdtm.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000645_hash = {
 +	.next	= NULL,
 +	.name	= "__do_replace",
 +	.file	= "net/ipv6/netfilter/ip6_tables.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000646_hash = {
 +	.next	= NULL,
 +	.name	= "__do_replace",
 +	.file	= "net/ipv4/netfilter/ip_tables.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000647_hash = {
 +	.next	= NULL,
 +	.name	= "__do_replace",
 +	.file	= "net/ipv4/netfilter/arp_tables.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000648_hash = {
 +	.next	= NULL,
 +	.name	= "do_sync",
 +	.file	= "fs/gfs2/quota.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000649_hash = {
 +	.next	= NULL,
 +	.name	= "do_update_counters",
 +	.file	= "net/bridge/netfilter/ebtables.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000650_hash = {
 +	.next	= NULL,
 +	.name	= "driver_state_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000651_hash = {
 +	.next	= NULL,
 +	.name	= "dsp_write",
 +	.file	= "sound/oss/msnd_pinnacle.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000652_hash = {
 +	.next	= NULL,
 +	.name	= "dvb_aplay",
 +	.file	= "drivers/media/dvb/ttpci/av7110_av.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000653_hash = {
 +	.next	= NULL,
 +	.name	= "dvb_ca_en50221_io_write",
 +	.file	= "drivers/media/dvb/dvb-core/dvb_ca_en50221.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000654_hash = {
 +	.next	= NULL,
 +	.name	= "dvb_dmxdev_set_buffer_size",
 +	.file	= "drivers/media/dvb/dvb-core/dmxdev.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000655_hash = {
 +	.next	= NULL,
 +	.name	= "dvbdmx_write",
 +	.file	= "drivers/media/dvb/dvb-core/dvb_demux.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000656_hash = {
 +	.next	= NULL,
 +	.name	= "dvb_dvr_set_buffer_size",
 +	.file	= "drivers/media/dvb/dvb-core/dmxdev.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000657_hash = {
 +	.next	= NULL,
 +	.name	= "dvb_play",
 +	.file	= "drivers/media/dvb/ttpci/av7110_av.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000658_hash = {
 +	.next	= NULL,
 +	.name	= "dvb_ringbuffer_pkt_read_user",
 +	.file	= "drivers/media/dvb/dvb-core/dvb_ringbuffer.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000659_hash = {
 +	.next	= NULL,
 +	.name	= "dvb_ringbuffer_read_user",
 +	.file	= "drivers/media/dvb/dvb-core/dvb_ringbuffer.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000660_hash = {
 +	.next	= NULL,
 +	.name	= "dw210x_op_rw",
 +	.file	= "drivers/media/dvb/dvb-usb/dw2102.c",
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _000661_hash = {
 +	.next	= NULL,
 +	.name	= "dwc3_mode_write",
 +	.file	= "drivers/usb/dwc3/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000662_hash = {
 +	.next	= NULL,
 +	.name	= "econet_sendmsg",
 +	.file	= "net/econet/af_econet.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000663_hash = {
 +	.next	= NULL,
 +	.name	= "ecryptfs_copy_filename",
 +	.file	= "fs/ecryptfs/crypto.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000664_hash = {
 +	.next	= NULL,
 +	.name	= "ecryptfs_miscdev_write",
 +	.file	= "fs/ecryptfs/miscdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000665_hash = {
 +	.next	= NULL,
 +	.name	= "ecryptfs_send_miscdev",
 +	.file	= "fs/ecryptfs/miscdev.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000666_hash = {
 +	.next	= NULL,
 +	.name	= "edac_device_alloc_ctl_info",
 +	.file	= "drivers/edac/edac_device.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000667_hash = {
 +	.next	= NULL,
 +	.name	= "edac_mc_alloc",
 +	.file	= "drivers/edac/edac_mc.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000668_hash = {
 +	.next	= NULL,
 +	.name	= "edac_pci_alloc_ctl_info",
 +	.file	= "drivers/edac/edac_pci.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000669_hash = {
 +	.next	= NULL,
 +	.name	= "efivar_create_sysfs_entry",
 +	.file	= "drivers/firmware/efivars.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000670_hash = {
 +	.next	= NULL,
 +	.name	= "efx_tsoh_heap_alloc",
 +	.file	= "drivers/net/ethernet/sfc/tx.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000671_hash = {
 +	.next	= NULL,
 +	.name	= "encrypted_instantiate",
 +	.file	= "security/keys/encrypted-keys/encrypted.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000672_hash = {
 +	.next	= NULL,
 +	.name	= "encrypted_update",
 +	.file	= "security/keys/encrypted-keys/encrypted.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000673_hash = {
 +	.next	= NULL,
 +	.name	= "ep0_write",
 +	.file	= "drivers/usb/gadget/inode.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000674_hash = {
 +	.next	= NULL,
 +	.name	= "ep_read",
 +	.file	= "drivers/usb/gadget/inode.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000675_hash = {
 +	.next	= NULL,
 +	.name	= "ep_write",
 +	.file	= "drivers/usb/gadget/inode.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000676_hash = {
 +	.next	= NULL,
 +	.name	= "erst_dbg_write",
 +	.file	= "drivers/acpi/apei/erst-dbg.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000677_hash = {
 +	.next	= NULL,
 +	.name	= "et61x251_read",
 +	.file	= "drivers/media/video/et61x251/et61x251_core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000678_hash = {
 +	.next	= NULL,
 +	.name	= "event_calibration_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000679_hash = {
 +	.next	= NULL,
 +	.name	= "event_heart_beat_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000680_hash = {
 +	.next	= NULL,
 +	.name	= "event_oom_late_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000681_hash = {
 +	.next	= NULL,
 +	.name	= "event_phy_transmit_error_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000682_hash = {
 +	.next	= NULL,
 +	.name	= "event_rx_mem_empty_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000683_hash = {
 +	.next	= NULL,
 +	.name	= "event_rx_mismatch_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000684_hash = {
 +	.next	= NULL,
 +	.name	= "event_rx_pool_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000685_hash = {
 +	.next	= NULL,
 +	.name	= "event_tx_stuck_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000686_hash = {
 +	.next	= NULL,
 +	.name	= "excessive_retries_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000687_hash = {
 +	.next	= NULL,
 +	.name	= "exofs_read_lookup_dev_table",
 +	.file	= "fs/exofs/super.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000688_hash = {
 +	.next	= NULL,
 +	.name	= "ext4_kvmalloc",
 +	.file	= "fs/ext4/super.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000689_hash = {
 +	.next	= NULL,
 +	.name	= "ext4_kvzalloc",
 +	.file	= "fs/ext4/super.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000690_hash = {
 +	.next	= NULL,
 +	.name	= "extend_netdev_table",
 +	.file	= "net/core/netprio_cgroup.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000691_hash = {
 +	.next	= NULL,
 +	.name	= "fd_copyin",
 +	.file	= "drivers/block/floppy.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000692_hash = {
 +	.next	= NULL,
 +	.name	= "fd_copyout",
 +	.file	= "drivers/block/floppy.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000693_hash = {
 +	.next	= NULL,
 +	.name	= "__ffs_ep0_read_events",
 +	.file	= "drivers/usb/gadget/f_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000694_hash = {
 +	.next	= NULL,
 +	.name	= "ffs_epfile_io",
 +	.file	= "drivers/usb/gadget/f_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000695_hash = {
 +	.next	= NULL,
 +	.name	= "ffs_prepare_buffer",
 +	.file	= "drivers/usb/gadget/f_fs.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000696_hash = {
 +	.next	= NULL,
 +	.name	= "f_hidg_read",
 +	.file	= "drivers/usb/gadget/f_hid.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000697_hash = {
 +	.next	= NULL,
 +	.name	= "f_hidg_write",
 +	.file	= "drivers/usb/gadget/f_hid.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000698_hash = {
 +	.next	= NULL,
 +	.name	= "fill_write_buffer",
 +	.file	= "fs/configfs/file.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000699_hash = {
 +	.next	= NULL,
 +	.name	= "flexcop_device_kmalloc",
 +	.file	= "drivers/media/dvb/b2c2/flexcop.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000700_hash = {
 +	.next	= NULL,
 +	.name	= "fops_read",
 +	.file	= "drivers/media/video/saa7164/saa7164-encoder.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000701_hash = {
 +	.next	= NULL,
 +	.name	= "fops_read",
 +	.file	= "drivers/media/video/saa7164/saa7164-vbi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000702_hash = {
 +	.next	= NULL,
 +	.name	= "format_devstat_counter",
 +	.file	= "net/mac80211/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000703_hash = {
 +	.next	= NULL,
 +	.name	= "fragmentation_threshold_read",
 +	.file	= "net/wireless/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000704_hash = {
 +	.next	= NULL,
 +	.name	= "frame_alloc",
 +	.file	= "drivers/media/video/gspca/gspca.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000705_hash = {
 +	.next	= NULL,
 +	.name	= "ftdi_elan_write",
 +	.file	= "drivers/usb/misc/ftdi-elan.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000706_hash = {
 +	.next	= NULL,
 +	.name	= "fuse_conn_limit_read",
 +	.file	= "fs/fuse/control.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000707_hash = {
 +	.next	= NULL,
 +	.name	= "fuse_conn_limit_write",
 +	.file	= "fs/fuse/control.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000708_hash = {
 +	.next	= &_000531_hash,
 +	.name	= "fuse_conn_waiting_read",
 +	.file	= "fs/fuse/control.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000709_hash = {
 +	.next	= NULL,
 +	.name	= "garp_attr_create",
 +	.file	= "net/802/garp.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000710_hash = {
 +	.next	= NULL,
 +	.name	= "get_alua_req",
 +	.file	= "drivers/scsi/device_handler/scsi_dh_alua.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000711_hash = {
 +	.next	= NULL,
 +	.name	= "get_derived_key",
 +	.file	= "security/keys/encrypted-keys/encrypted.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000712_hash = {
 +	.next	= NULL,
 +	.name	= "getdqbuf",
 +	.file	= "fs/quota/quota_tree.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000713_hash = {
 +	.next	= NULL,
 +	.name	= "get_fdb_entries",
 +	.file	= "net/bridge/br_ioctl.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000714_hash = {
 +	.next	= NULL,
 +	.name	= "get_rdac_req",
 +	.file	= "drivers/scsi/device_handler/scsi_dh_rdac.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000715_hash = {
 +	.next	= NULL,
 +	.name	= "get_registers",
 +	.file	= "drivers/net/usb/pegasus.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000716_hash = {
 +	.next	= NULL,
 +	.name	= "get_server_iovec",
 +	.file	= "fs/cifs/connect.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000717_hash = {
 +	.next	= NULL,
 +	.name	= "get_ucode_user",
 +	.file	= "arch/x86/kernel/microcode_intel.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000718_hash = {
 +	.next	= NULL,
 +	.name	= "gfs2_alloc_sort_buffer",
 +	.file	= "fs/gfs2/dir.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000719_hash = {
 +	.next	= NULL,
 +	.name	= "gfs2_glock_nq_m",
 +	.file	= "fs/gfs2/glock.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000720_hash = {
 +	.next	= NULL,
 +	.name	= "gigaset_initdriver",
 +	.file	= "drivers/isdn/gigaset/common.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000721_hash = {
 +	.next	= NULL,
 +	.name	= "gpio_power_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000722_hash = {
 +	.next	= NULL,
 +	.name	= "gs_alloc_req",
 +	.file	= "drivers/usb/gadget/u_serial.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000723_hash = {
 +	.next	= NULL,
 +	.name	= "gs_buf_alloc",
 +	.file	= "drivers/usb/gadget/u_serial.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000724_hash = {
 +	.next	= NULL,
 +	.name	= "gss_pipe_downcall",
 +	.file	= "net/sunrpc/auth_gss/auth_gss.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000725_hash = {
 +	.next	= NULL,
 +	.name	= "handle_request",
 +	.file	= "drivers/firewire/core-cdev.c",
 +	.param9	= 1,
 +};
-+
 +struct size_overflow_hash _000726_hash = {
 +	.next	= NULL,
 +	.name	= "hash_new",
 +	.file	= "net/batman-adv/hash.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000727_hash = {
 +	.next	= NULL,
 +	.name	= "hash_setkey",
 +	.file	= "crypto/algif_hash.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000728_hash = {
 +	.next	= NULL,
 +	.name	= "hcd_buffer_alloc",
 +	.file	= "include/linux/usb/hcd.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000729_hash = {
 +	.next	= NULL,
 +	.name	= "hci_sock_setsockopt",
 +	.file	= "net/bluetooth/hci_sock.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000730_hash = {
 +	.next	= NULL,
 +	.name	= "hdpvr_read",
 +	.file	= "drivers/media/video/hdpvr/hdpvr-video.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000731_hash = {
 +	.next	= NULL,
 +	.name	= "hidraw_get_report",
 +	.file	= "drivers/hid/hidraw.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000732_hash = {
 +	.next	= NULL,
 +	.name	= "hidraw_read",
 +	.file	= "drivers/hid/hidraw.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000733_hash = {
 +	.next	= NULL,
 +	.name	= "hidraw_send_report",
 +	.file	= "drivers/hid/hidraw.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000734_hash = {
 +	.next	= NULL,
 +	.name	= "hid_register_field",
@@ -86270,483 +84560,414 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000736_hash = {
 +	.next	= NULL,
 +	.name	= "hpfs_translate_name",
 +	.file	= "fs/hpfs/name.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000737_hash = {
 +	.next	= NULL,
 +	.name	= "hpi_alloc_control_cache",
 +	.file	= "sound/pci/asihpi/hpicmn.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000738_hash = {
 +	.next	= NULL,
 +	.name	= "ht40allow_map_read",
 +	.file	= "net/wireless/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000739_hash = {
 +	.next	= NULL,
 +	.name	= "__hwahc_dev_set_key",
 +	.file	= "drivers/usb/host/hwa-hc.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000740_hash = {
 +	.next	= NULL,
 +	.name	= "hwflags_read",
 +	.file	= "net/mac80211/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000741_hash = {
 +	.next	= NULL,
 +	.name	= "hysdn_conf_read",
 +	.file	= "drivers/isdn/hysdn/hysdn_procconf.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000742_hash = {
 +	.next	= NULL,
 +	.name	= "hysdn_conf_write",
 +	.file	= "drivers/isdn/hysdn/hysdn_procconf.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000743_hash = {
 +	.next	= NULL,
 +	.name	= "hysdn_log_write",
 +	.file	= "drivers/isdn/hysdn/hysdn_proclog.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000744_hash = {
 +	.next	= NULL,
 +	.name	= "i2400m_rx_stats_read",
 +	.file	= "drivers/net/wimax/i2400m/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000745_hash = {
 +	.next	= NULL,
 +	.name	= "i2400m_tx_stats_read",
 +	.file	= "drivers/net/wimax/i2400m/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000746_hash = {
 +	.next	= NULL,
 +	.name	= "__i2400mu_send_barker",
 +	.file	= "drivers/net/wimax/i2400m/usb.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000747_hash = {
 +	.next	= NULL,
 +	.name	= "i2400m_zrealloc_2x",
 +	.file	= "drivers/net/wimax/i2400m/fw.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000748_hash = {
 +	.next	= NULL,
 +	.name	= "i2cdev_read",
 +	.file	= "drivers/i2c/i2c-dev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000749_hash = {
 +	.next	= &_000459_hash,
 +	.name	= "i2cdev_write",
 +	.file	= "drivers/i2c/i2c-dev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000750_hash = {
 +	.next	= NULL,
 +	.name	= "ib_alloc_device",
 +	.file	= "include/rdma/ib_verbs.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000751_hash = {
 +	.next	= NULL,
 +	.name	= "ib_copy_from_udata",
 +	.file	= "include/rdma/ib_verbs.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000752_hash = {
 +	.next	= NULL,
 +	.name	= "ib_copy_to_udata",
 +	.file	= "include/rdma/ib_verbs.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000753_hash = {
 +	.next	= NULL,
 +	.name	= "ibmasm_new_command",
 +	.file	= "drivers/misc/ibmasm/command.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000754_hash = {
 +	.next	= NULL,
 +	.name	= "ib_ucm_alloc_data",
 +	.file	= "drivers/infiniband/core/ucm.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000755_hash = {
 +	.next	= NULL,
 +	.name	= "ib_umad_write",
 +	.file	= "drivers/infiniband/core/user_mad.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000756_hash = {
 +	.next	= NULL,
 +	.name	= "ib_uverbs_unmarshall_recv",
 +	.file	= "drivers/infiniband/core/uverbs_cmd.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000757_hash = {
 +	.next	= NULL,
 +	.name	= "ide_driver_proc_write",
 +	.file	= "drivers/ide/ide-proc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000758_hash = {
 +	.next	= NULL,
 +	.name	= "ide_queue_pc_tail",
 +	.file	= "include/linux/ide.h",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000759_hash = {
 +	.next	= NULL,
 +	.name	= "ide_raw_taskfile",
 +	.file	= "include/linux/ide.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000760_hash = {
 +	.next	= NULL,
 +	.name	= "ide_settings_proc_write",
 +	.file	= "drivers/ide/ide-proc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000761_hash = {
 +	.next	= NULL,
 +	.name	= "idetape_chrdev_read",
 +	.file	= "drivers/ide/ide-tape.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000762_hash = {
 +	.next	= NULL,
 +	.name	= "idetape_chrdev_write",
 +	.file	= "drivers/ide/ide-tape.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000763_hash = {
 +	.next	= NULL,
 +	.name	= "idmouse_read",
 +	.file	= "drivers/usb/misc/idmouse.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000764_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_build_probe_req",
 +	.file	= "net/mac80211/util.c",
 +	.param7	= 1,
 +};
-+
 +struct size_overflow_hash _000765_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000766_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_write",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000767_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_key_alloc",
 +	.file	= "net/mac80211/key.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000768_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_mgmt_tx",
 +	.file	= "net/mac80211/cfg.c",
 +	.param9	= 1,
 +};
-+
 +struct size_overflow_hash _000769_hash = {
 +	.next	= NULL,
 +	.name	= "ikconfig_read_current",
 +	.file	= "kernel/configs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000770_hash = {
 +	.next	= NULL,
 +	.name	= "il3945_sta_dbgfs_stats_table_read",
 +	.file	= "drivers/net/wireless/iwlegacy/3945-rs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000771_hash = {
 +	.next	= NULL,
 +	.name	= "il3945_ucode_general_stats_read",
 +	.file	= "drivers/net/wireless/iwlegacy/3945-debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000772_hash = {
 +	.next	= NULL,
 +	.name	= "il3945_ucode_rx_stats_read",
 +	.file	= "drivers/net/wireless/iwlegacy/3945-debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000773_hash = {
 +	.next	= NULL,
 +	.name	= "il3945_ucode_tx_stats_read",
 +	.file	= "drivers/net/wireless/iwlegacy/3945-debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000774_hash = {
 +	.next	= NULL,
 +	.name	= "il4965_rs_sta_dbgfs_rate_scale_data_read",
 +	.file	= "drivers/net/wireless/iwlegacy/4965-rs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000775_hash = {
 +	.next	= NULL,
 +	.name	= "il4965_rs_sta_dbgfs_scale_table_read",
 +	.file	= "drivers/net/wireless/iwlegacy/4965-rs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000776_hash = {
 +	.next	= NULL,
 +	.name	= "il4965_rs_sta_dbgfs_stats_table_read",
 +	.file	= "drivers/net/wireless/iwlegacy/4965-rs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000777_hash = {
 +	.next	= NULL,
 +	.name	= "il4965_ucode_general_stats_read",
 +	.file	= "drivers/net/wireless/iwlegacy/4965-debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000778_hash = {
 +	.next	= NULL,
 +	.name	= "il4965_ucode_rx_stats_read",
 +	.file	= "drivers/net/wireless/iwlegacy/4965-debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000779_hash = {
 +	.next	= NULL,
 +	.name	= "il4965_ucode_tx_stats_read",
 +	.file	= "drivers/net/wireless/iwlegacy/4965-debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000780_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_chain_noise_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000781_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_channels_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000782_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_disable_ht40_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000783_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_fh_reg_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000784_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_force_reset_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000785_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_interrupt_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000786_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_missed_beacon_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000787_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_nvm_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000788_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_power_save_status_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000789_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_qos_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000790_hash = {
 +	.next	= &_000221_hash,
 +	.name	= "il_dbgfs_rxon_filter_flags_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000791_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_rxon_flags_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000792_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_rx_queue_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000793_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_rx_stats_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000794_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_sensitivity_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000795_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_sram_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000796_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_stations_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000797_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_status_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000798_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_traffic_log_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000799_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_tx_queue_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000800_hash = {
 +	.next	= NULL,
 +	.name	= "il_dbgfs_tx_stats_read",
 +	.file	= "drivers/net/wireless/iwlegacy/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000801_hash = {
 +	.next	= NULL,
 +	.name	= "ilo_read",
 +	.file	= "drivers/misc/hpilo.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000802_hash = {
 +	.next	= NULL,
 +	.name	= "ilo_write",
 +	.file	= "drivers/misc/hpilo.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000803_hash = {
 +	.next	= NULL,
 +	.name	= "init_data_container",
 +	.file	= "fs/btrfs/backref.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000804_hash = {
 +	.next	= NULL,
 +	.name	= "init_list_set",
@@ -86754,777 +84975,666 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000806_hash = {
 +	.next	= NULL,
 +	.name	= "interpret_user_input",
 +	.file	= "fs/ubifs/debug.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000807_hash = {
 +	.next	= NULL,
 +	.name	= "int_proc_write",
 +	.file	= "drivers/net/wireless/ray_cs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000808_hash = {
 +	.next	= NULL,
 +	.name	= "iowarrior_read",
 +	.file	= "drivers/usb/misc/iowarrior.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000809_hash = {
 +	.next	= NULL,
 +	.name	= "iowarrior_write",
 +	.file	= "drivers/usb/misc/iowarrior.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000810_hash = {
 +	.next	= NULL,
 +	.name	= "ip_set_alloc",
 +	.file	= "include/linux/netfilter/ipset/ip_set.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000811_hash = {
 +	.next	= NULL,
 +	.name	= "ip_vs_conn_fill_param_sync",
 +	.file	= "net/netfilter/ipvs/ip_vs_sync.c",
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _000812_hash = {
 +	.next	= NULL,
 +	.name	= "irda_setsockopt",
 +	.file	= "net/irda/af_irda.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000813_hash = {
 +	.next	= NULL,
 +	.name	= "ir_lirc_transmit_ir",
 +	.file	= "drivers/media/rc/ir-lirc-codec.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000814_hash = {
 +	.next	= NULL,
 +	.name	= "irnet_ctrl_write",
 +	.file	= "net/irda/irnet/irnet_ppp.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000815_hash = {
 +	.next	= NULL,
 +	.name	= "iscsi_decode_text_input",
 +	.file	= "drivers/target/iscsi/iscsi_target_parameters.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000816_hash = {
 +	.next	= NULL,
 +	.name	= "iscsit_dump_data_payload",
 +	.file	= "drivers/target/iscsi/iscsi_target_erl1.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000817_hash = {
 +	.next	= NULL,
 +	.name	= "isdn_read",
 +	.file	= "drivers/isdn/i4l/isdn_common.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000818_hash = {
 +	.next	= NULL,
 +	.name	= "iso_callback",
 +	.file	= "drivers/firewire/core-cdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000819_hash = {
 +	.next	= NULL,
 +	.name	= "iso_packets_buffer_init",
 +	.file	= "sound/firewire/packets-buffer.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000820_hash = {
 +	.next	= NULL,
 +	.name	= "iso_sched_alloc",
 +	.file	= "drivers/usb/host/ehci-sched.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000821_hash = {
 +	.next	= NULL,
 +	.name	= "isr_cmd_cmplt_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000822_hash = {
 +	.next	= NULL,
 +	.name	= "isr_commands_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000823_hash = {
 +	.next	= NULL,
 +	.name	= "isr_decrypt_done_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000824_hash = {
 +	.next	= NULL,
 +	.name	= "isr_dma0_done_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000825_hash = {
 +	.next	= NULL,
 +	.name	= "isr_dma1_done_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000826_hash = {
 +	.next	= NULL,
 +	.name	= "isr_fiqs_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000827_hash = {
 +	.next	= NULL,
 +	.name	= "isr_host_acknowledges_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000828_hash = {
 +	.next	= &_000629_hash,
 +	.name	= "isr_hw_pm_mode_changes_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000829_hash = {
 +	.next	= &_000329_hash,
 +	.name	= "isr_irqs_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000830_hash = {
 +	.next	= NULL,
 +	.name	= "isr_low_rssi_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000831_hash = {
 +	.next	= NULL,
 +	.name	= "isr_pci_pm_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000832_hash = {
 +	.next	= NULL,
 +	.name	= "isr_rx_headers_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000833_hash = {
 +	.next	= NULL,
 +	.name	= "isr_rx_mem_overflow_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000834_hash = {
 +	.next	= NULL,
 +	.name	= "isr_rx_procs_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000835_hash = {
 +	.next	= NULL,
 +	.name	= "isr_rx_rdys_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000836_hash = {
 +	.next	= NULL,
 +	.name	= "isr_tx_exch_complete_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000837_hash = {
 +	.next	= NULL,
 +	.name	= "isr_tx_procs_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000838_hash = {
 +	.next	= NULL,
 +	.name	= "isr_wakeups_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000839_hash = {
 +	.next	= NULL,
 +	.name	= "ivtv_copy_buf_to_user",
 +	.file	= "drivers/media/video/ivtv/ivtv-fileops.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000840_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_bt_traffic_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000841_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_chain_noise_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000842_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_channels_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000843_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_current_sleep_command_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000844_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_debug_level_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000845_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_debug_level_write",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000846_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_disable_ht40_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000847_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_fh_reg_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-trans-pcie.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000848_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_force_reset_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000849_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_interrupt_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-trans-pcie.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000850_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_log_event_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-trans-pcie.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000851_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_missed_beacon_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000852_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_nvm_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000853_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_plcp_delta_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000854_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_power_save_status_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000855_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_protection_mode_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000856_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_qos_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000857_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_reply_tx_error_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000858_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_rx_handlers_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000859_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_rxon_filter_flags_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000860_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_rxon_flags_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000861_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_rx_queue_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-trans-pcie.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000862_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_rx_statistics_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000863_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_sensitivity_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000864_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_sleep_level_override_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000865_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_sram_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000866_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_stations_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000867_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_status_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000868_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_temperature_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000869_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_thermal_throttling_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000870_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_traffic_log_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000871_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_tx_queue_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-trans-pcie.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000872_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_tx_statistics_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000873_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_ucode_bt_stats_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000874_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_ucode_general_stats_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000875_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_ucode_rx_stats_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000876_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_ucode_tracing_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000877_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_ucode_tx_stats_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000878_hash = {
 +	.next	= NULL,
 +	.name	= "iwl_dbgfs_wowlan_sram_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000879_hash = {
 +	.next	= NULL,
 +	.name	= "iwmct_fw_parser_init",
 +	.file	= "drivers/misc/iwmc3200top/fw-download.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000880_hash = {
 +	.next	= NULL,
 +	.name	= "iwm_notif_send",
 +	.file	= "drivers/net/wireless/iwmc3200wifi/main.c",
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _000881_hash = {
 +	.next	= NULL,
 +	.name	= "iwm_ntf_calib_res",
 +	.file	= "drivers/net/wireless/iwmc3200wifi/rx.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000882_hash = {
 +	.next	= NULL,
 +	.name	= "iwm_umac_set_config_var",
 +	.file	= "drivers/net/wireless/iwmc3200wifi/commands.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000883_hash = {
 +	.next	= NULL,
 +	.name	= "jbd2_alloc",
 +	.file	= "include/linux/jbd2.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000884_hash = {
 +	.next	= NULL,
 +	.name	= "key_algorithm_read",
 +	.file	= "net/mac80211/debugfs_key.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000885_hash = {
 +	.next	= NULL,
 +	.name	= "key_icverrors_read",
 +	.file	= "net/mac80211/debugfs_key.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000886_hash = {
 +	.next	= NULL,
 +	.name	= "key_key_read",
 +	.file	= "net/mac80211/debugfs_key.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000887_hash = {
 +	.next	= NULL,
 +	.name	= "key_replays_read",
 +	.file	= "net/mac80211/debugfs_key.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000888_hash = {
 +	.next	= NULL,
 +	.name	= "key_rx_spec_read",
 +	.file	= "net/mac80211/debugfs_key.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000889_hash = {
 +	.next	= NULL,
 +	.name	= "key_tx_spec_read",
 +	.file	= "net/mac80211/debugfs_key.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000890_hash = {
 +	.next	= NULL,
 +	.name	= "kmem_alloc",
 +	.file	= "fs/xfs/kmem.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000891_hash = {
 +	.next	= NULL,
 +	.name	= "kmem_zalloc_large",
 +	.file	= "fs/xfs/kmem.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000892_hash = {
 +	.next	= NULL,
 +	.name	= "kone_receive",
 +	.file	= "drivers/hid/hid-roccat-kone.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000893_hash = {
 +	.next	= NULL,
 +	.name	= "kone_send",
 +	.file	= "drivers/hid/hid-roccat-kone.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000894_hash = {
 +	.next	= NULL,
 +	.name	= "kvm_read_guest_atomic",
 +	.file	= "include/linux/kvm_host.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000895_hash = {
 +	.next	= NULL,
 +	.name	= "kvm_read_guest_cached",
 +	.file	= "include/linux/kvm_host.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000896_hash = {
 +	.next	= NULL,
 +	.name	= "kvm_set_irq_routing",
 +	.file	= "include/linux/kvm_host.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000897_hash = {
 +	.next	= NULL,
 +	.name	= "kvm_write_guest_cached",
 +	.file	= "include/linux/kvm_host.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000898_hash = {
 +	.next	= NULL,
 +	.name	= "l2cap_sock_setsockopt",
 +	.file	= "net/bluetooth/l2cap_sock.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000899_hash = {
 +	.next	= NULL,
 +	.name	= "l2cap_sock_setsockopt_old",
 +	.file	= "net/bluetooth/l2cap_sock.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000900_hash = {
 +	.next	= NULL,
 +	.name	= "lane2_associate_req",
 +	.file	= "net/atm/lec.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000901_hash = {
 +	.next	= NULL,
 +	.name	= "lbs_debugfs_read",
 +	.file	= "drivers/net/wireless/libertas/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000902_hash = {
 +	.next	= NULL,
 +	.name	= "lbs_debugfs_write",
 +	.file	= "drivers/net/wireless/libertas/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000903_hash = {
 +	.next	= NULL,
 +	.name	= "lbs_dev_info",
 +	.file	= "drivers/net/wireless/libertas/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000904_hash = {
 +	.next	= NULL,
 +	.name	= "lbs_host_sleep_read",
 +	.file	= "drivers/net/wireless/libertas/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000905_hash = {
 +	.next	= NULL,
 +	.name	= "lbs_rdbbp_read",
 +	.file	= "drivers/net/wireless/libertas/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000906_hash = {
 +	.next	= NULL,
 +	.name	= "lbs_rdmac_read",
 +	.file	= "drivers/net/wireless/libertas/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000907_hash = {
 +	.next	= NULL,
 +	.name	= "lbs_rdrf_read",
 +	.file	= "drivers/net/wireless/libertas/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000908_hash = {
 +	.next	= NULL,
 +	.name	= "lbs_sleepparams_read",
 +	.file	= "drivers/net/wireless/libertas/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000909_hash = {
 +	.next	= NULL,
 +	.name	= "lbs_threshold_read",
 +	.file	= "drivers/net/wireless/libertas/debugfs.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000910_hash = {
 +	.next	= NULL,
 +	.name	= "lc_create",
 +	.file	= "include/linux/lru_cache.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000911_hash = {
 +	.next	= NULL,
 +	.name	= "lcd_write",
 +	.file	= "drivers/usb/misc/usblcd.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000912_hash = {
 +	.next	= NULL,
 +	.name	= "leaf_dealloc",
 +	.file	= "fs/gfs2/dir.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000913_hash = {
 +	.next	= NULL,
 +	.name	= "__lgread",
 +	.file	= "drivers/lguest/core.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000914_hash = {
 +	.next	= NULL,
 +	.name	= "__lgwrite",
 +	.file	= "drivers/lguest/core.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000915_hash = {
 +	.next	= NULL,
 +	.name	= "link_send_sections_long",
 +	.file	= "net/tipc/link.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000916_hash = {
 +	.next	= NULL,
 +	.name	= "lirc_buffer_init",
@@ -87532,161 +85642,138 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000918_hash = {
 +	.next	= NULL,
 +	.name	= "lkdtm_debugfs_read",
 +	.file	= "drivers/misc/lkdtm.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000919_hash = {
 +	.next	= NULL,
 +	.name	= "LoadBitmap",
 +	.file	= "drivers/media/dvb/ttpci/av7110_hw.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000920_hash = {
 +	.next	= NULL,
 +	.name	= "long_retry_limit_read",
 +	.file	= "net/wireless/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000921_hash = {
 +	.next	= NULL,
 +	.name	= "lpfc_debugfs_dif_err_read",
 +	.file	= "drivers/scsi/lpfc/lpfc_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000922_hash = {
 +	.next	= NULL,
 +	.name	= "lpfc_debugfs_dif_err_write",
 +	.file	= "drivers/scsi/lpfc/lpfc_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000923_hash = {
 +	.next	= NULL,
 +	.name	= "lpfc_debugfs_read",
 +	.file	= "drivers/scsi/lpfc/lpfc_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000924_hash = {
 +	.next	= NULL,
 +	.name	= "lpfc_idiag_baracc_read",
 +	.file	= "drivers/scsi/lpfc/lpfc_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000925_hash = {
 +	.next	= NULL,
 +	.name	= "lpfc_idiag_ctlacc_read",
 +	.file	= "drivers/scsi/lpfc/lpfc_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000926_hash = {
 +	.next	= NULL,
 +	.name	= "lpfc_idiag_drbacc_read",
 +	.file	= "drivers/scsi/lpfc/lpfc_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000927_hash = {
 +	.next	= NULL,
 +	.name	= "lpfc_idiag_extacc_read",
 +	.file	= "drivers/scsi/lpfc/lpfc_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000928_hash = {
 +	.next	= NULL,
 +	.name	= "lpfc_idiag_mbxacc_read",
 +	.file	= "drivers/scsi/lpfc/lpfc_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000929_hash = {
 +	.next	= NULL,
 +	.name	= "lpfc_idiag_pcicfg_read",
 +	.file	= "drivers/scsi/lpfc/lpfc_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000930_hash = {
 +	.next	= NULL,
 +	.name	= "lpfc_idiag_queacc_read",
 +	.file	= "drivers/scsi/lpfc/lpfc_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000931_hash = {
 +	.next	= NULL,
 +	.name	= "lpfc_idiag_queinfo_read",
 +	.file	= "drivers/scsi/lpfc/lpfc_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000932_hash = {
 +	.next	= NULL,
 +	.name	= "lpfc_sli4_queue_alloc",
 +	.file	= "drivers/scsi/lpfc/lpfc_sli.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000933_hash = {
 +	.next	= NULL,
 +	.name	= "lp_write",
 +	.file	= "drivers/char/lp.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000934_hash = {
 +	.next	= NULL,
 +	.name	= "mac80211_format_buffer",
 +	.file	= "net/mac80211/debugfs.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000935_hash = {
 +	.next	= NULL,
 +	.name	= "mce_write",
 +	.file	= "arch/x86/kernel/cpu/mcheck/mce-inject.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000936_hash = {
 +	.next	= NULL,
 +	.name	= "mcs7830_get_reg",
 +	.file	= "drivers/net/usb/mcs7830.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000937_hash = {
 +	.next	= NULL,
 +	.name	= "mcs7830_set_reg",
 +	.file	= "drivers/net/usb/mcs7830.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000938_hash = {
 +	.next	= NULL,
 +	.name	= "mdc800_device_read",
 +	.file	= "drivers/usb/image/mdc800.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000939_hash = {
 +	.next	= NULL,
 +	.name	= "mdiobus_alloc_size",
 +	.file	= "include/linux/phy.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000940_hash = {
 +	.next	= NULL,
 +	.name	= "media_entity_init",
@@ -87694,168 +85781,144 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000942_hash = {
 +	.next	= NULL,
 +	.name	= "memstick_alloc_host",
 +	.file	= "include/linux/memstick.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000943_hash = {
 +	.next	= NULL,
 +	.name	= "mgmt_control",
 +	.file	= "include/net/bluetooth/hci_core.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000944_hash = {
 +	.next	= NULL,
 +	.name	= "mgmt_pending_add",
 +	.file	= "net/bluetooth/mgmt.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000945_hash = {
 +	.next	= &_000321_hash,
 +	.name	= "mic_calc_failure_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000946_hash = {
 +	.next	= NULL,
 +	.name	= "mic_rx_pkts_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000947_hash = {
 +	.next	= NULL,
 +	.name	= "minstrel_stats_read",
 +	.file	= "net/mac80211/rc80211_minstrel_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000948_hash = {
 +	.next	= NULL,
 +	.name	= "mlx4_en_create_rx_ring",
 +	.file	= "drivers/net/ethernet/mellanox/mlx4/en_rx.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000949_hash = {
 +	.next	= NULL,
 +	.name	= "mlx4_en_create_tx_ring",
 +	.file	= "drivers/net/ethernet/mellanox/mlx4/en_tx.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000950_hash = {
 +	.next	= NULL,
 +	.name	= "mmc_ext_csd_read",
 +	.file	= "drivers/mmc/core/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000951_hash = {
 +	.next	= NULL,
 +	.name	= "mmc_send_bus_test",
 +	.file	= "drivers/mmc/core/mmc_ops.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000952_hash = {
 +	.next	= NULL,
 +	.name	= "mmc_send_cxd_data",
 +	.file	= "drivers/mmc/core/mmc_ops.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000953_hash = {
 +	.next	= NULL,
 +	.name	= "mmc_test_alloc_mem",
 +	.file	= "drivers/mmc/card/mmc_test.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000954_hash = {
 +	.next	= NULL,
 +	.name	= "mon_bin_get_event",
 +	.file	= "drivers/usb/mon/mon_bin.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000955_hash = {
 +	.next	= NULL,
 +	.name	= "mon_stat_read",
 +	.file	= "drivers/usb/mon/mon_stat.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000956_hash = {
 +	.next	= NULL,
 +	.name	= "mptctl_getiocinfo",
 +	.file	= "drivers/message/fusion/mptctl.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000957_hash = {
 +	.next	= NULL,
 +	.name	= "msnd_fifo_alloc",
 +	.file	= "sound/oss/msnd.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000958_hash = {
 +	.next	= NULL,
 +	.name	= "mtdchar_readoob",
 +	.file	= "drivers/mtd/mtdchar.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000959_hash = {
 +	.next	= NULL,
 +	.name	= "mtdchar_write",
 +	.file	= "drivers/mtd/mtdchar.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000960_hash = {
 +	.next	= NULL,
 +	.name	= "mtdchar_writeoob",
 +	.file	= "drivers/mtd/mtdchar.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000961_hash = {
 +	.next	= NULL,
 +	.name	= "mtdswap_init",
 +	.file	= "drivers/mtd/mtdswap.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000962_hash = {
 +	.next	= NULL,
 +	.name	= "mtf_test_write",
 +	.file	= "drivers/mmc/card/mmc_test.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000963_hash = {
 +	.next	= NULL,
 +	.name	= "musb_test_mode_write",
 +	.file	= "drivers/usb/musb/musb_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000964_hash = {
 +	.next	= NULL,
 +	.name	= "mvumi_alloc_mem_resource",
 +	.file	= "drivers/scsi/mvumi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000965_hash = {
 +	.next	= NULL,
 +	.name	= "mwifiex_alloc_sdio_mpa_buffers",
@@ -87863,56 +85926,48 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000967_hash = {
 +	.next	= NULL,
 +	.name	= "mwifiex_debug_read",
 +	.file	= "drivers/net/wireless/mwifiex/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000968_hash = {
 +	.next	= NULL,
 +	.name	= "mwifiex_get_common_rates",
 +	.file	= "drivers/net/wireless/mwifiex/join.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000969_hash = {
 +	.next	= NULL,
 +	.name	= "mwifiex_getlog_read",
 +	.file	= "drivers/net/wireless/mwifiex/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000970_hash = {
 +	.next	= NULL,
 +	.name	= "mwifiex_info_read",
 +	.file	= "drivers/net/wireless/mwifiex/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000971_hash = {
 +	.next	= NULL,
 +	.name	= "mwifiex_rdeeprom_read",
 +	.file	= "drivers/net/wireless/mwifiex/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000972_hash = {
 +	.next	= NULL,
 +	.name	= "mwifiex_regrdwr_read",
 +	.file	= "drivers/net/wireless/mwifiex/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000973_hash = {
 +	.next	= NULL,
 +	.name	= "mwifiex_update_curr_bss_params",
 +	.file	= "drivers/net/wireless/mwifiex/scan.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000974_hash = {
 +	.next	= NULL,
 +	.name	= "nand_bch_init",
@@ -87920,70 +85975,61 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000976_hash = {
 +	.next	= NULL,
 +	.name	= "ncp_file_write",
 +	.file	= "fs/ncpfs/file.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000977_hash = {
 +	.next	= NULL,
 +	.name	= "ncp__vol2io",
 +	.file	= "fs/ncpfs/ncplib_kernel.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000978_hash = {
 +	.next	= NULL,
 +	.name	= "new_bind_ctl",
 +	.file	= "sound/pci/hda/patch_realtek.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _000979_hash = {
 +	.next	= NULL,
 +	.name	= "nfc_llcp_build_tlv",
 +	.file	= "net/nfc/llcp/commands.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000980_hash = {
 +	.next	= NULL,
 +	.name	= "nfs4_alloc_slots",
 +	.file	= "fs/nfs/nfs4proc.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000981_hash = {
 +	.next	= NULL,
 +	.name	= "nfs4_write_cached_acl",
 +	.file	= "fs/nfs/nfs4proc.c",
 +	.param3	= 1,
++	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000982_hash = {
 +	.next	= NULL,
 +	.name	= "nfsctl_transaction_read",
 +	.file	= "fs/nfsd/nfsctl.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000983_hash = {
 +	.next	= NULL,
 +	.name	= "nfsctl_transaction_write",
 +	.file	= "fs/nfsd/nfsctl.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000984_hash = {
 +	.next	= NULL,
 +	.name	= "nfsd_cache_update",
 +	.file	= "fs/nfsd/nfscache.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000985_hash = {
 +	.next	= NULL,
 +	.name	= "nfs_idmap_get_desc",
@@ -87991,35 +86037,30 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000987_hash = {
 +	.next	= NULL,
 +	.name	= "nfs_readdata_alloc",
 +	.file	= "include/linux/nfs_fs.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000988_hash = {
 +	.next	= NULL,
 +	.name	= "nfs_readdir_make_qstr",
 +	.file	= "fs/nfs/dir.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000989_hash = {
 +	.next	= NULL,
 +	.name	= "nfs_writedata_alloc",
 +	.file	= "include/linux/nfs_fs.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000990_hash = {
 +	.next	= NULL,
 +	.name	= "nsm_create_handle",
 +	.file	= "fs/lockd/mon.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000991_hash = {
 +	.next	= NULL,
 +	.name	= "ntfs_copy_from_user",
@@ -88027,7 +86068,6 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _000993_hash = {
 +	.next	= NULL,
 +	.name	= "__ntfs_copy_from_user_iovec_inatomic",
@@ -88035,140 +86075,120 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _000995_hash = {
 +	.next	= NULL,
 +	.name	= "__ntfs_malloc",
 +	.file	= "fs/ntfs/malloc.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000996_hash = {
 +	.next	= NULL,
 +	.name	= "nvme_alloc_iod",
 +	.file	= "drivers/block/nvme.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _000997_hash = {
 +	.next	= NULL,
 +	.name	= "nvram_write",
 +	.file	= "drivers/char/nvram.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000998_hash = {
 +	.next	= NULL,
 +	.name	= "o2hb_debug_read",
 +	.file	= "fs/ocfs2/cluster/heartbeat.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _000999_hash = {
 +	.next	= NULL,
 +	.name	= "o2net_debug_read",
 +	.file	= "fs/ocfs2/cluster/netdebug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001000_hash = {
 +	.next	= NULL,
 +	.name	= "o2net_send_message_vec",
 +	.file	= "fs/ocfs2/cluster/tcp.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001001_hash = {
 +	.next	= NULL,
 +	.name	= "ocfs2_control_cfu",
 +	.file	= "fs/ocfs2/stack_user.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001002_hash = {
 +	.next	= NULL,
 +	.name	= "ocfs2_control_read",
 +	.file	= "fs/ocfs2/stack_user.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001003_hash = {
 +	.next	= NULL,
 +	.name	= "ocfs2_debug_read",
 +	.file	= "fs/ocfs2/super.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001004_hash = {
 +	.next	= NULL,
 +	.name	= "opera1_xilinx_rw",
 +	.file	= "drivers/media/dvb/dvb-usb/opera1.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001005_hash = {
 +	.next	= NULL,
 +	.name	= "oprofilefs_str_to_user",
 +	.file	= "include/linux/oprofile.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001006_hash = {
 +	.next	= NULL,
 +	.name	= "oprofilefs_ulong_from_user",
 +	.file	= "include/linux/oprofile.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001007_hash = {
 +	.next	= &_000626_hash,
 +	.name	= "oprofilefs_ulong_to_user",
 +	.file	= "include/linux/oprofile.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001008_hash = {
 +	.next	= NULL,
 +	.name	= "_ore_get_io_state",
 +	.file	= "fs/exofs/ore.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001009_hash = {
 +	.next	= NULL,
 +	.name	= "_osd_realloc_seg",
 +	.file	= "drivers/scsi/osd/osd_initiator.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001010_hash = {
 +	.next	= NULL,
 +	.name	= "_osd_req_list_objects",
 +	.file	= "drivers/scsi/osd/osd_initiator.c",
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _001011_hash = {
 +	.next	= NULL,
 +	.name	= "osd_req_read_kern",
 +	.file	= "include/scsi/osd_initiator.h",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001012_hash = {
 +	.next	= NULL,
 +	.name	= "osd_req_write_kern",
 +	.file	= "include/scsi/osd_initiator.h",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001013_hash = {
 +	.next	= NULL,
 +	.name	= "osst_execute",
 +	.file	= "drivers/scsi/osst.c",
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _001014_hash = {
 +	.next	= NULL,
 +	.name	= "otp_read",
@@ -88176,1316 +86196,1128 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001016_hash = {
 +	.next	= NULL,
 +	.name	= "packet_buffer_init",
 +	.file	= "drivers/firewire/nosy.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001017_hash = {
 +	.next	= NULL,
 +	.name	= "packet_setsockopt",
 +	.file	= "net/packet/af_packet.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001018_hash = {
 +	.next	= NULL,
 +	.name	= "parse_arg",
 +	.file	= "drivers/platform/x86/asus_acpi.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001019_hash = {
 +	.next	= NULL,
 +	.name	= "parse_command",
 +	.file	= "fs/binfmt_misc.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001020_hash = {
 +	.next	= NULL,
 +	.name	= "pcmcia_replace_cis",
 +	.file	= "drivers/pcmcia/cistpl.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001021_hash = {
 +	.next	= NULL,
 +	.name	= "pcnet32_realloc_rx_ring",
 +	.file	= "drivers/net/ethernet/amd/pcnet32.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001022_hash = {
 +	.next	= NULL,
 +	.name	= "pcnet32_realloc_tx_ring",
 +	.file	= "drivers/net/ethernet/amd/pcnet32.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001023_hash = {
 +	.next	= NULL,
 +	.name	= "pgctrl_write",
 +	.file	= "net/core/pktgen.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001024_hash = {
 +	.next	= NULL,
 +	.name	= "pg_read",
 +	.file	= "drivers/block/paride/pg.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001025_hash = {
 +	.next	= NULL,
 +	.name	= "pg_write",
 +	.file	= "drivers/block/paride/pg.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001026_hash = {
 +	.next	= NULL,
 +	.name	= "picolcd_debug_eeprom_read",
 +	.file	= "drivers/hid/hid-picolcd.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001027_hash = {
 +	.next	= NULL,
 +	.name	= "pkt_add",
 +	.file	= "drivers/usb/serial/garmin_gps.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001028_hash = {
 +	.next	= NULL,
 +	.name	= "pktgen_if_write",
 +	.file	= "net/core/pktgen.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001029_hash = {
 +	.next	= NULL,
 +	.name	= "platform_list_read_file",
 +	.file	= "sound/soc/soc-core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001030_hash = {
 +	.next	= NULL,
 +	.name	= "pm8001_store_update_fw",
 +	.file	= "drivers/scsi/pm8001/pm8001_ctl.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001031_hash = {
 +	.next	= NULL,
 +	.name	= "port_show_regs",
 +	.file	= "drivers/tty/serial/mfd.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001032_hash = {
 +	.next	= NULL,
 +	.name	= "ppp_cp_parse_cr",
 +	.file	= "drivers/net/wan/hdlc_ppp.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001033_hash = {
 +	.next	= NULL,
 +	.name	= "ppp_write",
 +	.file	= "drivers/net/ppp/ppp_generic.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001034_hash = {
 +	.next	= NULL,
 +	.name	= "pp_read",
 +	.file	= "drivers/char/ppdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001035_hash = {
 +	.next	= NULL,
 +	.name	= "pp_write",
 +	.file	= "drivers/char/ppdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001036_hash = {
 +	.next	= NULL,
 +	.name	= "printer_read",
 +	.file	= "drivers/usb/gadget/printer.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001037_hash = {
 +	.next	= NULL,
 +	.name	= "printer_req_alloc",
 +	.file	= "drivers/usb/gadget/printer.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001038_hash = {
 +	.next	= NULL,
 +	.name	= "printer_write",
 +	.file	= "drivers/usb/gadget/printer.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001039_hash = {
 +	.next	= NULL,
 +	.name	= "prism2_set_genericelement",
 +	.file	= "drivers/net/wireless/hostap/hostap_ioctl.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001040_hash = {
 +	.next	= NULL,
 +	.name	= "proc_read",
 +	.file	= "drivers/net/wireless/airo.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001041_hash = {
 +	.next	= NULL,
 +	.name	= "proc_scsi_devinfo_write",
 +	.file	= "drivers/scsi/scsi_devinfo.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001042_hash = {
 +	.next	= NULL,
 +	.name	= "proc_scsi_write",
 +	.file	= "drivers/scsi/scsi_proc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001043_hash = {
 +	.next	= NULL,
 +	.name	= "proc_scsi_write_proc",
 +	.file	= "drivers/scsi/scsi_proc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001044_hash = {
 +	.next	= NULL,
 +	.name	= "proc_write",
 +	.file	= "drivers/net/wireless/airo.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001045_hash = {
 +	.next	= NULL,
 +	.name	= "provide_user_output",
 +	.file	= "fs/ubifs/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001046_hash = {
 +	.next	= NULL,
 +	.name	= "ps_pspoll_max_apturn_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001047_hash = {
 +	.next	= NULL,
 +	.name	= "ps_pspoll_timeouts_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001048_hash = {
 +	.next	= NULL,
 +	.name	= "ps_pspoll_utilization_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001049_hash = {
 +	.next	= NULL,
 +	.name	= "ps_upsd_max_apturn_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001050_hash = {
 +	.next	= NULL,
 +	.name	= "ps_upsd_max_sptime_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001051_hash = {
 +	.next	= NULL,
 +	.name	= "ps_upsd_timeouts_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001052_hash = {
 +	.next	= NULL,
 +	.name	= "ps_upsd_utilization_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001053_hash = {
 +	.next	= NULL,
 +	.name	= "pti_char_write",
 +	.file	= "drivers/misc/pti.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001054_hash = {
 +	.next	= NULL,
 +	.name	= "pt_read",
 +	.file	= "drivers/block/paride/pt.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001055_hash = {
 +	.next	= NULL,
 +	.name	= "pt_write",
 +	.file	= "drivers/block/paride/pt.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001056_hash = {
 +	.next	= NULL,
 +	.name	= "pvr2_ioread_read",
 +	.file	= "drivers/media/video/pvrusb2/pvrusb2-ioread.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001057_hash = {
 +	.next	= NULL,
 +	.name	= "pvr2_ioread_set_sync_key",
 +	.file	= "drivers/media/video/pvrusb2/pvrusb2-ioread.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001058_hash = {
 +	.next	= NULL,
 +	.name	= "pvr2_stream_buffer_count",
 +	.file	= "drivers/media/video/pvrusb2/pvrusb2-io.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001059_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_disable_ps_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001060_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_elp_enter_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001061_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_enable_ps_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001062_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_fix_tsf_ps_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001063_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_missing_bcns_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001064_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_power_save_off_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001065_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_ps_enter_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001066_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_rcvd_awake_beacons_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001067_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_rcvd_beacons_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001068_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_tx_without_ps_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001069_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_tx_with_ps_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001070_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_wake_on_host_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001071_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_wake_on_timer_exp_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001072_hash = {
 +	.next	= NULL,
 +	.name	= "qc_capture",
 +	.file	= "drivers/media/video/c-qcam.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001073_hash = {
 +	.next	= NULL,
 +	.name	= "qla2x00_get_ctx_bsg_sp",
 +	.file	= "drivers/scsi/qla2xxx/qla_bsg.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001074_hash = {
 +	.next	= NULL,
 +	.name	= "qla2x00_get_ctx_sp",
 +	.file	= "drivers/scsi/qla2xxx/qla_init.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001075_hash = {
 +	.next	= NULL,
 +	.name	= "qlcnic_alloc_msix_entries",
 +	.file	= "drivers/net/ethernet/qlogic/qlcnic/qlcnic_main.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001076_hash = {
 +	.next	= NULL,
 +	.name	= "queues_read",
 +	.file	= "net/mac80211/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001077_hash = {
 +	.next	= NULL,
 +	.name	= "r3964_write",
 +	.file	= "drivers/tty/n_r3964.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001078_hash = {
 +	.next	= NULL,
 +	.name	= "raw_setsockopt",
 +	.file	= "net/can/raw.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001079_hash = {
 +	.next	= NULL,
 +	.name	= "ray_cs_essid_proc_write",
 +	.file	= "drivers/net/wireless/ray_cs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001080_hash = {
 +	.next	= NULL,
 +	.name	= "rbd_snap_add",
 +	.file	= "drivers/block/rbd.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001081_hash = {
 +	.next	= NULL,
 +	.name	= "rcname_read",
 +	.file	= "net/mac80211/rate.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001082_hash = {
 +	.next	= NULL,
 +	.name	= "rds_message_alloc",
 +	.file	= "net/rds/message.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001083_hash = {
 +	.next	= NULL,
 +	.name	= "rds_page_copy_user",
 +	.file	= "net/rds/page.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001084_hash = {
 +	.next	= NULL,
 +	.name	= "read",
 +	.file	= "drivers/pci/hotplug/cpqphp_sysfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001085_hash = {
 +	.next	= NULL,
 +	.name	= "read_4k_modal_eeprom",
 +	.file	= "drivers/net/wireless/ath/ath9k/htc_drv_debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001086_hash = {
 +	.next	= NULL,
 +	.name	= "read_9287_modal_eeprom",
 +	.file	= "drivers/net/wireless/ath/ath9k/htc_drv_debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001087_hash = {
 +	.next	= NULL,
 +	.name	= "read_buf",
 +	.file	= "fs/nfsd/nfs4xdr.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001088_hash = {
 +	.next	= NULL,
 +	.name	= "read_cis_cache",
 +	.file	= "drivers/pcmcia/cistpl.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001089_hash = {
 +	.next	= NULL,
 +	.name	= "read_def_modal_eeprom",
 +	.file	= "drivers/net/wireless/ath/ath9k/htc_drv_debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001090_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_ani",
 +	.file	= "drivers/net/wireless/ath/ath5k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001091_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_antenna",
 +	.file	= "drivers/net/wireless/ath/ath5k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001092_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_base_eeprom",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001093_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_base_eeprom",
 +	.file	= "drivers/net/wireless/ath/ath9k/htc_drv_debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001094_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_beacon",
 +	.file	= "drivers/net/wireless/ath/ath5k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001095_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_credit_dist_stats",
 +	.file	= "drivers/net/wireless/ath/ath6kl/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001096_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_debug",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001097_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_debug",
 +	.file	= "drivers/net/wireless/ath/ath9k/htc_drv_debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001098_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_debug",
 +	.file	= "drivers/net/wireless/ath/ath5k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001099_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_disable_ani",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001100_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_dma",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001101_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_dump_nfcal",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001102_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_frameerrors",
 +	.file	= "drivers/net/wireless/ath/ath5k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001103_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_interrupt",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001104_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_misc",
 +	.file	= "drivers/net/wireless/ath/ath5k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001105_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_misc",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001106_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_modal_eeprom",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001107_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_queue",
 +	.file	= "drivers/net/wireless/ath/ath5k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001108_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_queue",
 +	.file	= "drivers/net/wireless/ath/ath9k/htc_drv_debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001109_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_rcstat",
 +	.file	= "drivers/net/wireless/ath/ath9k/rc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001110_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_recv",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001111_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_recv",
 +	.file	= "drivers/net/wireless/ath/ath9k/htc_drv_debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001112_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_regidx",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001113_hash = {
 +	.next	= &_001103_hash,
 +	.name	= "read_file_regval",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001114_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_rx_chainmask",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001115_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_slot",
 +	.file	= "drivers/net/wireless/ath/ath9k/htc_drv_debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001116_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_stations",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001117_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_tgt_int_stats",
 +	.file	= "drivers/net/wireless/ath/ath9k/htc_drv_debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001118_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_tgt_rx_stats",
 +	.file	= "drivers/net/wireless/ath/ath9k/htc_drv_debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001119_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_tgt_stats",
 +	.file	= "drivers/net/wireless/ath/ath6kl/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001120_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_tgt_tx_stats",
 +	.file	= "drivers/net/wireless/ath/ath9k/htc_drv_debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001121_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_tx_chainmask",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001122_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_war_stats",
 +	.file	= "drivers/net/wireless/ath/ath6kl/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001123_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_wiphy",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001124_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_xmit",
 +	.file	= "drivers/net/wireless/ath/ath9k/htc_drv_debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001125_hash = {
 +	.next	= NULL,
 +	.name	= "read_file_xmit",
 +	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001126_hash = {
 +	.next	= NULL,
 +	.name	= "read_flush",
 +	.file	= "net/sunrpc/cache.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001127_hash = {
 +	.next	= NULL,
 +	.name	= "realloc_buffer",
 +	.file	= "drivers/scsi/device_handler/scsi_dh_alua.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001128_hash = {
 +	.next	= NULL,
 +	.name	= "receive_DataRequest",
 +	.file	= "drivers/block/drbd/drbd_receiver.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001129_hash = {
 +	.next	= NULL,
 +	.name	= "recent_mt_proc_write",
 +	.file	= "net/netfilter/xt_recent.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001130_hash = {
 +	.next	= NULL,
 +	.name	= "redrat3_transmit_ir",
 +	.file	= "drivers/media/rc/redrat3.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001131_hash = {
 +	.next	= NULL,
 +	.name	= "reg_w_buf",
 +	.file	= "drivers/media/video/gspca/t613.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001132_hash = {
 +	.next	= NULL,
 +	.name	= "reg_w_ixbuf",
 +	.file	= "drivers/media/video/gspca/t613.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001133_hash = {
 +	.next	= NULL,
 +	.name	= "reiserfs_allocate_list_bitmaps",
 +	.file	= "include/linux/reiserfs_fs.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001134_hash = {
 +	.next	= NULL,
 +	.name	= "reiserfs_resize",
 +	.file	= "include/linux/reiserfs_fs_sb.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001135_hash = {
 +	.next	= NULL,
 +	.name	= "remote_settings_file_write",
 +	.file	= "drivers/misc/ibmasm/ibmasmfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001136_hash = {
 +	.next	= NULL,
 +	.name	= "_req_append_segment",
 +	.file	= "drivers/scsi/osd/osd_initiator.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001137_hash = {
 +	.next	= NULL,
 +	.name	= "retry_count_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001138_hash = {
 +	.next	= NULL,
 +	.name	= "revalidate",
 +	.file	= "drivers/block/aoe/aoechr.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001139_hash = {
 +	.next	= NULL,
 +	.name	= "rfcomm_sock_setsockopt",
 +	.file	= "net/bluetooth/rfcomm/sock.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001140_hash = {
 +	.next	= NULL,
 +	.name	= "rfkill_fop_read",
 +	.file	= "net/rfkill/core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001141_hash = {
 +	.next	= NULL,
 +	.name	= "rndis_add_response",
 +	.file	= "drivers/usb/gadget/rndis.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001142_hash = {
 +	.next	= NULL,
 +	.name	= "rng_dev_read",
 +	.file	= "drivers/char/hw_random/core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001143_hash = {
 +	.next	= NULL,
 +	.name	= "roccat_common_receive",
 +	.file	= "drivers/hid/hid-roccat-common.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001144_hash = {
 +	.next	= NULL,
 +	.name	= "roccat_common_send",
 +	.file	= "drivers/hid/hid-roccat-common.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001145_hash = {
 +	.next	= NULL,
 +	.name	= "roccat_read",
 +	.file	= "drivers/hid/hid-roccat.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001146_hash = {
 +	.next	= NULL,
 +	.name	= "rpc_malloc",
 +	.file	= "include/linux/sunrpc/sched.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001147_hash = {
 +	.next	= NULL,
 +	.name	= "rs_sta_dbgfs_rate_scale_data_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-agn-rs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001148_hash = {
 +	.next	= NULL,
 +	.name	= "rs_sta_dbgfs_scale_table_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-agn-rs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001149_hash = {
 +	.next	= NULL,
 +	.name	= "rs_sta_dbgfs_stats_table_read",
 +	.file	= "drivers/net/wireless/iwlwifi/iwl-agn-rs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001150_hash = {
 +	.next	= NULL,
 +	.name	= "rt2x00debug_write_bbp",
 +	.file	= "drivers/net/wireless/rt2x00/rt2x00debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001151_hash = {
 +	.next	= NULL,
 +	.name	= "rt2x00debug_write_csr",
 +	.file	= "drivers/net/wireless/rt2x00/rt2x00debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001152_hash = {
 +	.next	= &_000808_hash,
 +	.name	= "rt2x00debug_write_eeprom",
 +	.file	= "drivers/net/wireless/rt2x00/rt2x00debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001153_hash = {
 +	.next	= NULL,
 +	.name	= "rt2x00debug_write_rf",
 +	.file	= "drivers/net/wireless/rt2x00/rt2x00debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001154_hash = {
 +	.next	= NULL,
 +	.name	= "rts51x_read_mem",
 +	.file	= "drivers/usb/storage/realtek_cr.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001155_hash = {
 +	.next	= NULL,
 +	.name	= "rts51x_write_mem",
 +	.file	= "drivers/usb/storage/realtek_cr.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001156_hash = {
 +	.next	= NULL,
 +	.name	= "rts_threshold_read",
 +	.file	= "net/wireless/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001157_hash = {
 +	.next	= NULL,
 +	.name	= "rx_dropped_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001158_hash = {
 +	.next	= NULL,
 +	.name	= "rx_fcs_err_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001159_hash = {
 +	.next	= NULL,
 +	.name	= "rx_hdr_overflow_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001160_hash = {
 +	.next	= NULL,
 +	.name	= "rx_hw_stuck_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001161_hash = {
 +	.next	= NULL,
 +	.name	= "rx_out_of_mem_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001162_hash = {
 +	.next	= NULL,
 +	.name	= "rx_path_reset_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001163_hash = {
 +	.next	= NULL,
 +	.name	= "rxpipe_beacon_buffer_thres_host_int_trig_rx_data_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001164_hash = {
 +	.next	= NULL,
 +	.name	= "rxpipe_descr_host_int_trig_rx_data_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001165_hash = {
 +	.next	= NULL,
 +	.name	= "rxpipe_missed_beacon_host_int_trig_rx_data_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001166_hash = {
 +	.next	= NULL,
 +	.name	= "rxpipe_rx_prep_beacon_drop_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001167_hash = {
 +	.next	= NULL,
 +	.name	= "rxpipe_tx_xfr_host_int_trig_rx_data_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001168_hash = {
 +	.next	= NULL,
 +	.name	= "rx_reset_counter_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001169_hash = {
 +	.next	= NULL,
 +	.name	= "rx_xfr_hint_trig_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001170_hash = {
 +	.next	= NULL,
 +	.name	= "saa7164_buffer_alloc_user",
 +	.file	= "drivers/media/video/saa7164/saa7164-buffer.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001171_hash = {
 +	.next	= NULL,
 +	.name	= "scsi_execute",
 +	.file	= "include/scsi/scsi_device.h",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001172_hash = {
 +	.next	= NULL,
 +	.name	= "scsi_tgt_copy_sense",
 +	.file	= "drivers/scsi/scsi_tgt_lib.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001173_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_auth_create_key",
 +	.file	= "net/sctp/auth.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001174_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_make_abort_user",
 +	.file	= "include/net/sctp/sm.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001175_hash = {
 +	.next	= NULL,
 +	.name	= "sctpprobe_read",
 +	.file	= "net/sctp/probe.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001176_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_active_key",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001177_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_adaptation_layer",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001178_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_associnfo",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001179_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_auth_chunk",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001180_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_auth_key",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001181_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_autoclose",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001182_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_context",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001183_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_default_send_param",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001184_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_delayed_ack",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001185_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_del_key",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001186_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_events",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001187_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_hmac_ident",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001188_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_initmsg",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001189_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_maxburst",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001190_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_maxseg",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001191_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_peer_addr_params",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001192_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_peer_primary_addr",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001193_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt_rtoinfo",
 +	.file	= "net/sctp/socket.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001194_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_tsnmap_init",
 +	.file	= "include/net/sctp/tsnmap.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001195_hash = {
 +	.next	= NULL,
 +	.name	= "send_control_msg",
 +	.file	= "drivers/media/video/zr364xx.c",
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _001196_hash = {
 +	.next	= NULL,
 +	.name	= "set_aoe_iflist",
 +	.file	= "drivers/block/aoe/aoenet.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001197_hash = {
 +	.next	= NULL,
 +	.name	= "set_registers",
 +	.file	= "drivers/net/usb/pegasus.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001198_hash = {
 +	.next	= NULL,
 +	.name	= "setsockopt",
 +	.file	= "net/caif/caif_socket.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001199_hash = {
 +	.next	= NULL,
 +	.name	= "setup_req",
 +	.file	= "drivers/usb/gadget/inode.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001200_hash = {
 +	.next	= NULL,
 +	.name	= "sfq_alloc",
 +	.file	= "net/sched/sch_sfq.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001201_hash = {
 +	.next	= NULL,
 +	.name	= "sgl_map_user_pages",
 +	.file	= "drivers/scsi/st.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001202_hash = {
 +	.next	= NULL,
 +	.name	= "short_retry_limit_read",
 +	.file	= "net/wireless/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001203_hash = {
 +	.next	= NULL,
 +	.name	= "sm501_create_subdev",
@@ -89493,490 +87325,420 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001205_hash = {
 +	.next	= NULL,
 +	.name	= "sn9c102_read",
 +	.file	= "drivers/media/video/sn9c102/sn9c102_core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001206_hash = {
 +	.next	= NULL,
 +	.name	= "snd_ac97_pcm_assign",
 +	.file	= "include/sound/ac97_codec.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001207_hash = {
 +	.next	= NULL,
 +	.name	= "snd_ctl_elem_user_tlv",
 +	.file	= "sound/core/control.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001208_hash = {
 +	.next	= NULL,
 +	.name	= "snd_emu10k1_fx8010_read",
 +	.file	= "sound/pci/emu10k1/emuproc.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001209_hash = {
 +	.next	= NULL,
 +	.name	= "snd_es1938_capture_copy",
 +	.file	= "sound/pci/es1938.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001210_hash = {
 +	.next	= NULL,
 +	.name	= "snd_gus_dram_peek",
 +	.file	= "sound/isa/gus/gus_dram.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001211_hash = {
 +	.next	= NULL,
 +	.name	= "snd_gus_dram_poke",
 +	.file	= "sound/isa/gus/gus_dram.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001212_hash = {
 +	.next	= NULL,
 +	.name	= "snd_hdsp_capture_copy",
 +	.file	= "sound/pci/rme9652/hdsp.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001213_hash = {
 +	.next	= NULL,
 +	.name	= "snd_hdsp_playback_copy",
 +	.file	= "sound/pci/rme9652/hdsp.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001214_hash = {
 +	.next	= NULL,
 +	.name	= "snd_info_entry_write",
 +	.file	= "sound/core/info.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001215_hash = {
 +	.next	= NULL,
 +	.name	= "snd_opl4_mem_proc_read",
 +	.file	= "sound/drivers/opl4/opl4_proc.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001216_hash = {
 +	.next	= NULL,
 +	.name	= "snd_opl4_mem_proc_write",
 +	.file	= "sound/drivers/opl4/opl4_proc.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001217_hash = {
 +	.next	= NULL,
 +	.name	= "snd_pcm_aio_read",
 +	.file	= "sound/core/pcm_native.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001218_hash = {
 +	.next	= NULL,
 +	.name	= "snd_pcm_aio_write",
 +	.file	= "sound/core/pcm_native.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001219_hash = {
 +	.next	= NULL,
 +	.name	= "snd_pcm_alloc_vmalloc_buffer",
 +	.file	= "drivers/media/video/cx231xx/cx231xx-audio.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001220_hash = {
 +	.next	= NULL,
 +	.name	= "snd_pcm_alloc_vmalloc_buffer",
 +	.file	= "drivers/media/video/cx18/cx18-alsa-pcm.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001221_hash = {
 +	.next	= NULL,
 +	.name	= "snd_pcm_alloc_vmalloc_buffer",
 +	.file	= "drivers/media/video/em28xx/em28xx-audio.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001222_hash = {
 +	.next	= NULL,
 +	.name	= "_snd_pcm_lib_alloc_vmalloc_buffer",
 +	.file	= "include/sound/pcm.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001223_hash = {
 +	.next	= NULL,
 +	.name	= "snd_pcm_oss_read1",
 +	.file	= "sound/core/oss/pcm_oss.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001224_hash = {
 +	.next	= NULL,
 +	.name	= "snd_pcm_oss_write1",
 +	.file	= "sound/core/oss/pcm_oss.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001225_hash = {
 +	.next	= NULL,
 +	.name	= "snd_pcm_oss_write2",
 +	.file	= "sound/core/oss/pcm_oss.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001226_hash = {
 +	.next	= NULL,
 +	.name	= "snd_pcm_plugin_build",
 +	.file	= "sound/core/oss/pcm_plugin.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001227_hash = {
 +	.next	= NULL,
 +	.name	= "snd_rme9652_capture_copy",
 +	.file	= "sound/pci/rme9652/rme9652.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001228_hash = {
 +	.next	= NULL,
 +	.name	= "snd_rme9652_playback_copy",
 +	.file	= "sound/pci/rme9652/rme9652.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001229_hash = {
 +	.next	= NULL,
 +	.name	= "snd_soc_hw_bulk_write_raw",
 +	.file	= "sound/soc/soc-io.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001230_hash = {
 +	.next	= NULL,
 +	.name	= "snd_usb_ctl_msg",
 +	.file	= "sound/usb/helper.c",
 +	.param8	= 1,
 +};
-+
 +struct size_overflow_hash _001231_hash = {
 +	.next	= NULL,
 +	.name	= "_sp2d_alloc",
 +	.file	= "fs/exofs/ore_raid.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001232_hash = {
 +	.next	= NULL,
 +	.name	= "spidev_message",
 +	.file	= "drivers/spi/spidev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001233_hash = {
 +	.next	= NULL,
 +	.name	= "spidev_write",
 +	.file	= "drivers/spi/spidev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001234_hash = {
 +	.next	= NULL,
 +	.name	= "spi_show_regs",
 +	.file	= "drivers/spi/spi-dw.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001235_hash = {
 +	.next	= NULL,
 +	.name	= "srp_alloc_iu",
 +	.file	= "drivers/infiniband/ulp/srp/ib_srp.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001236_hash = {
 +	.next	= NULL,
 +	.name	= "srp_iu_pool_alloc",
 +	.file	= "drivers/scsi/libsrp.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001237_hash = {
 +	.next	= NULL,
 +	.name	= "srp_ring_alloc",
 +	.file	= "drivers/scsi/libsrp.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001238_hash = {
 +	.next	= NULL,
 +	.name	= "sta_agg_status_read",
 +	.file	= "net/mac80211/debugfs_sta.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001239_hash = {
 +	.next	= NULL,
 +	.name	= "sta_agg_status_write",
 +	.file	= "net/mac80211/debugfs_sta.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001240_hash = {
 +	.next	= NULL,
 +	.name	= "sta_connected_time_read",
 +	.file	= "net/mac80211/debugfs_sta.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001241_hash = {
 +	.next	= NULL,
 +	.name	= "sta_flags_read",
 +	.file	= "net/mac80211/debugfs_sta.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001242_hash = {
 +	.next	= NULL,
 +	.name	= "sta_ht_capa_read",
 +	.file	= "net/mac80211/debugfs_sta.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001243_hash = {
 +	.next	= NULL,
 +	.name	= "sta_last_seq_ctrl_read",
 +	.file	= "net/mac80211/debugfs_sta.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001244_hash = {
 +	.next	= NULL,
 +	.name	= "sta_num_ps_buf_frames_read",
 +	.file	= "net/mac80211/debugfs_sta.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001245_hash = {
 +	.next	= NULL,
 +	.name	= "stk_prepare_sio_buffers",
 +	.file	= "drivers/media/video/stk-webcam.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001246_hash = {
 +	.next	= NULL,
 +	.name	= "store_iwmct_log_level",
 +	.file	= "drivers/misc/iwmc3200top/log.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001247_hash = {
 +	.next	= NULL,
 +	.name	= "store_iwmct_log_level_fw",
 +	.file	= "drivers/misc/iwmc3200top/log.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001248_hash = {
 +	.next	= NULL,
 +	.name	= "str_to_user",
 +	.file	= "drivers/input/evdev.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001249_hash = {
 +	.next	= NULL,
 +	.name	= "svc_pool_map_alloc_arrays",
 +	.file	= "net/sunrpc/svc.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001250_hash = {
 +	.next	= NULL,
 +	.name	= "svc_setsockopt",
 +	.file	= "net/atm/svc.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001251_hash = {
 +	.next	= NULL,
 +	.name	= "t4_alloc_mem",
 +	.file	= "drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001252_hash = {
 +	.next	= NULL,
 +	.name	= "tda10048_writeregbulk",
 +	.file	= "drivers/media/dvb/frontends/tda10048.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001253_hash = {
 +	.next	= NULL,
 +	.name	= "__team_options_register",
 +	.file	= "drivers/net/team/team.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001254_hash = {
 +	.next	= NULL,
 +	.name	= "tifm_alloc_adapter",
 +	.file	= "include/linux/tifm.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001255_hash = {
 +	.next	= NULL,
 +	.name	= "tipc_subseq_alloc",
 +	.file	= "net/tipc/name_table.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001256_hash = {
 +	.next	= NULL,
 +	.name	= "tm6000_read_write_usb",
 +	.file	= "drivers/media/video/tm6000/tm6000-core.c",
 +	.param7	= 1,
 +};
-+
 +struct size_overflow_hash _001257_hash = {
 +	.next	= NULL,
 +	.name	= "tower_write",
 +	.file	= "drivers/usb/misc/legousbtower.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001258_hash = {
 +	.next	= NULL,
 +	.name	= "trusted_instantiate",
 +	.file	= "security/keys/trusted.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001259_hash = {
 +	.next	= NULL,
 +	.name	= "trusted_update",
 +	.file	= "security/keys/trusted.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001260_hash = {
 +	.next	= NULL,
 +	.name	= "TSS_rawhmac",
 +	.file	= "security/keys/trusted.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001261_hash = {
 +	.next	= NULL,
 +	.name	= "tx_internal_desc_overflow_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001262_hash = {
 +	.next	= NULL,
 +	.name	= "tx_queue_len_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001263_hash = {
 +	.next	= NULL,
 +	.name	= "tx_queue_len_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001264_hash = {
 +	.next	= NULL,
 +	.name	= "tx_queue_status_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001265_hash = {
 +	.next	= NULL,
 +	.name	= "udf_alloc_i_data",
 +	.file	= "fs/udf/inode.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001266_hash = {
 +	.next	= NULL,
 +	.name	= "udf_sb_alloc_partition_maps",
 +	.file	= "fs/udf/super.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001267_hash = {
 +	.next	= NULL,
 +	.name	= "uea_idma_write",
 +	.file	= "drivers/usb/atm/ueagle-atm.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001268_hash = {
 +	.next	= NULL,
 +	.name	= "uea_request",
 +	.file	= "drivers/usb/atm/ueagle-atm.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001269_hash = {
 +	.next	= NULL,
 +	.name	= "uea_send_modem_cmd",
 +	.file	= "drivers/usb/atm/ueagle-atm.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001270_hash = {
 +	.next	= NULL,
 +	.name	= "uhci_debug_read",
 +	.file	= "drivers/usb/host/uhci-debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001271_hash = {
 +	.next	= NULL,
 +	.name	= "uio_read",
 +	.file	= "drivers/uio/uio.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001272_hash = {
 +	.next	= NULL,
 +	.name	= "uio_write",
 +	.file	= "drivers/uio/uio.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001273_hash = {
 +	.next	= NULL,
 +	.name	= "um_idi_write",
 +	.file	= "drivers/isdn/hardware/eicon/divasi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001274_hash = {
 +	.next	= NULL,
 +	.name	= "unlink_queued",
@@ -89984,35 +87746,30 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001275_hash = {
 +	.next	= NULL,
 +	.name	= "us122l_ctl_msg",
 +	.file	= "sound/usb/usx2y/us122l.c",
 +	.param8	= 1,
 +};
-+
 +struct size_overflow_hash _001276_hash = {
 +	.next	= NULL,
 +	.name	= "usbdev_read",
 +	.file	= "drivers/usb/core/devio.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001277_hash = {
 +	.next	= NULL,
 +	.name	= "usblp_read",
 +	.file	= "drivers/usb/class/usblp.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001278_hash = {
 +	.next	= NULL,
 +	.name	= "usblp_write",
 +	.file	= "drivers/usb/class/usblp.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001279_hash = {
 +	.next	= NULL,
 +	.name	= "usbtest_alloc_urb",
@@ -90020,154 +87777,132 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001281_hash = {
 +	.next	= NULL,
 +	.name	= "usbtmc_read",
 +	.file	= "drivers/usb/class/usbtmc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001282_hash = {
 +	.next	= NULL,
 +	.name	= "usbtmc_write",
 +	.file	= "drivers/usb/class/usbtmc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001283_hash = {
 +	.next	= NULL,
 +	.name	= "usbvision_v4l2_read",
 +	.file	= "drivers/media/video/usbvision/usbvision-video.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001284_hash = {
 +	.next	= NULL,
 +	.name	= "uvc_alloc_buffers",
 +	.file	= "drivers/usb/gadget/uvc_queue.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001285_hash = {
 +	.next	= NULL,
 +	.name	= "uvc_alloc_entity",
 +	.file	= "drivers/media/video/uvc/uvc_driver.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001286_hash = {
 +	.next	= NULL,
 +	.name	= "uvc_debugfs_stats_read",
 +	.file	= "drivers/media/video/uvc/uvc_debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001287_hash = {
 +	.next	= NULL,
 +	.name	= "uvc_simplify_fraction",
 +	.file	= "drivers/media/video/uvc/uvc_driver.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001288_hash = {
 +	.next	= NULL,
 +	.name	= "uwb_rc_neh_grok_event",
 +	.file	= "drivers/uwb/neh.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001289_hash = {
 +	.next	= NULL,
 +	.name	= "v4l2_event_subscribe",
 +	.file	= "include/media/v4l2-event.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001290_hash = {
 +	.next	= NULL,
 +	.name	= "v4l_stk_read",
 +	.file	= "drivers/media/video/stk-webcam.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001291_hash = {
 +	.next	= NULL,
 +	.name	= "__vb2_perform_fileio",
 +	.file	= "drivers/media/video/videobuf2-core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001292_hash = {
 +	.next	= NULL,
 +	.name	= "vdma_mem_alloc",
 +	.file	= "arch/x86/include/asm/floppy.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001293_hash = {
 +	.next	= NULL,
 +	.name	= "vfd_write",
 +	.file	= "drivers/media/rc/imon.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001294_hash = {
 +	.next	= NULL,
 +	.name	= "vhci_get_user",
 +	.file	= "drivers/bluetooth/hci_vhci.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001295_hash = {
 +	.next	= NULL,
 +	.name	= "__vhost_add_used_n",
 +	.file	= "drivers/vhost/vhost.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001296_hash = {
 +	.next	= NULL,
 +	.name	= "__videobuf_alloc_vb",
 +	.file	= "drivers/media/video/videobuf-dma-sg.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001297_hash = {
 +	.next	= NULL,
 +	.name	= "__videobuf_alloc_vb",
 +	.file	= "drivers/media/video/videobuf-dma-contig.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001298_hash = {
 +	.next	= NULL,
 +	.name	= "__videobuf_alloc_vb",
 +	.file	= "drivers/media/video/videobuf-vmalloc.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001299_hash = {
 +	.next	= NULL,
 +	.name	= "__videobuf_copy_to_user",
 +	.file	= "drivers/media/video/videobuf-core.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001300_hash = {
 +	.next	= NULL,
 +	.name	= "video_proc_write",
 +	.file	= "drivers/platform/x86/toshiba_acpi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001301_hash = {
 +	.next	= NULL,
 +	.name	= "vifs_state_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001302_hash = {
 +	.next	= NULL,
 +	.name	= "vlsi_alloc_ring",
@@ -90175,21 +87910,18 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001304_hash = {
 +	.next	= NULL,
 +	.name	= "vol_cdev_direct_write",
 +	.file	= "drivers/mtd/ubi/cdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001305_hash = {
 +	.next	= NULL,
 +	.name	= "vol_cdev_read",
 +	.file	= "drivers/mtd/ubi/cdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001306_hash = {
 +	.next	= NULL,
 +	.name	= "vring_add_indirect",
@@ -90197,322 +87929,276 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001308_hash = {
 +	.next	= NULL,
 +	.name	= "vring_new_virtqueue",
 +	.file	= "include/linux/virtio_ring.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001309_hash = {
 +	.next	= NULL,
 +	.name	= "__vxge_hw_channel_allocate",
 +	.file	= "drivers/net/ethernet/neterion/vxge/vxge-config.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001310_hash = {
 +	.next	= NULL,
 +	.name	= "vxge_os_dma_malloc",
 +	.file	= "drivers/net/ethernet/neterion/vxge/vxge-config.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001311_hash = {
 +	.next	= NULL,
 +	.name	= "vxge_os_dma_malloc_async",
 +	.file	= "drivers/net/ethernet/neterion/vxge/vxge-config.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001312_hash = {
 +	.next	= NULL,
 +	.name	= "w9966_v4l_read",
 +	.file	= "drivers/media/video/w9966.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001313_hash = {
 +	.next	= NULL,
 +	.name	= "waiters_read",
 +	.file	= "fs/dlm/debug_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001314_hash = {
 +	.next	= NULL,
 +	.name	= "wa_nep_queue",
 +	.file	= "drivers/usb/wusbcore/wa-nep.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001315_hash = {
 +	.next	= NULL,
 +	.name	= "__wa_xfer_setup_segs",
 +	.file	= "drivers/usb/wusbcore/wa-xfer.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001316_hash = {
 +	.next	= NULL,
 +	.name	= "wdm_read",
 +	.file	= "drivers/usb/class/cdc-wdm.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001317_hash = {
 +	.next	= NULL,
 +	.name	= "wdm_write",
 +	.file	= "drivers/usb/class/cdc-wdm.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001318_hash = {
 +	.next	= NULL,
 +	.name	= "wep_addr_key_count_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001319_hash = {
 +	.next	= &_000480_hash,
 +	.name	= "wep_decrypt_fail_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001320_hash = {
 +	.next	= NULL,
 +	.name	= "wep_default_key_count_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001321_hash = {
 +	.next	= NULL,
 +	.name	= "wep_interrupt_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001322_hash = {
 +	.next	= NULL,
 +	.name	= "wep_key_not_found_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001323_hash = {
 +	.next	= NULL,
 +	.name	= "wep_packets_read",
 +	.file	= "drivers/net/wireless/wl1251/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001324_hash = {
 +	.next	= NULL,
 +	.name	= "wiimote_hid_send",
 +	.file	= "drivers/hid/hid-wiimote-core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001325_hash = {
 +	.next	= NULL,
 +	.name	= "wl1271_format_buffer",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001326_hash = {
 +	.next	= NULL,
 +	.name	= "wl1273_fm_fops_write",
 +	.file	= "drivers/media/radio/radio-wl1273.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001327_hash = {
 +	.next	= NULL,
 +	.name	= "wlc_phy_loadsampletable_nphy",
 +	.file	= "drivers/net/wireless/brcm80211/brcmsmac/phy/phy_n.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001328_hash = {
 +	.next	= NULL,
 +	.name	= "wpan_phy_alloc",
 +	.file	= "include/net/wpan-phy.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001329_hash = {
 +	.next	= NULL,
 +	.name	= "write_flush",
 +	.file	= "net/sunrpc/cache.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001330_hash = {
 +	.next	= NULL,
 +	.name	= "write_rio",
 +	.file	= "drivers/usb/misc/rio500.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001331_hash = {
 +	.next	= NULL,
 +	.name	= "wusb_ccm_mac",
 +	.file	= "drivers/usb/wusbcore/crypto.c",
 +	.param7	= 1,
 +};
-+
 +struct size_overflow_hash _001332_hash = {
 +	.next	= NULL,
 +	.name	= "xfs_attrmulti_attr_set",
 +	.file	= "fs/xfs/xfs_ioctl.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001333_hash = {
 +	.next	= NULL,
 +	.name	= "xfs_handle_to_dentry",
 +	.file	= "fs/xfs/xfs_ioctl.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001334_hash = {
 +	.next	= NULL,
 +	.name	= "xhci_alloc_stream_info",
 +	.file	= "drivers/usb/host/xhci-mem.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001335_hash = {
 +	.next	= NULL,
 +	.name	= "xprt_alloc",
 +	.file	= "include/linux/sunrpc/xprt.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001336_hash = {
 +	.next	= NULL,
 +	.name	= "xprt_rdma_allocate",
 +	.file	= "net/sunrpc/xprtrdma/transport.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001337_hash = {
 +	.next	= NULL,
 +	.name	= "xt_alloc_table_info",
 +	.file	= "include/linux/netfilter/x_tables.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001338_hash = {
 +	.next	= NULL,
 +	.name	= "zd_usb_iowrite16v_async",
 +	.file	= "drivers/net/wireless/zd1211rw/zd_usb.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001339_hash = {
 +	.next	= NULL,
 +	.name	= "zd_usb_read_fw",
 +	.file	= "drivers/net/wireless/zd1211rw/zd_usb.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001340_hash = {
 +	.next	= NULL,
 +	.name	= "zoran_write",
 +	.file	= "drivers/media/video/zoran/zoran_procfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001341_hash = {
 +	.next	= NULL,
 +	.name	= "ad7879_spi_multi_read",
 +	.file	= "drivers/input/touchscreen/ad7879-spi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001342_hash = {
 +	.next	= NULL,
 +	.name	= "aes_decrypt_fail_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001343_hash = {
 +	.next	= NULL,
 +	.name	= "aes_decrypt_interrupt_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001344_hash = {
 +	.next	= NULL,
 +	.name	= "aes_decrypt_packets_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001345_hash = {
 +	.next	= NULL,
 +	.name	= "aes_encrypt_fail_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001346_hash = {
 +	.next	= NULL,
 +	.name	= "aes_encrypt_interrupt_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001347_hash = {
 +	.next	= NULL,
 +	.name	= "aes_encrypt_packets_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001348_hash = {
 +	.next	= NULL,
 +	.name	= "afs_cell_create",
 +	.file	= "fs/afs/cell.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001349_hash = {
 +	.next	= NULL,
 +	.name	= "agp_create_user_memory",
 +	.file	= "drivers/char/agp/generic.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001350_hash = {
 +	.next	= NULL,
 +	.name	= "alg_setsockopt",
 +	.file	= "crypto/af_alg.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001351_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_targets",
 +	.file	= "drivers/md/dm-table.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001352_hash = {
 +	.next	= NULL,
 +	.name	= "aoechr_write",
 +	.file	= "drivers/block/aoe/aoechr.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001353_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_cfg80211_connect_event",
@@ -90521,91 +88207,78 @@ index 0000000..ce7366b
 +	.param9	= 1,
 +	.param8	= 1,
 +};
-+
 +struct size_overflow_hash _001356_hash = {
 +	.next	= NULL,
 +	.name	= "ath6kl_mgmt_tx",
 +	.file	= "drivers/net/wireless/ath/ath6kl/cfg80211.c",
 +	.param9	= 1,
 +};
-+
 +struct size_overflow_hash _001357_hash = {
 +	.next	= NULL,
 +	.name	= "atomic_read_file",
 +	.file	= "arch/x86/oprofile/../../../drivers/oprofile/oprofilefs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001358_hash = {
 +	.next	= NULL,
 +	.name	= "beacon_interval_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001359_hash = {
 +	.next	= NULL,
 +	.name	= "bm_entry_write",
 +	.file	= "fs/binfmt_misc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001360_hash = {
 +	.next	= NULL,
 +	.name	= "bm_init",
 +	.file	= "lib/ts_bm.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001361_hash = {
 +	.next	= NULL,
 +	.name	= "bm_register_write",
 +	.file	= "fs/binfmt_misc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001362_hash = {
 +	.next	= NULL,
 +	.name	= "bm_status_write",
 +	.file	= "fs/binfmt_misc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001363_hash = {
 +	.next	= NULL,
 +	.name	= "brn_proc_write",
 +	.file	= "drivers/platform/x86/asus_acpi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001364_hash = {
 +	.next	= NULL,
 +	.name	= "btrfs_map_block",
 +	.file	= "fs/btrfs/volumes.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001365_hash = {
 +	.next	= NULL,
 +	.name	= "cache_downcall",
 +	.file	= "net/sunrpc/cache.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001366_hash = {
 +	.next	= NULL,
 +	.name	= "cache_slow_downcall",
 +	.file	= "net/sunrpc/cache.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001367_hash = {
 +	.next	= NULL,
 +	.name	= "ceph_dns_resolve_name",
 +	.file	= "net/ceph/messenger.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001368_hash = {
 +	.next	= NULL,
 +	.name	= "cfg80211_roamed",
@@ -90613,749 +88286,642 @@ index 0000000..ce7366b
 +	.param5	= 1,
 +	.param7	= 1,
 +};
-+
 +struct size_overflow_hash _001370_hash = {
 +	.next	= NULL,
 +	.name	= "cifs_readv_from_socket",
 +	.file	= "fs/cifs/connect.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001371_hash = {
 +	.next	= NULL,
 +	.name	= "configfs_write_file",
 +	.file	= "fs/configfs/file.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001372_hash = {
 +	.next	= &_001370_hash,
 +	.name	= "cpu_type_read",
 +	.file	= "arch/x86/oprofile/../../../drivers/oprofile/oprofile_files.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001373_hash = {
 +	.next	= NULL,
 +	.name	= "cx18_copy_mdl_to_user",
 +	.file	= "drivers/media/video/cx18/cx18-fileops.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001374_hash = {
 +	.next	= NULL,
 +	.name	= "cxgbi_ddp_reserve",
 +	.file	= "drivers/scsi/cxgbi/libcxgbi.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001375_hash = {
 +	.next	= NULL,
 +	.name	= "cxgbi_device_portmap_create",
 +	.file	= "drivers/scsi/cxgbi/libcxgbi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001376_hash = {
 +	.next	= NULL,
 +	.name	= "datablob_hmac_append",
 +	.file	= "security/keys/encrypted-keys/encrypted.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001377_hash = {
 +	.next	= NULL,
 +	.name	= "datablob_hmac_verify",
 +	.file	= "security/keys/encrypted-keys/encrypted.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001378_hash = {
 +	.next	= NULL,
 +	.name	= "dataflash_read_fact_otp",
 +	.file	= "drivers/mtd/devices/mtd_dataflash.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001379_hash = {
 +	.next	= NULL,
 +	.name	= "dataflash_read_user_otp",
 +	.file	= "drivers/mtd/devices/mtd_dataflash.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001380_hash = {
 +	.next	= NULL,
 +	.name	= "depth_read",
 +	.file	= "arch/x86/oprofile/../../../drivers/oprofile/oprofile_files.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001381_hash = {
 +	.next	= NULL,
 +	.name	= "depth_write",
 +	.file	= "arch/x86/oprofile/../../../drivers/oprofile/oprofile_files.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001382_hash = {
 +	.next	= NULL,
 +	.name	= "dev_irnet_write",
 +	.file	= "net/irda/irnet/irnet_ppp.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001383_hash = {
 +	.next	= NULL,
 +	.name	= "dev_write",
 +	.file	= "sound/oss/msnd_pinnacle.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001384_hash = {
 +	.next	= NULL,
 +	.name	= "dfs_file_read",
 +	.file	= "fs/ubifs/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001385_hash = {
 +	.next	= NULL,
 +	.name	= "dfs_file_write",
 +	.file	= "fs/ubifs/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001386_hash = {
 +	.next	= NULL,
 +	.name	= "dfs_global_file_read",
 +	.file	= "fs/ubifs/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001387_hash = {
 +	.next	= NULL,
 +	.name	= "dfs_global_file_write",
 +	.file	= "fs/ubifs/debug.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001388_hash = {
 +	.next	= NULL,
 +	.name	= "disconnect",
 +	.file	= "net/bluetooth/mgmt.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001389_hash = {
 +	.next	= NULL,
 +	.name	= "disp_proc_write",
 +	.file	= "drivers/platform/x86/asus_acpi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001390_hash = {
 +	.next	= NULL,
 +	.name	= "dma_rx_errors_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001391_hash = {
 +	.next	= NULL,
 +	.name	= "dma_rx_requested_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001392_hash = {
 +	.next	= NULL,
 +	.name	= "dma_tx_errors_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001393_hash = {
 +	.next	= NULL,
 +	.name	= "dma_tx_requested_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001394_hash = {
 +	.next	= NULL,
 +	.name	= "dm_exception_table_init",
 +	.file	= "drivers/md/dm-snap.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001395_hash = {
 +	.next	= NULL,
 +	.name	= "do_dccp_setsockopt",
 +	.file	= "net/dccp/proto.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001396_hash = {
 +	.next	= NULL,
 +	.name	= "dtim_interval_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001397_hash = {
 +	.next	= NULL,
 +	.name	= "dvb_audio_write",
 +	.file	= "drivers/media/dvb/ttpci/av7110_av.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001398_hash = {
 +	.next	= NULL,
 +	.name	= "dvb_demux_do_ioctl",
 +	.file	= "drivers/media/dvb/dvb-core/dmxdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001399_hash = {
 +	.next	= NULL,
 +	.name	= "dvb_dvr_do_ioctl",
 +	.file	= "drivers/media/dvb/dvb-core/dmxdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001400_hash = {
 +	.next	= NULL,
 +	.name	= "dvb_video_write",
 +	.file	= "drivers/media/dvb/ttpci/av7110_av.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001401_hash = {
 +	.next	= NULL,
 +	.name	= "ecryptfs_decode_and_decrypt_filename",
 +	.file	= "fs/ecryptfs/crypto.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001402_hash = {
 +	.next	= NULL,
 +	.name	= "ecryptfs_encrypt_and_encode_filename",
 +	.file	= "fs/ecryptfs/crypto.c",
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _001403_hash = {
 +	.next	= NULL,
 +	.name	= "enable_read",
 +	.file	= "arch/x86/oprofile/../../../drivers/oprofile/oprofile_files.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001404_hash = {
 +	.next	= NULL,
 +	.name	= "enable_write",
 +	.file	= "arch/x86/oprofile/../../../drivers/oprofile/oprofile_files.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001405_hash = {
 +	.next	= NULL,
 +	.name	= "event_calibration_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001406_hash = {
 +	.next	= NULL,
 +	.name	= "event_heart_beat_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001407_hash = {
 +	.next	= NULL,
 +	.name	= "event_oom_late_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001408_hash = {
 +	.next	= NULL,
 +	.name	= "event_phy_transmit_error_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001409_hash = {
 +	.next	= NULL,
 +	.name	= "event_rx_mem_empty_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001410_hash = {
 +	.next	= NULL,
 +	.name	= "event_rx_mismatch_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001411_hash = {
 +	.next	= NULL,
 +	.name	= "event_rx_pool_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001412_hash = {
 +	.next	= NULL,
 +	.name	= "event_tx_stuck_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001413_hash = {
 +	.next	= NULL,
 +	.name	= "excessive_retries_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001414_hash = {
 +	.next	= NULL,
 +	.name	= "exofs_read_kern",
 +	.file	= "fs/exofs/super.c",
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _001415_hash = {
 +	.next	= NULL,
 +	.name	= "fallback_on_nodma_alloc",
 +	.file	= "drivers/block/floppy.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001416_hash = {
 +	.next	= NULL,
 +	.name	= "__feat_register_sp",
 +	.file	= "net/dccp/feat.c",
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _001417_hash = {
 +	.next	= NULL,
 +	.name	= "ffs_ep0_write",
 +	.file	= "drivers/usb/gadget/f_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001418_hash = {
 +	.next	= NULL,
 +	.name	= "ffs_epfile_read",
 +	.file	= "drivers/usb/gadget/f_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001419_hash = {
 +	.next	= NULL,
 +	.name	= "ffs_epfile_write",
 +	.file	= "drivers/usb/gadget/f_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001420_hash = {
 +	.next	= NULL,
 +	.name	= "frequency_read",
 +	.file	= "net/mac80211/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001421_hash = {
 +	.next	= NULL,
 +	.name	= "fsm_init",
 +	.file	= "lib/ts_fsm.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001422_hash = {
 +	.next	= NULL,
 +	.name	= "garmin_read_process",
 +	.file	= "drivers/usb/serial/garmin_gps.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001423_hash = {
 +	.next	= NULL,
 +	.name	= "garp_request_join",
 +	.file	= "include/net/garp.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001424_hash = {
 +	.next	= NULL,
 +	.name	= "hcd_alloc_coherent",
 +	.file	= "drivers/usb/core/hcd.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001425_hash = {
 +	.next	= NULL,
 +	.name	= "hci_sock_sendmsg",
 +	.file	= "net/bluetooth/hci_sock.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001426_hash = {
 +	.next	= NULL,
 +	.name	= "__hwahc_op_set_gtk",
 +	.file	= "drivers/usb/host/hwa-hc.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001427_hash = {
 +	.next	= NULL,
 +	.name	= "__hwahc_op_set_ptk",
 +	.file	= "drivers/usb/host/hwa-hc.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001428_hash = {
 +	.next	= NULL,
 +	.name	= "ib_send_cm_drep",
 +	.file	= "include/rdma/ib_cm.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001429_hash = {
 +	.next	= NULL,
 +	.name	= "ib_send_cm_mra",
 +	.file	= "include/rdma/ib_cm.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001430_hash = {
 +	.next	= NULL,
 +	.name	= "ib_send_cm_rtu",
 +	.file	= "include/rdma/ib_cm.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001431_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_bss_info_update",
 +	.file	= "net/mac80211/scan.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001432_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_aid",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001433_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_auto_open_plinks",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001434_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_ave_beacon",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001435_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_bssid",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001436_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_channel_type",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001437_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dot11MeshConfirmTimeout",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001438_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dot11MeshGateAnnouncementProtocol",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001439_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dot11MeshHoldingTimeout",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001440_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dot11MeshHWMPactivePathTimeout",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001441_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dot11MeshHWMPmaxPREQretries",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001442_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dot11MeshHWMPnetDiameterTraversalTime",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001443_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dot11MeshHWMPperrMinInterval",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001444_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dot11MeshHWMPpreqMinInterval",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001445_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dot11MeshHWMPRannInterval",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001446_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dot11MeshHWMPRootMode",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001447_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dot11MeshMaxPeerLinks",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001448_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dot11MeshMaxRetries",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001449_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dot11MeshRetryTimeout",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001450_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dot11MeshTTL",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001451_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dropped_frames_congestion",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001452_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dropped_frames_no_route",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001453_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dropped_frames_ttl",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001454_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_drop_unencrypted",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001455_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_dtim_count",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001456_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_element_ttl",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001457_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_estab_plinks",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001458_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_flags",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001459_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_fwded_frames",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001460_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_fwded_mcast",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001461_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_fwded_unicast",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001462_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_last_beacon",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001463_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_min_discovery_timeout",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001464_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_num_buffered_multicast",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001465_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_num_sta_authorized",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001466_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_num_sta_ps",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001467_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_path_refresh_time",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001468_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_peer",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001469_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_rc_rateidx_mask_2ghz",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001470_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_rc_rateidx_mask_5ghz",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001471_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_smps",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001472_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_state",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001473_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_tkip_mic_test",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001474_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_if_read_tsf",
 +	.file	= "net/mac80211/debugfs_netdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001475_hash = {
 +	.next	= NULL,
 +	.name	= "ieee80211_send_probe_req",
 +	.file	= "net/mac80211/util.c",
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _001476_hash = {
 +	.next	= NULL,
 +	.name	= "init_map_ipmac",
@@ -91363,7 +88929,6 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001478_hash = {
 +	.next	= NULL,
 +	.name	= "init_tid_tabs",
@@ -91372,154 +88937,132 @@ index 0000000..ce7366b
 +	.param4	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001481_hash = {
 +	.next	= NULL,
 +	.name	= "isr_cmd_cmplt_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001482_hash = {
 +	.next	= NULL,
 +	.name	= "isr_commands_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001483_hash = {
 +	.next	= NULL,
 +	.name	= "isr_decrypt_done_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001484_hash = {
 +	.next	= NULL,
 +	.name	= "isr_dma0_done_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001485_hash = {
 +	.next	= NULL,
 +	.name	= "isr_dma1_done_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001486_hash = {
 +	.next	= NULL,
 +	.name	= "isr_fiqs_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001487_hash = {
 +	.next	= NULL,
 +	.name	= "isr_host_acknowledges_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001488_hash = {
 +	.next	= &_001393_hash,
 +	.name	= "isr_hw_pm_mode_changes_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001489_hash = {
 +	.next	= &_001205_hash,
 +	.name	= "isr_irqs_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001490_hash = {
 +	.next	= NULL,
 +	.name	= "isr_low_rssi_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001491_hash = {
 +	.next	= NULL,
 +	.name	= "isr_pci_pm_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001492_hash = {
 +	.next	= NULL,
 +	.name	= "isr_rx_headers_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001493_hash = {
 +	.next	= NULL,
 +	.name	= "isr_rx_mem_overflow_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001494_hash = {
 +	.next	= NULL,
 +	.name	= "isr_rx_procs_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001495_hash = {
 +	.next	= NULL,
 +	.name	= "isr_rx_rdys_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001496_hash = {
 +	.next	= NULL,
 +	.name	= "isr_tx_exch_complete_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001497_hash = {
 +	.next	= NULL,
 +	.name	= "isr_tx_procs_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001498_hash = {
 +	.next	= NULL,
 +	.name	= "isr_wakeups_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001499_hash = {
 +	.next	= NULL,
 +	.name	= "ivtv_read",
 +	.file	= "drivers/media/video/ivtv/ivtv-fileops.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001500_hash = {
 +	.next	= NULL,
 +	.name	= "kmem_realloc",
 +	.file	= "fs/xfs/kmem.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001501_hash = {
 +	.next	= NULL,
 +	.name	= "kmem_zalloc",
 +	.file	= "fs/xfs/kmem.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001502_hash = {
 +	.next	= NULL,
 +	.name	= "kmem_zalloc_greedy",
@@ -91527,63 +89070,55 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001504_hash = {
 +	.next	= NULL,
 +	.name	= "kmp_init",
 +	.file	= "lib/ts_kmp.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001505_hash = {
 +	.next	= NULL,
 +	.name	= "lcd_proc_write",
 +	.file	= "drivers/platform/x86/asus_acpi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001506_hash = {
 +	.next	= NULL,
 +	.name	= "ledd_proc_write",
 +	.file	= "drivers/platform/x86/asus_acpi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001507_hash = {
 +	.next	= NULL,
 +	.name	= "mic_calc_failure_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001508_hash = {
 +	.next	= NULL,
 +	.name	= "mic_rx_pkts_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001509_hash = {
 +	.next	= NULL,
 +	.name	= "nfs4_realloc_slot_table",
 +	.file	= "fs/nfs/nfs4proc.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001510_hash = {
 +	.next	= NULL,
 +	.name	= "nfs_idmap_request_key",
 +	.file	= "fs/nfs/idmap.c",
 +	.param2	= 1,
++	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001511_hash = {
 +	.next	= NULL,
 +	.name	= "nsm_get_handle",
 +	.file	= "include/linux/lockd/lockd.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001512_hash = {
 +	.next	= NULL,
 +	.name	= "ntfs_copy_from_user_iovec",
@@ -91591,644 +89126,552 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _001514_hash = {
 +	.next	= NULL,
 +	.name	= "ntfs_file_buffered_write",
 +	.file	= "fs/ntfs/file.c",
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _001515_hash = {
 +	.next	= NULL,
 +	.name	= "ntfs_malloc_nofs",
 +	.file	= "fs/ntfs/malloc.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001516_hash = {
 +	.next	= NULL,
 +	.name	= "ntfs_malloc_nofs_nofail",
 +	.file	= "fs/ntfs/malloc.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001517_hash = {
 +	.next	= NULL,
 +	.name	= "ocfs2_control_message",
 +	.file	= "fs/ocfs2/stack_user.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001518_hash = {
 +	.next	= NULL,
 +	.name	= "opera1_usb_i2c_msgxfer",
 +	.file	= "drivers/media/dvb/dvb-usb/opera1.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001519_hash = {
 +	.next	= NULL,
 +	.name	= "orinoco_add_extscan_result",
 +	.file	= "drivers/net/wireless/orinoco/scan.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001520_hash = {
 +	.next	= NULL,
 +	.name	= "osd_req_list_collection_objects",
 +	.file	= "include/scsi/osd_initiator.h",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001521_hash = {
 +	.next	= NULL,
 +	.name	= "osd_req_list_partition_objects",
 +	.file	= "include/scsi/osd_initiator.h",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001522_hash = {
 +	.next	= NULL,
 +	.name	= "pair_device",
 +	.file	= "net/bluetooth/mgmt.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001523_hash = {
 +	.next	= NULL,
 +	.name	= "pccard_store_cis",
 +	.file	= "drivers/pcmcia/cistpl.c",
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _001524_hash = {
 +	.next	= NULL,
 +	.name	= "pin_code_reply",
 +	.file	= "net/bluetooth/mgmt.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001525_hash = {
 +	.next	= NULL,
 +	.name	= "play_iframe",
 +	.file	= "drivers/media/dvb/ttpci/av7110_av.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001526_hash = {
 +	.next	= NULL,
 +	.name	= "pointer_size_read",
 +	.file	= "arch/x86/oprofile/../../../drivers/oprofile/oprofile_files.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001527_hash = {
 +	.next	= NULL,
 +	.name	= "power_read",
 +	.file	= "net/mac80211/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001528_hash = {
 +	.next	= NULL,
 +	.name	= "ps_pspoll_max_apturn_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001529_hash = {
 +	.next	= NULL,
 +	.name	= "ps_pspoll_timeouts_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001530_hash = {
 +	.next	= NULL,
 +	.name	= "ps_pspoll_utilization_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001531_hash = {
 +	.next	= NULL,
 +	.name	= "ps_upsd_max_apturn_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001532_hash = {
 +	.next	= NULL,
 +	.name	= "ps_upsd_max_sptime_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001533_hash = {
 +	.next	= NULL,
 +	.name	= "ps_upsd_timeouts_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001534_hash = {
 +	.next	= NULL,
 +	.name	= "ps_upsd_utilization_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001535_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_disable_ps_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001536_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_elp_enter_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001537_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_enable_ps_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001538_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_fix_tsf_ps_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001539_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_missing_bcns_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001540_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_power_save_off_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001541_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_ps_enter_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001542_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_rcvd_awake_beacons_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001543_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_rcvd_beacons_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001544_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_tx_without_ps_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001545_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_tx_with_ps_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001546_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_wake_on_host_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001547_hash = {
 +	.next	= NULL,
 +	.name	= "pwr_wake_on_timer_exp_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001548_hash = {
 +	.next	= NULL,
 +	.name	= "qcam_read",
 +	.file	= "drivers/media/video/c-qcam.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001549_hash = {
 +	.next	= NULL,
 +	.name	= "retry_count_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001550_hash = {
 +	.next	= NULL,
 +	.name	= "rx_dropped_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001551_hash = {
 +	.next	= NULL,
 +	.name	= "rx_fcs_err_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001552_hash = {
 +	.next	= NULL,
 +	.name	= "rx_hdr_overflow_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001553_hash = {
 +	.next	= NULL,
 +	.name	= "rx_hw_stuck_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001554_hash = {
 +	.next	= NULL,
 +	.name	= "rx_out_of_mem_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001555_hash = {
 +	.next	= NULL,
 +	.name	= "rx_path_reset_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001556_hash = {
 +	.next	= NULL,
 +	.name	= "rxpipe_beacon_buffer_thres_host_int_trig_rx_data_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001557_hash = {
 +	.next	= NULL,
 +	.name	= "rxpipe_descr_host_int_trig_rx_data_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001558_hash = {
 +	.next	= NULL,
 +	.name	= "rxpipe_missed_beacon_host_int_trig_rx_data_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001559_hash = {
 +	.next	= NULL,
 +	.name	= "rxpipe_rx_prep_beacon_drop_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001560_hash = {
 +	.next	= NULL,
 +	.name	= "rxpipe_tx_xfr_host_int_trig_rx_data_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001561_hash = {
 +	.next	= NULL,
 +	.name	= "rx_reset_counter_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001562_hash = {
 +	.next	= NULL,
 +	.name	= "rx_streaming_always_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001563_hash = {
 +	.next	= NULL,
 +	.name	= "rx_streaming_interval_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001564_hash = {
 +	.next	= NULL,
 +	.name	= "rx_xfr_hint_trig_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001565_hash = {
 +	.next	= NULL,
 +	.name	= "scsi_execute_req",
 +	.file	= "include/scsi/scsi_device.h",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001566_hash = {
 +	.next	= NULL,
 +	.name	= "scsi_tgt_kspace_exec",
 +	.file	= "drivers/scsi/scsi_tgt_lib.c",
 +	.param8	= 1,
 +};
-+
 +struct size_overflow_hash _001567_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_sendmsg",
 +	.file	= "net/sctp/socket.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001568_hash = {
 +	.next	= NULL,
 +	.name	= "sctp_setsockopt",
 +	.file	= "net/sctp/socket.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001569_hash = {
 +	.next	= NULL,
 +	.name	= "set_connectable",
 +	.file	= "net/bluetooth/mgmt.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001570_hash = {
 +	.next	= NULL,
 +	.name	= "set_discoverable",
 +	.file	= "net/bluetooth/mgmt.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001571_hash = {
 +	.next	= NULL,
 +	.name	= "set_local_name",
 +	.file	= "net/bluetooth/mgmt.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001572_hash = {
 +	.next	= NULL,
 +	.name	= "set_powered",
 +	.file	= "net/bluetooth/mgmt.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001573_hash = {
 +	.next	= NULL,
 +	.name	= "simple_alloc_urb",
 +	.file	= "drivers/usb/misc/usbtest.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001574_hash = {
 +	.next	= NULL,
 +	.name	= "sm_checker_extend",
 +	.file	= "drivers/md/persistent-data/dm-space-map-checker.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001575_hash = {
 +	.next	= NULL,
 +	.name	= "snd_cs4281_BA0_read",
 +	.file	= "sound/pci/cs4281.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001576_hash = {
 +	.next	= NULL,
 +	.name	= "snd_cs4281_BA1_read",
 +	.file	= "sound/pci/cs4281.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001577_hash = {
 +	.next	= NULL,
 +	.name	= "snd_cs46xx_io_read",
 +	.file	= "sound/pci/cs46xx/cs46xx_lib.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001578_hash = {
 +	.next	= NULL,
 +	.name	= "snd_gus_dram_read",
 +	.file	= "include/sound/gus.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001579_hash = {
 +	.next	= NULL,
 +	.name	= "snd_gus_dram_write",
 +	.file	= "include/sound/gus.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001580_hash = {
 +	.next	= NULL,
 +	.name	= "snd_mem_proc_write",
 +	.file	= "sound/core/memalloc.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001581_hash = {
 +	.next	= NULL,
 +	.name	= "snd_pcm_oss_read",
 +	.file	= "sound/core/oss/pcm_oss.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001582_hash = {
 +	.next	= NULL,
 +	.name	= "snd_pcm_oss_sync1",
 +	.file	= "sound/core/oss/pcm_oss.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001583_hash = {
 +	.next	= NULL,
 +	.name	= "snd_pcm_oss_write",
 +	.file	= "sound/core/oss/pcm_oss.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001584_hash = {
 +	.next	= NULL,
 +	.name	= "snd_rme32_capture_copy",
 +	.file	= "sound/pci/rme32.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001585_hash = {
 +	.next	= NULL,
 +	.name	= "snd_rme32_playback_copy",
 +	.file	= "sound/pci/rme32.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001586_hash = {
 +	.next	= NULL,
 +	.name	= "snd_rme96_capture_copy",
 +	.file	= "sound/pci/rme96.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001587_hash = {
 +	.next	= NULL,
 +	.name	= "snd_rme96_playback_copy",
 +	.file	= "sound/pci/rme96.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001588_hash = {
 +	.next	= NULL,
 +	.name	= "spi_execute",
 +	.file	= "drivers/scsi/scsi_transport_spi.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001589_hash = {
 +	.next	= NULL,
 +	.name	= "srp_target_alloc",
 +	.file	= "include/scsi/libsrp.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001590_hash = {
 +	.next	= NULL,
 +	.name	= "stats_dot11ACKFailureCount_read",
 +	.file	= "net/mac80211/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001591_hash = {
 +	.next	= NULL,
 +	.name	= "stats_dot11FCSErrorCount_read",
 +	.file	= "net/mac80211/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001592_hash = {
 +	.next	= NULL,
 +	.name	= "stats_dot11RTSFailureCount_read",
 +	.file	= "net/mac80211/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001593_hash = {
 +	.next	= NULL,
 +	.name	= "stats_dot11RTSSuccessCount_read",
 +	.file	= "net/mac80211/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001594_hash = {
 +	.next	= NULL,
 +	.name	= "stk_allocate_buffers",
 +	.file	= "drivers/media/video/stk-webcam.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001595_hash = {
 +	.next	= NULL,
 +	.name	= "submit_inquiry",
 +	.file	= "drivers/scsi/device_handler/scsi_dh_rdac.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001596_hash = {
 +	.next	= NULL,
 +	.name	= "team_options_register",
 +	.file	= "include/linux/if_team.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001597_hash = {
 +	.next	= NULL,
 +	.name	= "test_unaligned_bulk",
 +	.file	= "drivers/usb/misc/usbtest.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001598_hash = {
 +	.next	= NULL,
 +	.name	= "timeout_read",
 +	.file	= "arch/x86/oprofile/../../../drivers/oprofile/oprofile_files.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001599_hash = {
 +	.next	= NULL,
 +	.name	= "timeout_write",
 +	.file	= "arch/x86/oprofile/../../../drivers/oprofile/oprofile_files.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001600_hash = {
 +	.next	= NULL,
 +	.name	= "tipc_link_send_sections_fast",
 +	.file	= "net/tipc/link.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001601_hash = {
 +	.next	= NULL,
 +	.name	= "total_ps_buffered_read",
 +	.file	= "net/mac80211/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001602_hash = {
 +	.next	= NULL,
 +	.name	= "ts_read",
 +	.file	= "drivers/media/dvb/ddbridge/ddbridge-core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001603_hash = {
 +	.next	= NULL,
 +	.name	= "TSS_authhmac",
 +	.file	= "security/keys/trusted.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001604_hash = {
 +	.next	= NULL,
 +	.name	= "TSS_checkhmac1",
 +	.file	= "security/keys/trusted.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001605_hash = {
 +	.next	= NULL,
 +	.name	= "TSS_checkhmac2",
@@ -92236,84 +89679,72 @@ index 0000000..ce7366b
 +	.param5	= 1,
 +	.param7	= 1,
 +};
-+
 +struct size_overflow_hash _001607_hash = {
 +	.next	= NULL,
 +	.name	= "ts_write",
 +	.file	= "drivers/media/dvb/ddbridge/ddbridge-core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001608_hash = {
 +	.next	= NULL,
 +	.name	= "tx_internal_desc_overflow_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001609_hash = {
 +	.next	= NULL,
 +	.name	= "uapsd_max_sp_len_read",
 +	.file	= "net/mac80211/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001610_hash = {
 +	.next	= NULL,
 +	.name	= "uapsd_queues_read",
 +	.file	= "net/mac80211/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001611_hash = {
 +	.next	= NULL,
 +	.name	= "ulong_read_file",
 +	.file	= "arch/x86/oprofile/../../../drivers/oprofile/oprofilefs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001612_hash = {
 +	.next	= NULL,
 +	.name	= "ulong_write_file",
 +	.file	= "arch/x86/oprofile/../../../drivers/oprofile/oprofilefs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001613_hash = {
 +	.next	= NULL,
 +	.name	= "usb_alloc_coherent",
 +	.file	= "include/linux/usb.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001614_hash = {
 +	.next	= NULL,
 +	.name	= "user_power_read",
 +	.file	= "net/mac80211/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001615_hash = {
 +	.next	= NULL,
 +	.name	= "vb2_read",
 +	.file	= "include/media/videobuf2-core.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001616_hash = {
 +	.next	= NULL,
 +	.name	= "vb2_write",
 +	.file	= "include/media/videobuf2-core.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001617_hash = {
 +	.next	= NULL,
 +	.name	= "vhost_add_used_n",
 +	.file	= "drivers/vhost/vhost.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001618_hash = {
 +	.next	= NULL,
 +	.name	= "virtqueue_add_buf",
@@ -92321,210 +89752,180 @@ index 0000000..ce7366b
 +	.param3	= 1,
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001620_hash = {
 +	.next	= NULL,
 +	.name	= "vmbus_establish_gpadl",
 +	.file	= "include/linux/hyperv.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001621_hash = {
 +	.next	= NULL,
 +	.name	= "wep_addr_key_count_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001622_hash = {
 +	.next	= NULL,
 +	.name	= "wep_decrypt_fail_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001623_hash = {
 +	.next	= NULL,
 +	.name	= "wep_default_key_count_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001624_hash = {
 +	.next	= NULL,
 +	.name	= "wep_interrupt_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001625_hash = {
 +	.next	= NULL,
 +	.name	= "wep_iv_read",
 +	.file	= "net/mac80211/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001626_hash = {
 +	.next	= NULL,
 +	.name	= "wep_key_not_found_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001627_hash = {
 +	.next	= NULL,
 +	.name	= "wep_packets_read",
 +	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001628_hash = {
 +	.next	= NULL,
 +	.name	= "write_led",
 +	.file	= "drivers/platform/x86/asus_acpi.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001629_hash = {
 +	.next	= NULL,
 +	.name	= "wusb_prf",
 +	.file	= "include/linux/usb/wusb.h",
 +	.param7	= 1,
 +};
-+
 +struct size_overflow_hash _001630_hash = {
 +	.next	= NULL,
 +	.name	= "zd_usb_iowrite16v",
 +	.file	= "drivers/net/wireless/zd1211rw/zd_usb.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001631_hash = {
 +	.next	= NULL,
 +	.name	= "afs_cell_lookup",
 +	.file	= "fs/afs/cell.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001632_hash = {
 +	.next	= NULL,
 +	.name	= "agp_generic_alloc_user",
 +	.file	= "drivers/char/agp/generic.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001634_hash = {
 +	.next	= NULL,
 +	.name	= "bluetooth_proc_write",
 +	.file	= "drivers/platform/x86/asus_acpi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001635_hash = {
 +	.next	= NULL,
 +	.name	= "cache_write",
 +	.file	= "net/sunrpc/cache.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001636_hash = {
 +	.next	= NULL,
 +	.name	= "ch_do_scsi",
 +	.file	= "drivers/scsi/ch.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001637_hash = {
 +	.next	= NULL,
 +	.name	= "cx18_read",
 +	.file	= "drivers/media/video/cx18/cx18-fileops.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001638_hash = {
 +	.next	= NULL,
 +	.name	= "dccp_feat_register_sp",
 +	.file	= "net/dccp/feat.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001640_hash = {
 +	.next	= NULL,
 +	.name	= "iso_alloc_urb",
 +	.file	= "drivers/usb/misc/usbtest.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001641_hash = {
 +	.next	= NULL,
 +	.name	= "ivtv_read_pos",
 +	.file	= "drivers/media/video/ivtv/ivtv-fileops.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001642_hash = {
 +	.next	= NULL,
 +	.name	= "mcam_v4l_read",
 +	.file	= "drivers/media/video/marvell-ccic/mcam-core.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001643_hash = {
 +	.next	= NULL,
 +	.name	= "mled_proc_write",
 +	.file	= "drivers/platform/x86/asus_acpi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001644_hash = {
 +	.next	= NULL,
 +	.name	= "nfs_idmap_lookup_id",
 +	.file	= "fs/nfs/idmap.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001645_hash = {
 +	.next	= NULL,
 +	.name	= "ocfs2_control_write",
 +	.file	= "fs/ocfs2/stack_user.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001646_hash = {
 +	.next	= NULL,
 +	.name	= "osd_req_list_dev_partitions",
 +	.file	= "include/scsi/osd_initiator.h",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001647_hash = {
 +	.next	= NULL,
 +	.name	= "osd_req_list_partition_collections",
 +	.file	= "include/scsi/osd_initiator.h",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001648_hash = {
 +	.next	= NULL,
 +	.name	= "pwc_video_read",
 +	.file	= "drivers/media/video/pwc/pwc-if.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001649_hash = {
 +	.next	= NULL,
 +	.name	= "scsi_vpd_inquiry",
 +	.file	= "drivers/scsi/scsi.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001650_hash = {
 +	.next	= NULL,
 +	.name	= "snd_gf1_mem_proc_dump",
 +	.file	= "sound/isa/gus/gus_mem_proc.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001651_hash = {
 +	.next	= NULL,
 +	.name	= "spi_dv_device_echo_buffer",
@@ -92532,35 +89933,30 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001653_hash = {
 +	.next	= NULL,
 +	.name	= "tled_proc_write",
 +	.file	= "drivers/platform/x86/asus_acpi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001655_hash = {
 +	.next	= NULL,
 +	.name	= "usb_allocate_stream_buffers",
 +	.file	= "drivers/media/dvb/dvb-usb/usb-urb.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001656_hash = {
 +	.next	= NULL,
 +	.name	= "_usb_writeN_sync",
 +	.file	= "drivers/net/wireless/rtlwifi/usb.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001657_hash = {
 +	.next	= NULL,
 +	.name	= "vhost_add_used_and_signal_n",
 +	.file	= "drivers/vhost/vhost.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001658_hash = {
 +	.next	= NULL,
 +	.name	= "vmbus_open",
@@ -92568,77 +89964,66 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001660_hash = {
 +	.next	= NULL,
 +	.name	= "wled_proc_write",
 +	.file	= "drivers/platform/x86/asus_acpi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001661_hash = {
 +	.next	= NULL,
 +	.name	= "wusb_prf_256",
 +	.file	= "include/linux/usb/wusb.h",
 +	.param7	= 1,
 +};
-+
 +struct size_overflow_hash _001662_hash = {
 +	.next	= NULL,
 +	.name	= "wusb_prf_64",
 +	.file	= "include/linux/usb/wusb.h",
 +	.param7	= 1,
 +};
-+
 +struct size_overflow_hash _001663_hash = {
 +	.next	= NULL,
 +	.name	= "agp_allocate_memory",
 +	.file	= "include/linux/agp_backend.h",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001664_hash = {
 +	.next	= NULL,
 +	.name	= "cx18_read_pos",
 +	.file	= "drivers/media/video/cx18/cx18-fileops.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001665_hash = {
 +	.next	= NULL,
 +	.name	= "nfs_map_group_to_gid",
 +	.file	= "include/linux/nfs_idmap.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001666_hash = {
 +	.next	= NULL,
 +	.name	= "nfs_map_name_to_uid",
 +	.file	= "include/linux/nfs_idmap.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001667_hash = {
 +	.next	= NULL,
 +	.name	= "test_iso_queue",
 +	.file	= "drivers/usb/misc/usbtest.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001668_hash = {
 +	.next	= NULL,
 +	.name	= "agp_allocate_memory_wrap",
 +	.file	= "drivers/char/agp/frontend.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001669_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_irq_cpu_rmap",
 +	.file	= "include/linux/cpu_rmap.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001670_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_ring",
@@ -92646,273 +90031,234 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001672_hash = {
 +	.next	= &_001124_hash,
 +	.name	= "atomic_counters_read",
 +	.file	= "drivers/infiniband/hw/ipath/ipath_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001673_hash = {
 +	.next	= NULL,
 +	.name	= "atomic_stats_read",
 +	.file	= "drivers/infiniband/hw/ipath/ipath_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001674_hash = {
 +	.next	= NULL,
 +	.name	= "c4iw_init_resource_fifo",
 +	.file	= "drivers/infiniband/hw/cxgb4/resource.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001675_hash = {
 +	.next	= NULL,
 +	.name	= "c4iw_init_resource_fifo_random",
 +	.file	= "drivers/infiniband/hw/cxgb4/resource.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001676_hash = {
 +	.next	= NULL,
 +	.name	= "compat_do_arpt_set_ctl",
 +	.file	= "net/ipv4/netfilter/arp_tables.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001677_hash = {
 +	.next	= NULL,
 +	.name	= "compat_do_ip6t_set_ctl",
 +	.file	= "net/ipv6/netfilter/ip6_tables.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001678_hash = {
 +	.next	= NULL,
 +	.name	= "compat_do_ipt_set_ctl",
 +	.file	= "net/ipv4/netfilter/ip_tables.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001679_hash = {
 +	.next	= NULL,
 +	.name	= "cxio_init_resource_fifo",
 +	.file	= "drivers/infiniband/hw/cxgb3/cxio_resource.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001680_hash = {
 +	.next	= NULL,
 +	.name	= "cxio_init_resource_fifo_random",
 +	.file	= "drivers/infiniband/hw/cxgb3/cxio_resource.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001681_hash = {
 +	.next	= NULL,
 +	.name	= "dev_counters_read",
 +	.file	= "drivers/infiniband/hw/qib/qib_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001682_hash = {
 +	.next	= NULL,
 +	.name	= "dev_names_read",
 +	.file	= "drivers/infiniband/hw/qib/qib_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001683_hash = {
 +	.next	= &_001468_hash,
 +	.name	= "do_arpt_set_ctl",
 +	.file	= "net/ipv4/netfilter/arp_tables.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001684_hash = {
 +	.next	= NULL,
 +	.name	= "do_ip6t_set_ctl",
 +	.file	= "net/ipv6/netfilter/ip6_tables.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001685_hash = {
 +	.next	= NULL,
 +	.name	= "do_ipt_set_ctl",
 +	.file	= "net/ipv4/netfilter/ip_tables.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001686_hash = {
 +	.next	= NULL,
 +	.name	= "drbd_bm_resize",
 +	.file	= "drivers/block/drbd/drbd_bitmap.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001687_hash = {
 +	.next	= NULL,
 +	.name	= "driver_names_read",
 +	.file	= "drivers/infiniband/hw/qib/qib_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001688_hash = {
 +	.next	= NULL,
 +	.name	= "driver_stats_read",
 +	.file	= "drivers/infiniband/hw/qib/qib_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001689_hash = {
 +	.next	= NULL,
 +	.name	= "flash_read",
 +	.file	= "drivers/infiniband/hw/qib/qib_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001690_hash = {
 +	.next	= NULL,
 +	.name	= "flash_read",
 +	.file	= "drivers/infiniband/hw/ipath/ipath_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001691_hash = {
 +	.next	= NULL,
 +	.name	= "flash_write",
 +	.file	= "drivers/infiniband/hw/qib/qib_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001692_hash = {
 +	.next	= NULL,
 +	.name	= "flash_write",
 +	.file	= "drivers/infiniband/hw/ipath/ipath_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001693_hash = {
 +	.next	= NULL,
 +	.name	= "ghash_async_setkey",
 +	.file	= "arch/x86/crypto/ghash-clmulni-intel_glue.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001694_hash = {
 +	.next	= NULL,
 +	.name	= "handle_eviocgbit",
 +	.file	= "drivers/input/evdev.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001695_hash = {
 +	.next	= NULL,
 +	.name	= "hid_parse_report",
 +	.file	= "include/linux/hid.h",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001696_hash = {
 +	.next	= NULL,
 +	.name	= "ipath_get_base_info",
 +	.file	= "drivers/infiniband/hw/ipath/ipath_file_ops.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001697_hash = {
 +	.next	= NULL,
 +	.name	= "options_write",
 +	.file	= "drivers/misc/sgi-gru/gruprocfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001698_hash = {
 +	.next	= NULL,
 +	.name	= "portcntrs_1_read",
 +	.file	= "drivers/infiniband/hw/qib/qib_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001699_hash = {
 +	.next	= NULL,
 +	.name	= "portcntrs_2_read",
 +	.file	= "drivers/infiniband/hw/qib/qib_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001700_hash = {
 +	.next	= NULL,
 +	.name	= "portnames_read",
 +	.file	= "drivers/infiniband/hw/qib/qib_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001701_hash = {
 +	.next	= NULL,
 +	.name	= "qib_alloc_devdata",
 +	.file	= "drivers/infiniband/hw/qib/qib_init.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001702_hash = {
 +	.next	= NULL,
 +	.name	= "qib_diag_write",
 +	.file	= "drivers/infiniband/hw/qib/qib_diag.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001703_hash = {
 +	.next	= NULL,
 +	.name	= "qib_get_base_info",
 +	.file	= "drivers/infiniband/hw/qib/qib_file_ops.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001704_hash = {
 +	.next	= NULL,
 +	.name	= "qsfp_1_read",
 +	.file	= "drivers/infiniband/hw/qib/qib_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001705_hash = {
 +	.next	= NULL,
 +	.name	= "qsfp_2_read",
 +	.file	= "drivers/infiniband/hw/qib/qib_fs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001706_hash = {
 +	.next	= NULL,
 +	.name	= "rfc4106_set_key",
 +	.file	= "arch/x86/crypto/aesni-intel_glue.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001707_hash = {
 +	.next	= &_000258_hash,
 +	.name	= "stats_read_ul",
 +	.file	= "drivers/idle/i7300_idle.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001708_hash = {
 +	.next	= NULL,
 +	.name	= "xpc_kmalloc_cacheline_aligned",
 +	.file	= "drivers/misc/sgi-xp/xpc_partition.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001709_hash = {
 +	.next	= NULL,
 +	.name	= "xpc_kzalloc_cacheline_aligned",
 +	.file	= "drivers/misc/sgi-xp/xpc_main.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001710_hash = {
 +	.next	= NULL,
 +	.name	= "c4iw_init_resource",
@@ -92920,7 +90266,6 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001712_hash = {
 +	.next	= NULL,
 +	.name	= "cxio_hal_init_resource",
@@ -92929,245 +90274,210 @@ index 0000000..ce7366b
 +	.param7	= 1,
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _001715_hash = {
 +	.next	= &_000734_hash,
 +	.name	= "cxio_hal_init_rhdl_resource",
 +	.file	= "drivers/infiniband/hw/cxgb3/cxio_resource.c",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001716_hash = {
 +	.next	= NULL,
 +	.name	= "amthi_read",
 +	.file	= "drivers/staging/mei/iorw.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001717_hash = {
 +	.next	= NULL,
 +	.name	= "bcm_char_read",
 +	.file	= "drivers/staging/bcm/Bcmchar.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001718_hash = {
 +	.next	= NULL,
 +	.name	= "BcmCopySection",
 +	.file	= "drivers/staging/bcm/nvm.c",
 +	.param5	= 1,
 +};
-+
 +struct size_overflow_hash _001719_hash = {
 +	.next	= NULL,
 +	.name	= "buffer_from_user",
 +	.file	= "drivers/staging/vme/devices/vme_user.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001720_hash = {
 +	.next	= NULL,
 +	.name	= "buffer_to_user",
 +	.file	= "drivers/staging/vme/devices/vme_user.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001721_hash = {
 +	.next	= NULL,
 +	.name	= "capabilities_read",
 +	.file	= "drivers/xen/xenfs/super.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001722_hash = {
 +	.next	= NULL,
 +	.name	= "chd_dec_fetch_cdata",
 +	.file	= "drivers/staging/crystalhd/crystalhd_lnx.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001723_hash = {
 +	.next	= NULL,
 +	.name	= "create_bounce_buffer",
 +	.file	= "drivers/staging/hv/storvsc_drv.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001724_hash = {
 +	.next	= NULL,
 +	.name	= "crystalhd_create_dio_pool",
 +	.file	= "drivers/staging/crystalhd/crystalhd_misc.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001725_hash = {
 +	.next	= NULL,
 +	.name	= "do_read_log_to_user",
 +	.file	= "drivers/staging/android/logger.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001726_hash = {
 +	.next	= NULL,
 +	.name	= "do_write_log_from_user",
 +	.file	= "drivers/staging/android/logger.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001727_hash = {
 +	.next	= NULL,
 +	.name	= "dt3155_read",
 +	.file	= "drivers/staging/media/dt3155v4l/dt3155v4l.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001728_hash = {
 +	.next	= NULL,
 +	.name	= "easycap_alsa_vmalloc",
 +	.file	= "drivers/staging/media/easycap/easycap_sound.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001729_hash = {
 +	.next	= NULL,
 +	.name	= "evm_read_key",
 +	.file	= "security/integrity/evm/evm_secfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001730_hash = {
 +	.next	= NULL,
 +	.name	= "evm_write_key",
 +	.file	= "security/integrity/evm/evm_secfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001731_hash = {
 +	.next	= NULL,
 +	.name	= "evtchn_read",
 +	.file	= "drivers/xen/evtchn.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001732_hash = {
 +	.next	= NULL,
 +	.name	= "gather_array",
 +	.file	= "drivers/xen/privcmd.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001733_hash = {
 +	.next	= NULL,
 +	.name	= "gnttab_map",
 +	.file	= "drivers/xen/grant-table.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001734_hash = {
 +	.next	= NULL,
 +	.name	= "iio_read_first_n_kfifo",
 +	.file	= "drivers/staging/iio/kfifo_buf.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001735_hash = {
 +	.next	= NULL,
 +	.name	= "iio_read_first_n_sw_rb",
 +	.file	= "drivers/staging/iio/ring_sw.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001736_hash = {
 +	.next	= NULL,
 +	.name	= "keymap_store",
 +	.file	= "drivers/staging/speakup/kobjects.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001737_hash = {
 +	.next	= NULL,
 +	.name	= "line6_dumpreq_initbuf",
 +	.file	= "drivers/staging/line6/dumprequest.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001738_hash = {
 +	.next	= NULL,
 +	.name	= "lirc_write",
 +	.file	= "drivers/staging/media/lirc/lirc_parallel.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001739_hash = {
 +	.next	= NULL,
 +	.name	= "lirc_write",
 +	.file	= "drivers/staging/media/lirc/lirc_sir.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001740_hash = {
 +	.next	= &_000815_hash,
 +	.name	= "lirc_write",
 +	.file	= "drivers/staging/media/lirc/lirc_serial.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001741_hash = {
 +	.next	= &_001021_hash,
 +	.name	= "_malloc",
 +	.file	= "drivers/staging/rtl8712/osdep_service.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001742_hash = {
 +	.next	= NULL,
 +	.name	= "mei_read",
 +	.file	= "drivers/staging/mei/main.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001743_hash = {
 +	.next	= NULL,
 +	.name	= "mei_write",
 +	.file	= "drivers/staging/mei/main.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001744_hash = {
 +	.next	= NULL,
 +	.name	= "msg_set",
 +	.file	= "drivers/staging/speakup/i18n.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001745_hash = {
 +	.next	= NULL,
 +	.name	= "OS_kmalloc",
 +	.file	= "drivers/staging/cxt1e1/sbecom_inline_linux.h",
 +	.param1	= 1,
 +};
-+
 +struct size_overflow_hash _001746_hash = {
 +	.next	= NULL,
 +	.name	= "queue_reply",
 +	.file	= "drivers/xen/xenbus/xenbus_dev_frontend.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001747_hash = {
 +	.next	= &_000841_hash,
 +	.name	= "resource_from_user",
 +	.file	= "drivers/staging/vme/devices/vme_user.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001748_hash = {
 +	.next	= NULL,
 +	.name	= "sca3000_read_first_n_hw_rb",
 +	.file	= "drivers/staging/iio/accel/sca3000_ring.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001749_hash = {
 +	.next	= NULL,
 +	.name	= "sep_lock_user_pages",
@@ -93175,7 +90485,6 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001751_hash = {
 +	.next	= NULL,
 +	.name	= "sep_prepare_input_output_dma_table_in_dcb",
@@ -93185,91 +90494,78 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001753_hash = {
 +	.next	= NULL,
 +	.name	= "split",
 +	.file	= "drivers/xen/xenbus/xenbus_xs.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001754_hash = {
 +	.next	= NULL,
 +	.name	= "storvsc_connect_to_vsp",
 +	.file	= "drivers/staging/hv/storvsc_drv.c",
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001755_hash = {
 +	.next	= NULL,
 +	.name	= "u32_array_read",
 +	.file	= "arch/x86/xen/debugfs.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001756_hash = {
 +	.next	= NULL,
 +	.name	= "ValidateDSDParamsChecksum",
 +	.file	= "drivers/staging/bcm/led_control.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001757_hash = {
 +	.next	= NULL,
 +	.name	= "vfd_write",
 +	.file	= "drivers/staging/media/lirc/lirc_sasem.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001758_hash = {
 +	.next	= NULL,
 +	.name	= "vfd_write",
 +	.file	= "drivers/staging/media/lirc/lirc_imon.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001759_hash = {
 +	.next	= NULL,
 +	.name	= "Wb35Reg_BurstWrite",
 +	.file	= "drivers/staging/winbond/wb35reg.c",
 +	.param4	= 1,
 +};
-+
 +struct size_overflow_hash _001760_hash = {
 +	.next	= NULL,
 +	.name	= "xenbus_file_write",
 +	.file	= "drivers/xen/xenbus/xenbus_dev_frontend.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001761_hash = {
 +	.next	= NULL,
 +	.name	= "xsd_read",
 +	.file	= "drivers/xen/xenfs/xenstored.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001762_hash = {
 +	.next	= NULL,
 +	.name	= "line6_dumpreq_init",
 +	.file	= "drivers/staging/line6/dumprequest.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001763_hash = {
 +	.next	= NULL,
 +	.name	= "r8712_usbctrl_vendorreq",
 +	.file	= "drivers/staging/rtl8712/usb_ops_linux.c",
 +	.param6	= 1,
 +};
-+
 +struct size_overflow_hash _001764_hash = {
 +	.next	= NULL,
 +	.name	= "r871x_set_wpa_ie",
 +	.file	= "drivers/staging/rtl8712/rtl871x_ioctl_linux.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001765_hash = {
 +	.next	= NULL,
 +	.name	= "sep_prepare_input_dma_table",
@@ -93277,7 +90573,6 @@ index 0000000..ce7366b
 +	.param2	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001767_hash = {
 +	.next	= NULL,
 +	.name	= "sep_prepare_input_output_dma_table",
@@ -93286,14 +90581,12 @@ index 0000000..ce7366b
 +	.param4	= 1,
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001770_hash = {
 +	.next	= NULL,
 +	.name	= "vme_user_write",
 +	.file	= "drivers/staging/vme/devices/vme_user.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash _001771_hash = {
 +	.next	= NULL,
 +	.name	= "alloc_ebda_hpc",
@@ -93301,275 +90594,1051 @@ index 0000000..ce7366b
 +	.param1	= 1,
 +	.param2	= 1,
 +};
-+
 +struct size_overflow_hash _001772_hash = {
 +	.next	= NULL,
++	.name	= "add_uuid",
++	.file	= "net/bluetooth/mgmt.c",
++	.param4	= 1,
++};
++struct size_overflow_hash _001773_hash = {
++	.next	= NULL,
++	.name	= "__alloc_extent_buffer",
++	.file	= "fs/btrfs/extent_io.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001774_hash = {
++	.next	= NULL,
++	.name	= "array_zalloc",
++	.file	= "drivers/target/target_core_tpg.c",
++	.param2	= 1,
++};
++struct size_overflow_hash _001775_hash = {
++	.next	= NULL,
++	.name	= "ath6kl_fwlog_block_read",
++	.file	= "drivers/net/wireless/ath/ath6kl/debug.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001776_hash = {
++	.next	= NULL,
++	.name	= "ath6kl_listen_int_read",
++	.file	= "drivers/net/wireless/ath/ath6kl/debug.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001777_hash = {
++	.next	= NULL,
++	.name	= "ath6kl_mgmt_powersave_ap",
++	.file	= "drivers/net/wireless/ath/ath6kl/cfg80211.c",
++	.param6	= 1,
++};
++struct size_overflow_hash _001778_hash = {
++	.next	= NULL,
++	.name	= "__ath6kl_wmi_send_mgmt_cmd",
++	.file	= "drivers/net/wireless/ath/ath6kl/wmi.c",
++	.param7	= 1,
++};
++struct size_overflow_hash _001779_hash = {
++	.next	= NULL,
++	.name	= "cld_pipe_downcall",
++	.file	= "fs/nfsd/nfs4recover.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001780_hash = {
++	.next	= NULL,
++	.name	= "create_bounce_buffer",
++	.file	= "drivers/scsi/storvsc_drv.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001781_hash = {
++	.next	= NULL,
++	.name	= "dwc3_link_state_write",
++	.file	= "drivers/usb/dwc3/debugfs.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001782_hash = {
++	.next	= NULL,
++	.name	= "dwc3_testmode_write",
++	.file	= "drivers/usb/dwc3/debugfs.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001783_hash = {
++	.next	= NULL,
++	.name	= "dynamic_ps_timeout_read",
++	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001784_hash = {
++	.next	= NULL,
++	.name	= "forced_ps_read",
++	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001785_hash = {
++	.next	= NULL,
++	.name	= "idmap_pipe_downcall",
++	.file	= "fs/nfs/idmap.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001786_hash = {
++	.next	= NULL,
++	.name	= "ieee80211_if_read_rc_rateidx_mcs_mask_2ghz",
++	.file	= "net/mac80211/debugfs_netdev.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001787_hash = {
++	.next	= NULL,
++	.name	= "ieee80211_if_read_rc_rateidx_mcs_mask_5ghz",
++	.file	= "net/mac80211/debugfs_netdev.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001788_hash = {
++	.next	= NULL,
++	.name	= "ieee80211_if_read_rssi_threshold",
++	.file	= "net/mac80211/debugfs_netdev.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001789_hash = {
++	.next	= NULL,
++	.name	= "ieee80211_if_read_uapsd_max_sp_len",
++	.file	= "net/mac80211/debugfs_netdev.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001790_hash = {
++	.next	= NULL,
++	.name	= "ieee80211_if_read_uapsd_queues",
++	.file	= "net/mac80211/debugfs_netdev.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001791_hash = {
++	.next	= NULL,
++	.name	= "irq_domain_add_linear",
++	.file	= "include/linux/irqdomain.h",
++	.param2	= 1,
++};
++struct size_overflow_hash _001792_hash = {
++	.next	= NULL,
++	.name	= "kmalloc_array",
++	.file	= "include/linux/slab.h",
++	.param1	= 1,
++	.param2	= 1,
++};
++struct size_overflow_hash _001794_hash = {
++	.next	= NULL,
++	.name	= "nfc_llcp_send_i_frame",
++	.file	= "net/nfc/llcp/commands.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001797_hash = {
++	.next	= NULL,
++	.name	= "pn533_dep_link_up",
++	.file	= "drivers/nfc/pn533.c",
++	.param5	= 1,
++};
++struct size_overflow_hash _001798_hash = {
++	.next	= NULL,
++	.name	= "port_show_regs",
++	.file	= "drivers/tty/serial/pch_uart.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001799_hash = {
++	.next	= NULL,
++	.name	= "qla4xxx_alloc_work",
++	.file	= "drivers/scsi/qla4xxx/ql4_os.c",
++	.param2	= 1,
++};
++struct size_overflow_hash _001800_hash = {
++	.next	= NULL,
++	.name	= "rbd_add",
++	.file	= "drivers/block/rbd.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001801_hash = {
++	.next	= NULL,
++	.name	= "read_file_reset",
++	.file	= "drivers/net/wireless/ath/ath9k/debug.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001802_hash = {
++	.next	= NULL,
++	.name	= "regmap_bulk_write",
++	.file	= "include/linux/regmap.h",
++	.param4	= 1,
++};
++struct size_overflow_hash _001803_hash = {
++	.next	= NULL,
++	.name	= "regmap_name_read_file",
++	.file	= "drivers/base/regmap/regmap-debugfs.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001804_hash = {
++	.next	= NULL,
++	.name	= "reiserfs_allocate_list_bitmaps",
++	.file	= "fs/reiserfs/journal.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001805_hash = {
++	.next	= NULL,
++	.name	= "reiserfs_resize",
++	.file	= "fs/reiserfs/resize.c",
++	.param2	= 1,
++};
++struct size_overflow_hash _001806_hash = {
++	.next	= NULL,
++	.name	= "remove_uuid",
++	.file	= "net/bluetooth/mgmt.c",
++	.param4	= 1,
++};
++struct size_overflow_hash _001807_hash = {
++	.next	= NULL,
++	.name	= "set_dev_class",
++	.file	= "net/bluetooth/mgmt.c",
++	.param4	= 1,
++};
++struct size_overflow_hash _001808_hash = {
++	.next	= NULL,
++	.name	= "set_le",
++	.file	= "net/bluetooth/mgmt.c",
++	.param4	= 1,
++};
++struct size_overflow_hash _001809_hash = {
++	.next	= NULL,
++	.name	= "set_link_security",
++	.file	= "net/bluetooth/mgmt.c",
++	.param4	= 1,
++};
++struct size_overflow_hash _001810_hash = {
++	.next	= NULL,
++	.name	= "set_ssp",
++	.file	= "net/bluetooth/mgmt.c",
++	.param4	= 1,
++};
++struct size_overflow_hash _001811_hash = {
++	.next	= NULL,
++	.name	= "shmem_setxattr",
++	.file	= "mm/shmem.c",
++	.param4	= 1,
++};
++struct size_overflow_hash _001812_hash = {
++	.next	= NULL,
++	.name	= "shmem_xattr_alloc",
++	.file	= "mm/shmem.c",
++	.param2	= 1,
++};
++struct size_overflow_hash _001813_hash = {
++	.next	= NULL,
++	.name	= "split_scan_timeout_read",
++	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001814_hash = {
++	.next	= NULL,
++	.name	= "storvsc_connect_to_vsp",
++	.file	= "drivers/scsi/storvsc_drv.c",
++	.param2	= 1,
++};
++struct size_overflow_hash _001815_hash = {
++	.next	= NULL,
++	.name	= "suspend_dtim_interval_read",
++	.file	= "drivers/net/wireless/wl12xx/debugfs.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001816_hash = {
++	.next	= NULL,
++	.name	= "alloc_extent_buffer",
++	.file	= "fs/btrfs/extent_io.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001817_hash = {
++	.next	= NULL,
++	.name	= "nfs_idmap_get_key",
++	.file	= "fs/nfs/idmap.c",
++	.param2	= 1,
++};
++struct size_overflow_hash _001818_hash = {
++	.next	= NULL,
++	.name	= "iio_debugfs_read_reg",
++	.file	= "drivers/staging/iio/industrialio-core.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001819_hash = {
++	.next	= NULL,
++	.name	= "iio_debugfs_write_reg",
++	.file	= "drivers/staging/iio/industrialio-core.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001820_hash = {
++	.next	= NULL,
++	.name	= "iio_event_chrdev_read",
++	.file	= "drivers/staging/iio/industrialio-event.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001821_hash = {
++	.next	= NULL,
++	.name	= "sep_create_dcb_dmatables_context",
++	.file	= "drivers/staging/sep/sep_main.c",
++	.param6	= 1,
++};
++struct size_overflow_hash _001822_hash = {
++	.next	= NULL,
++	.name	= "sep_create_dcb_dmatables_context_kernel",
++	.file	= "drivers/staging/sep/sep_main.c",
++	.param6	= 1,
++};
++struct size_overflow_hash _001823_hash = {
++	.next	= NULL,
++	.name	= "sep_create_msgarea_context",
++	.file	= "drivers/staging/sep/sep_main.c",
++	.param4	= 1,
++};
++struct size_overflow_hash _001824_hash = {
++	.next	= NULL,
++	.name	= "sep_lli_table_secure_dma",
++	.file	= "drivers/staging/sep/sep_main.c",
++	.param2	= 1,
++	.param3	= 1,
++};
++struct size_overflow_hash _001826_hash = {
++	.next	= NULL,
++	.name	= "sep_lock_user_pages",
++	.file	= "drivers/staging/sep/sep_main.c",
++	.param2	= 1,
++	.param3	= 1,
++};
++struct size_overflow_hash _001828_hash = {
++	.next	= NULL,
++	.name	= "sep_prepare_input_output_dma_table_in_dcb",
++	.file	= "drivers/staging/sep/sep_main.c",
++	.param4	= 1,
++	.param5	= 1,
++};
++struct size_overflow_hash _001830_hash = {
++	.next	= NULL,
++	.name	= "sep_read",
++	.file	= "drivers/staging/sep/sep_main.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001831_hash = {
++	.next	= NULL,
++	.name	= "alloc_rx_desc_ring",
++	.file	= "drivers/staging/rtl8187se/r8180_core.c",
++	.param2	= 1,
++};
++struct size_overflow_hash _001832_hash = {
++	.next	= NULL,
++	.name	= "alloc_subdevices",
++	.file	= "drivers/staging/comedi/drivers/../comedidev.h",
++	.param2	= 1,
++};
++struct size_overflow_hash _001833_hash = {
++	.next	= NULL,
++	.name	= "alloc_subdevices",
++	.file	= "drivers/staging/comedi/drivers/addi-data/../../comedidev.h",
++	.param2	= 1,
++};
++struct size_overflow_hash _001834_hash = {
++	.next	= NULL,
++	.name	= "comedi_read",
++	.file	= "drivers/staging/comedi/comedi_fops.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001835_hash = {
++	.next	= NULL,
++	.name	= "comedi_write",
++	.file	= "drivers/staging/comedi/comedi_fops.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001836_hash = {
++	.next	= NULL,
++	.name	= "compat_sys_preadv64",
++	.file	= "fs/compat.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001837_hash = {
++	.next	= NULL,
++	.name	= "compat_sys_pwritev64",
++	.file	= "fs/compat.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001838_hash = {
++	.next	= NULL,
++	.name	= "ext_sd_execute_read_data",
++	.file	= "drivers/staging/rts5139/sd_cprm.c",
++	.param9	= 1,
++};
++struct size_overflow_hash _001839_hash = {
++	.next	= NULL,
++	.name	= "ext_sd_execute_write_data",
++	.file	= "drivers/staging/rts5139/sd_cprm.c",
++	.param9	= 1,
++};
++struct size_overflow_hash _001840_hash = {
++	.next	= NULL,
++	.name	= "ieee80211_wx_set_gen_ie",
++	.file	= "drivers/staging/rtl8187se/ieee80211/ieee80211_wx.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001841_hash = {
++	.next	= NULL,
++	.name	= "ieee80211_wx_set_gen_ie_rsl",
++	.file	= "drivers/staging/rtl8192u/ieee80211/ieee80211_wx.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001842_hash = {
++	.next	= NULL,
++	.name	= "ni_gpct_device_construct",
++	.file	= "drivers/staging/comedi/drivers/ni_tio.c",
++	.param5	= 1,
++};
++struct size_overflow_hash _001843_hash = {
++	.next	= NULL,
++	.name	= "Realloc",
++	.file	= "drivers/staging/comedi/drivers/comedi_bond.c",
++	.param2	= 1,
++};
++struct size_overflow_hash _001844_hash = {
++	.next	= NULL,
++	.name	= "rtllib_wx_set_gen_ie",
++	.file	= "drivers/staging/rtl8192e/rtllib_wx.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001845_hash = {
++	.next	= NULL,
++	.name	= "rts51x_transfer_data_partial",
++	.file	= "drivers/staging/rts5139/rts51x_transport.c",
++	.param6	= 1,
++};
++struct size_overflow_hash _001846_hash = {
++	.next	= NULL,
++	.name	= "store_debug_level",
++	.file	= "drivers/staging/rtl8192u/ieee80211/ieee80211_module.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001847_hash = {
++	.next	= NULL,
++	.name	= "usb_buffer_alloc",
++	.file	= "drivers/staging/rts5139/rts51x.h",
++	.param2	= 1,
++};
++struct size_overflow_hash _001848_hash = {
++	.next	= NULL,
 +	.name	= "alloc_apertures",
 +	.file	= "include/linux/fb.h",
 +	.param1	= 1,
 +};
-+
-+struct size_overflow_hash _001773_hash = {
++struct size_overflow_hash _001849_hash = {
 +	.next	= NULL,
 +	.name	= "bin_uuid",
 +	.file	= "kernel/sysctl_binary.c",
 +	.param3	= 1,
 +};
-+
-+struct size_overflow_hash _001774_hash = {
++struct size_overflow_hash _001850_hash = {
 +	.next	= &_000640_hash,
 +	.name	= "__copy_from_user_inatomic_nocache",
 +	.file	= "arch/x86/include/asm/uaccess_64.h",
 +	.param3	= 1,
 +};
-+
-+struct size_overflow_hash _001775_hash = {
++struct size_overflow_hash _001851_hash = {
 +	.next	= NULL,
 +	.name	= "do_dmabuf_dirty_sou",
 +	.file	= "drivers/gpu/drm/vmwgfx/vmwgfx_kms.c",
 +	.param7	= 1,
 +};
-+
-+struct size_overflow_hash _001776_hash = {
++struct size_overflow_hash _001852_hash = {
 +	.next	= NULL,
 +	.name	= "do_surface_dirty_sou",
 +	.file	= "drivers/gpu/drm/vmwgfx/vmwgfx_kms.c",
 +	.param7	= 1,
 +};
-+
-+struct size_overflow_hash _001777_hash = {
++struct size_overflow_hash _001853_hash = {
 +	.next	= NULL,
 +	.name	= "drm_agp_bind_pages",
 +	.file	= "drivers/gpu/drm/drm_agpsupport.c",
 +	.param3	= 1,
 +};
-+
-+struct size_overflow_hash _001778_hash = {
++struct size_overflow_hash _001854_hash = {
 +	.next	= NULL,
 +	.name	= "drm_calloc_large",
 +	.file	= "include/drm/drm_mem_util.h",
 +	.param1	= 1,
 +	.param2	= 1,
 +};
-+
-+struct size_overflow_hash _001780_hash = {
++struct size_overflow_hash _001856_hash = {
 +	.next	= NULL,
 +	.name	= "drm_ht_create",
 +	.file	= "drivers/gpu/drm/drm_hashtab.c",
 +	.param2	= 1,
 +};
-+
-+struct size_overflow_hash _001781_hash = {
++struct size_overflow_hash _001857_hash = {
 +	.next	= NULL,
 +	.name	= "drm_malloc_ab",
 +	.file	= "include/drm/drm_mem_util.h",
 +	.param1	= 1,
 +	.param2	= 1,
 +};
-+
-+struct size_overflow_hash _001783_hash = {
++struct size_overflow_hash _001859_hash = {
 +	.next	= NULL,
 +	.name	= "drm_plane_init",
 +	.file	= "drivers/gpu/drm/drm_crtc.c",
 +	.param6	= 1,
 +};
-+
-+struct size_overflow_hash _001784_hash = {
++struct size_overflow_hash _001860_hash = {
 +	.next	= NULL,
 +	.name	= "drm_vmalloc_dma",
 +	.file	= "drivers/gpu/drm/drm_scatter.c",
 +	.param1	= 1,
 +};
-+
-+struct size_overflow_hash _001785_hash = {
++struct size_overflow_hash _001861_hash = {
 +	.next	= NULL,
 +	.name	= "fb_read",
 +	.file	= "drivers/video/fbmem.c",
 +	.param3	= 1,
 +};
-+
-+struct size_overflow_hash _001786_hash = {
++struct size_overflow_hash _001862_hash = {
 +	.next	= NULL,
 +	.name	= "fb_write",
 +	.file	= "drivers/video/fbmem.c",
 +	.param3	= 1,
 +};
-+
-+struct size_overflow_hash _001787_hash = {
++struct size_overflow_hash _001863_hash = {
 +	.next	= NULL,
 +	.name	= "framebuffer_alloc",
 +	.file	= "include/linux/fb.h",
 +	.param1	= 1,
 +};
-+
-+struct size_overflow_hash _001788_hash = {
++struct size_overflow_hash _001864_hash = {
 +	.next	= NULL,
 +	.name	= "i915_cache_sharing_read",
 +	.file	= "drivers/gpu/drm/i915/i915_debugfs.c",
 +	.param3	= 1,
 +};
-+
-+struct size_overflow_hash _001789_hash = {
++struct size_overflow_hash _001865_hash = {
 +	.next	= NULL,
 +	.name	= "i915_cache_sharing_write",
 +	.file	= "drivers/gpu/drm/i915/i915_debugfs.c",
 +	.param3	= 1,
 +};
-+
-+struct size_overflow_hash _001790_hash = {
++struct size_overflow_hash _001866_hash = {
 +	.next	= NULL,
 +	.name	= "i915_max_freq_read",
 +	.file	= "drivers/gpu/drm/i915/i915_debugfs.c",
 +	.param3	= 1,
 +};
-+
-+struct size_overflow_hash _001791_hash = {
++struct size_overflow_hash _001867_hash = {
 +	.next	= NULL,
 +	.name	= "i915_max_freq_write",
 +	.file	= "drivers/gpu/drm/i915/i915_debugfs.c",
 +	.param3	= 1,
 +};
-+
-+struct size_overflow_hash _001792_hash = {
++struct size_overflow_hash _001868_hash = {
 +	.next	= NULL,
 +	.name	= "i915_wedged_read",
 +	.file	= "drivers/gpu/drm/i915/i915_debugfs.c",
 +	.param3	= 1,
 +};
-+
-+struct size_overflow_hash _001793_hash = {
++struct size_overflow_hash _001869_hash = {
 +	.next	= NULL,
 +	.name	= "i915_wedged_write",
 +	.file	= "drivers/gpu/drm/i915/i915_debugfs.c",
 +	.param3	= 1,
 +};
-+
-+struct size_overflow_hash _001794_hash = {
++struct size_overflow_hash _001870_hash = {
 +	.next	= NULL,
 +	.name	= "__module_alloc",
 +	.file	= "arch/x86/kernel/module.c",
 +	.param1	= 1,
 +};
-+
-+struct size_overflow_hash _001795_hash = {
++struct size_overflow_hash _001871_hash = {
 +	.next	= NULL,
 +	.name	= "module_alloc_update_bounds_rw",
 +	.file	= "kernel/module.c",
 +	.param1	= 1,
 +};
-+
-+struct size_overflow_hash _001796_hash = {
++struct size_overflow_hash _001872_hash = {
 +	.next	= NULL,
 +	.name	= "module_alloc_update_bounds_rx",
 +	.file	= "kernel/module.c",
 +	.param1	= 1,
 +};
-+
-+struct size_overflow_hash _001797_hash = {
++struct size_overflow_hash _001873_hash = {
 +	.next	= NULL,
 +	.name	= "p9_client_read",
 +	.file	= "include/net/9p/client.h",
 +	.param5	= 1,
 +};
-+
-+struct size_overflow_hash _001798_hash = {
++struct size_overflow_hash _001874_hash = {
 +	.next	= NULL,
 +	.name	= "probe_kernel_write",
 +	.file	= "include/linux/uaccess.h",
 +	.param3	= 1,
 +};
-+
-+struct size_overflow_hash _001799_hash = {
++struct size_overflow_hash _001875_hash = {
 +	.next	= NULL,
 +	.name	= "sched_feat_write",
 +	.file	= "kernel/sched/core.c",
 +	.param3	= 1,
 +};
-+
-+struct size_overflow_hash _001800_hash = {
++struct size_overflow_hash _001876_hash = {
 +	.next	= NULL,
 +	.name	= "tstats_write",
 +	.file	= "kernel/time/timer_stats.c",
 +	.param3	= 1,
 +};
-+
-+struct size_overflow_hash _001801_hash = {
++struct size_overflow_hash _001877_hash = {
 +	.next	= NULL,
 +	.name	= "ttm_bo_fbdev_io",
 +	.file	= "drivers/gpu/drm/ttm/ttm_bo_vm.c",
 +	.param4	= 1,
 +};
-+
-+struct size_overflow_hash _001802_hash = {
++struct size_overflow_hash _001878_hash = {
 +	.next	= NULL,
 +	.name	= "ttm_bo_io",
 +	.file	= "drivers/gpu/drm/ttm/ttm_bo_vm.c",
 +	.param5	= 1,
 +};
-+
-+struct size_overflow_hash _001803_hash = {
++struct size_overflow_hash _001879_hash = {
 +	.next	= NULL,
 +	.name	= "ttm_dma_page_pool_free",
 +	.file	= "drivers/gpu/drm/ttm/ttm_page_alloc_dma.c",
 +	.param2	= 1,
 +};
-+
-+struct size_overflow_hash _001804_hash = {
++struct size_overflow_hash _001880_hash = {
 +	.next	= NULL,
 +	.name	= "ttm_page_pool_free",
 +	.file	= "drivers/gpu/drm/ttm/ttm_page_alloc.c",
 +	.param2	= 1,
 +};
-+
-+struct size_overflow_hash _001805_hash = {
++struct size_overflow_hash _001881_hash = {
 +	.next	= NULL,
 +	.name	= "vmw_execbuf_process",
 +	.file	= "drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c",
 +	.param5	= 1,
 +};
-+
-+struct size_overflow_hash _001806_hash = {
++struct size_overflow_hash _001882_hash = {
 +	.next	= NULL,
 +	.name	= "vmw_fifo_reserve",
 +	.file	= "drivers/gpu/drm/vmwgfx/vmwgfx_fifo.c",
 +	.param2	= 1,
 +};
-+
-+struct size_overflow_hash _001807_hash = {
++struct size_overflow_hash _001883_hash = {
 +	.next	= NULL,
 +	.name	= "vmw_kms_present",
 +	.file	= "drivers/gpu/drm/vmwgfx/vmwgfx_kms.c",
 +	.param9	= 1,
 +};
-+
-+struct size_overflow_hash _001808_hash = {
++struct size_overflow_hash _001884_hash = {
 +	.next	= NULL,
 +	.name	= "vmw_kms_readback",
 +	.file	= "drivers/gpu/drm/vmwgfx/vmwgfx_kms.c",
 +	.param6	= 1,
 +};
-+
-+struct size_overflow_hash _001809_hash = {
++struct size_overflow_hash _001885_hash = {
 +	.next	= NULL,
-+	.name	= "acpi_system_write_alarm",
-+	.file	= "drivers/acpi/proc.c",
++	.name	= "__copy_from_user_inatomic_nocache",
++	.file	= "arch/x86/include/asm/uaccess_32.h",
 +	.param3	= 1,
 +};
-+
-+struct size_overflow_hash _001810_hash = {
++struct size_overflow_hash _001886_hash = {
 +	.next	= NULL,
-+	.name	= "kmalloc",
-+	.file	= "include/linux/slab_def.h",
++	.name	= "arcfb_write",
++	.file	= "drivers/video/arcfb.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001887_hash = {
++	.next	= NULL,
++	.name	= "ath6kl_usb_submit_ctrl_in",
++	.file	= "drivers/net/wireless/ath/ath6kl/usb.c",
++	.param6	= 1,
++};
++struct size_overflow_hash _001888_hash = {
++	.next	= NULL,
++	.name	= "ath6kl_usb_submit_ctrl_out",
++	.file	= "drivers/net/wireless/ath/ath6kl/usb.c",
++	.param6	= 1,
++};
++struct size_overflow_hash _001889_hash = {
++	.next	= NULL,
++	.name	= "blk_dropped_read",
++	.file	= "kernel/trace/blktrace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001890_hash = {
++	.next	= NULL,
++	.name	= "blk_msg_write",
++	.file	= "kernel/trace/blktrace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001891_hash = {
++	.next	= NULL,
++	.name	= "broadsheetfb_write",
++	.file	= "drivers/video/broadsheetfb.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001892_hash = {
++	.next	= NULL,
++	.name	= "cyttsp_probe",
++	.file	= "drivers/input/touchscreen/cyttsp_core.c",
++	.param4	= 1,
++};
++struct size_overflow_hash _001893_hash = {
++	.next	= NULL,
++	.name	= "da9052_group_write",
++	.file	= "include/linux/mfd/da9052/da9052.h",
++	.param3	= 1,
++};
++struct size_overflow_hash _001894_hash = {
++	.next	= NULL,
++	.name	= "dccpprobe_read",
++	.file	= "net/dccp/probe.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001895_hash = {
++	.next	= NULL,
++	.name	= "__devres_alloc",
++	.file	= "include/linux/device.h",
++	.param2	= 1,
++};
++struct size_overflow_hash _001896_hash = {
++	.next	= NULL,
++	.name	= "event_enable_read",
++	.file	= "kernel/trace/trace_events.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001897_hash = {
++	.next	= NULL,
++	.name	= "event_filter_read",
++	.file	= "kernel/trace/trace_events.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001898_hash = {
++	.next	= NULL,
++	.name	= "event_filter_write",
++	.file	= "kernel/trace/trace_events.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001899_hash = {
++	.next	= NULL,
++	.name	= "event_id_read",
++	.file	= "kernel/trace/trace_events.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001900_hash = {
++	.next	= NULL,
++	.name	= "fb_sys_read",
++	.file	= "include/linux/fb.h",
++	.param3	= 1,
++};
++struct size_overflow_hash _001901_hash = {
++	.next	= NULL,
++	.name	= "fb_sys_write",
++	.file	= "include/linux/fb.h",
++	.param3	= 1,
++};
++struct size_overflow_hash _001902_hash = {
++	.next	= NULL,
++	.name	= "ftrace_pid_write",
++	.file	= "kernel/trace/ftrace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001903_hash = {
++	.next	= NULL,
++	.name	= "ftrace_profile_read",
++	.file	= "kernel/trace/ftrace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001904_hash = {
++	.next	= NULL,
++	.name	= "hecubafb_write",
++	.file	= "drivers/video/hecubafb.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001905_hash = {
++	.next	= NULL,
++	.name	= "hsc_msg_alloc",
++	.file	= "drivers/hsi/clients/hsi_char.c",
 +	.param1	= 1,
 +};
-+
-+struct size_overflow_hash _001811_hash = {
++struct size_overflow_hash _001906_hash = {
 +	.next	= NULL,
-+	.name	= "slabinfo_write",
-+	.file	= "mm/slab.c",
++	.name	= "hsc_write",
++	.file	= "drivers/hsi/clients/hsi_char.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001907_hash = {
++	.next	= NULL,
++	.name	= "hsi_alloc_controller",
++	.file	= "include/linux/hsi/hsi.h",
++	.param1	= 1,
++};
++struct size_overflow_hash _001908_hash = {
++	.next	= NULL,
++	.name	= "hsi_register_board_info",
++	.file	= "include/linux/hsi/hsi.h",
++	.param2	= 1,
++};
++struct size_overflow_hash _001909_hash = {
++	.next	= NULL,
++	.name	= "ivtvfb_write",
++	.file	= "drivers/media/video/ivtv/ivtvfb.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001910_hash = {
++	.next	= NULL,
++	.name	= "metronomefb_write",
++	.file	= "drivers/video/metronomefb.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001911_hash = {
++	.next	= NULL,
++	.name	= "odev_update",
++	.file	= "drivers/video/via/viafbdev.c",
++	.param2	= 1,
++};
++struct size_overflow_hash _001912_hash = {
++	.next	= NULL,
++	.name	= "oz_add_farewell",
++	.file	= "drivers/staging/ozwpan/ozproto.c",
++	.param5	= 1,
++};
++struct size_overflow_hash _001913_hash = {
++	.next	= NULL,
++	.name	= "oz_cdev_read",
++	.file	= "drivers/staging/ozwpan/ozcdev.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001914_hash = {
++	.next	= NULL,
++	.name	= "oz_cdev_write",
++	.file	= "drivers/staging/ozwpan/ozcdev.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001915_hash = {
++	.next	= NULL,
++	.name	= "pmcraid_copy_sglist",
++	.file	= "drivers/scsi/pmcraid.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001916_hash = {
++	.next	= NULL,
++	.name	= "probes_write",
++	.file	= "kernel/trace/trace_kprobe.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001917_hash = {
++	.next	= NULL,
++	.name	= "proc_fault_inject_read",
++	.file	= "fs/proc/base.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001918_hash = {
++	.next	= NULL,
++	.name	= "proc_fault_inject_write",
++	.file	= "fs/proc/base.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001919_hash = {
++	.next	= NULL,
++	.name	= "rb_simple_read",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001920_hash = {
++	.next	= NULL,
++	.name	= "read_file_dfs",
++	.file	= "drivers/net/wireless/ath/ath9k/dfs_debug.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001921_hash = {
++	.next	= NULL,
++	.name	= "show_header",
++	.file	= "kernel/trace/trace_events.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001922_hash = {
++	.next	= NULL,
++	.name	= "stack_max_size_read",
++	.file	= "kernel/trace/trace_stack.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001923_hash = {
++	.next	= NULL,
++	.name	= "subsystem_filter_read",
++	.file	= "kernel/trace/trace_events.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001924_hash = {
++	.next	= NULL,
++	.name	= "subsystem_filter_write",
++	.file	= "kernel/trace/trace_events.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001925_hash = {
++	.next	= NULL,
++	.name	= "system_enable_read",
++	.file	= "kernel/trace/trace_events.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001926_hash = {
++	.next	= NULL,
++	.name	= "trace_options_core_read",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001927_hash = {
++	.next	= NULL,
++	.name	= "trace_options_read",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001928_hash = {
++	.next	= NULL,
++	.name	= "trace_seq_to_user",
++	.file	= "include/linux/trace_seq.h",
++	.param3	= 1,
++};
++struct size_overflow_hash _001929_hash = {
++	.next	= NULL,
++	.name	= "tracing_buffers_read",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001930_hash = {
++	.next	= NULL,
++	.name	= "tracing_clock_write",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001931_hash = {
++	.next	= NULL,
++	.name	= "tracing_cpumask_read",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001932_hash = {
++	.next	= NULL,
++	.name	= "tracing_ctrl_read",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001933_hash = {
++	.next	= NULL,
++	.name	= "tracing_entries_read",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001934_hash = {
++	.next	= NULL,
++	.name	= "tracing_max_lat_read",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001935_hash = {
++	.next	= NULL,
++	.name	= "tracing_read_dyn_info",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001936_hash = {
++	.next	= NULL,
++	.name	= "tracing_readme_read",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001937_hash = {
++	.next	= NULL,
++	.name	= "tracing_saved_cmdlines_read",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001938_hash = {
++	.next	= NULL,
++	.name	= "tracing_set_trace_read",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001939_hash = {
++	.next	= NULL,
++	.name	= "tracing_set_trace_write",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001940_hash = {
++	.next	= NULL,
++	.name	= "tracing_stats_read",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001941_hash = {
++	.next	= NULL,
++	.name	= "tracing_total_entries_read",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001942_hash = {
++	.next	= NULL,
++	.name	= "tracing_trace_options_write",
++	.file	= "kernel/trace/trace.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001943_hash = {
++	.next	= NULL,
++	.name	= "ufx_alloc_urb_list",
++	.file	= "drivers/video/smscufx.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001944_hash = {
++	.next	= NULL,
++	.name	= "u_memcpya",
++	.file	= "drivers/gpu/drm/nouveau/nouveau_gem.c",
++	.param2	= 1,
++	.param3	= 1,
++};
++struct size_overflow_hash _001946_hash = {
++	.next	= NULL,
++	.name	= "v9fs_fid_readn",
++	.file	= "fs/9p/vfs_file.c",
++	.param4	= 1,
++};
++struct size_overflow_hash _001947_hash = {
++	.next	= NULL,
++	.name	= "v9fs_file_read",
++	.file	= "fs/9p/vfs_file.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001948_hash = {
++	.next	= NULL,
++	.name	= "viafb_dfph_proc_write",
++	.file	= "drivers/video/via/viafbdev.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001949_hash = {
++	.next	= NULL,
++	.name	= "viafb_dfpl_proc_write",
++	.file	= "drivers/video/via/viafbdev.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001950_hash = {
++	.next	= NULL,
++	.name	= "viafb_dvp0_proc_write",
++	.file	= "drivers/video/via/viafbdev.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001951_hash = {
++	.next	= NULL,
++	.name	= "viafb_dvp1_proc_write",
++	.file	= "drivers/video/via/viafbdev.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001952_hash = {
++	.next	= NULL,
++	.name	= "viafb_vt1636_proc_write",
++	.file	= "drivers/video/via/viafbdev.c",
++	.param3	= 1,
++};
++struct size_overflow_hash _001953_hash = {
++	.next	= NULL,
++	.name	= "vivi_read",
++	.file	= "drivers/media/video/vivi.c",
 +	.param3	= 1,
 +};
-+
 +struct size_overflow_hash *size_overflow_hash[65536] = {
 +	[56878]	= &_000001_hash,
 +	[11151]	= &_000002_hash,
@@ -93875,7 +91944,6 @@ index 0000000..ce7366b
 +	[23714]	= &_000331_hash,
 +	[26020]	= &_000332_hash,
 +	[63875]	= &_000333_hash,
-+	[58608]	= &_000334_hash,
 +	[8919]	= &_000335_hash,
 +	[23906]	= &_000336_hash,
 +	[59497]	= &_000337_hash,
@@ -93913,7 +91981,6 @@ index 0000000..ce7366b
 +	[54888]	= &_000369_hash,
 +	[31885]	= &_000370_hash,
 +	[20206]	= &_000371_hash,
-+	[59852]	= &_000372_hash,
 +	[20325]	= &_000373_hash,
 +	[18488]	= &_000374_hash,
 +	[22017]	= &_000375_hash,
@@ -94603,7 +92670,6 @@ index 0000000..ce7366b
 +	[25543]	= &_001095_hash,
 +	[29240]	= &_001096_hash,
 +	[38748]	= &_001097_hash,
-+	[42270]	= &_001098_hash,
 +	[34848]	= &_001099_hash,
 +	[46226]	= &_001100_hash,
 +	[55526]	= &_001101_hash,
@@ -94707,7 +92773,6 @@ index 0000000..ce7366b
 +	[3112]	= &_001201_hash,
 +	[62001]	= &_001202_hash,
 +	[35888]	= &_001203_hash,
-+	[54718]	= &_001206_hash,
 +	[64177]	= &_001207_hash,
 +	[57222]	= &_001208_hash,
 +	[5260]	= &_001209_hash,
@@ -95243,44 +93308,179 @@ index 0000000..ce7366b
 +	[19691]	= &_001767_hash,
 +	[20519]	= &_001770_hash,
 +	[17144]	= &_001771_hash,
-+	[14000]	= &_001772_hash,
-+	[31148]	= &_001773_hash,
-+	[62594]	= &_001774_hash,
-+	[39210]	= &_001775_hash,
-+	[2077]	= &_001776_hash,
-+	[23497]	= &_001777_hash,
-+	[34512]	= &_001778_hash,
-+	[16268]	= &_001780_hash,
-+	[14562]	= &_001781_hash,
-+	[17606]	= &_001783_hash,
-+	[25654]	= &_001784_hash,
-+	[56078]	= &_001785_hash,
-+	[61088]	= &_001786_hash,
-+	[53442]	= &_001787_hash,
-+	[54456]	= &_001788_hash,
-+	[22038]	= &_001789_hash,
-+	[58394]	= &_001790_hash,
-+	[38953]	= &_001791_hash,
-+	[16109]	= &_001792_hash,
-+	[3812]	= &_001793_hash,
-+	[5084]	= &_001794_hash,
-+	[41893]	= &_001795_hash,
-+	[45486]	= &_001796_hash,
-+	[50226]	= &_001797_hash,
-+	[63694]	= &_001798_hash,
-+	[56763]	= &_001799_hash,
-+	[20905]	= &_001800_hash,
-+	[13080]	= &_001801_hash,
-+	[54700]	= &_001802_hash,
-+	[40947]	= &_001803_hash,
-+	[32645]	= &_001804_hash,
-+	[57462]	= &_001805_hash,
-+	[33853]	= &_001806_hash,
-+	[57940]	= &_001807_hash,
-+	[45583]	= &_001808_hash,
-+	[14237]	= &_001809_hash,
-+	[27495]	= &_001810_hash,
-+	[12489]	= &_001811_hash,
++	[19394]	= &_001772_hash,
++	[53730]	= &_001773_hash,
++	[8447]	= &_001774_hash,
++	[30004]	= &_001775_hash,
++	[40939]	= &_001776_hash,
++	[53674]	= &_001777_hash,
++	[11820]	= &_001778_hash,
++	[23401]	= &_001779_hash,
++	[9641]	= &_001780_hash,
++	[2721]	= &_001781_hash,
++	[19700]	= &_001782_hash,
++	[1619]	= &_001783_hash,
++	[23272]	= &_001784_hash,
++	[56424]	= &_001785_hash,
++	[14483]	= &_001786_hash,
++	[1599]	= &_001787_hash,
++	[27604]	= &_001788_hash,
++	[37219]	= &_001789_hash,
++	[31958]	= &_001790_hash,
++	[5273]	= &_001791_hash,
++	[46712]	= &_001792_hash,
++	[27259]	= &_001794_hash,
++	[23674]	= &_001797_hash,
++	[40509]	= &_001798_hash,
++	[17549]	= &_001799_hash,
++	[53992]	= &_001800_hash,
++	[24062]	= &_001801_hash,
++	[23371]	= &_001802_hash,
++	[19115]	= &_001803_hash,
++	[51532]	= &_001804_hash,
++	[45193]	= &_001805_hash,
++	[29340]	= &_001806_hash,
++	[5048]	= &_001807_hash,
++	[65040]	= &_001808_hash,
++	[39155]	= &_001809_hash,
++	[31406]	= &_001810_hash,
++	[49182]	= &_001811_hash,
++	[37695]	= &_001812_hash,
++	[28432]	= &_001813_hash,
++	[23482]	= &_001814_hash,
++	[56550]	= &_001815_hash,
++	[7374]	= &_001816_hash,
++	[57050]	= &_001817_hash,
++	[57011]	= &_001818_hash,
++	[27529]	= &_001819_hash,
++	[33662]	= &_001820_hash,
++	[4314]	= &_001821_hash,
++	[22812]	= &_001822_hash,
++	[47555]	= &_001823_hash,
++	[38737]	= &_001824_hash,
++	[36101]	= &_001826_hash,
++	[877]	= &_001828_hash,
++	[2639]	= &_001830_hash,
++	[64343]	= &_001831_hash,
++	[11150]	= &_001832_hash,
++	[46486]	= &_001833_hash,
++	[18719]	= &_001834_hash,
++	[49574]	= &_001835_hash,
++	[37617]	= &_001836_hash,
++	[3045]	= &_001837_hash,
++	[39395]	= &_001838_hash,
++	[15297]	= &_001839_hash,
++	[50862]	= &_001840_hash,
++	[28877]	= &_001841_hash,
++	[57117]	= &_001842_hash,
++	[62064]	= &_001843_hash,
++	[64610]	= &_001844_hash,
++	[24065]	= &_001845_hash,
++	[24846]	= &_001846_hash,
++	[8624]	= &_001847_hash,
++	[14000]	= &_001848_hash,
++	[31148]	= &_001849_hash,
++	[62594]	= &_001850_hash,
++	[39210]	= &_001851_hash,
++	[2077]	= &_001852_hash,
++	[23497]	= &_001853_hash,
++	[34512]	= &_001854_hash,
++	[16268]	= &_001856_hash,
++	[14562]	= &_001857_hash,
++	[17606]	= &_001859_hash,
++	[25654]	= &_001860_hash,
++	[56078]	= &_001861_hash,
++	[61088]	= &_001862_hash,
++	[53442]	= &_001863_hash,
++	[54456]	= &_001864_hash,
++	[22038]	= &_001865_hash,
++	[58394]	= &_001866_hash,
++	[38953]	= &_001867_hash,
++	[16109]	= &_001868_hash,
++	[3812]	= &_001869_hash,
++	[5084]	= &_001870_hash,
++	[41893]	= &_001871_hash,
++	[45486]	= &_001872_hash,
++	[50226]	= &_001873_hash,
++	[63694]	= &_001874_hash,
++	[56763]	= &_001875_hash,
++	[20905]	= &_001876_hash,
++	[13080]	= &_001877_hash,
++	[54700]	= &_001878_hash,
++	[40947]	= &_001879_hash,
++	[32645]	= &_001880_hash,
++	[57462]	= &_001881_hash,
++	[33853]	= &_001882_hash,
++	[57940]	= &_001883_hash,
++	[45583]	= &_001884_hash,
++	[49704]	= &_001885_hash,
++	[39232]	= &_001886_hash,
++	[5140]	= &_001887_hash,
++	[45726]	= &_001888_hash,
++	[35392]	= &_001889_hash,
++	[44895]	= &_001890_hash,
++	[17219]	= &_001891_hash,
++	[50185]	= &_001892_hash,
++	[3062]	= &_001893_hash,
++	[9784]	= &_001894_hash,
++	[52513]	= &_001895_hash,
++	[52678]	= &_001896_hash,
++	[36258]	= &_001897_hash,
++	[2885]	= &_001898_hash,
++	[11588]	= &_001899_hash,
++	[65337]	= &_001900_hash,
++	[19329]	= &_001901_hash,
++	[23791]	= &_001902_hash,
++	[38078]	= &_001903_hash,
++	[42270]	= &_001904_hash,
++	[30475]	= &_001905_hash,
++	[25564]	= &_001906_hash,
++	[33581]	= &_001907_hash,
++	[59644]	= &_001908_hash,
++	[5800]	= &_001909_hash,
++	[42227]	= &_001910_hash,
++	[54718]	= &_001911_hash,
++	[41255]	= &_001912_hash,
++	[31502]	= &_001913_hash,
++	[44929]	= &_001914_hash,
++	[47332]	= &_001915_hash,
++	[10107]	= &_001916_hash,
++	[47137]	= &_001917_hash,
++	[26017]	= &_001918_hash,
++	[41477]	= &_001919_hash,
++	[6656]	= &_001920_hash,
++	[50198]	= &_001921_hash,
++	[48909]	= &_001922_hash,
++	[9474]	= &_001923_hash,
++	[58554]	= &_001924_hash,
++	[45747]	= &_001925_hash,
++	[43151]	= &_001926_hash,
++	[15626]	= &_001927_hash,
++	[17364]	= &_001928_hash,
++	[15077]	= &_001929_hash,
++	[31912]	= &_001930_hash,
++	[2803]	= &_001931_hash,
++	[42715]	= &_001932_hash,
++	[12552]	= &_001933_hash,
++	[13099]	= &_001934_hash,
++	[40973]	= &_001935_hash,
++	[20988]	= &_001936_hash,
++	[16939]	= &_001937_hash,
++	[48587]	= &_001938_hash,
++	[52889]	= &_001939_hash,
++	[38776]	= &_001940_hash,
++	[58608]	= &_001941_hash,
++	[4360]	= &_001942_hash,
++	[53447]	= &_001943_hash,
++	[25355]	= &_001944_hash,
++	[14955]	= &_001946_hash,
++	[5428]	= &_001947_hash,
++	[11063]	= &_001948_hash,
++	[59852]	= &_001949_hash,
++	[45648]	= &_001950_hash,
++	[21855]	= &_001951_hash,
++	[54573]	= &_001952_hash,
++	[56316]	= &_001953_hash,
 +};
 diff --git a/tools/gcc/size_overflow_plugin.c b/tools/gcc/size_overflow_plugin.c
 new file mode 100644
@@ -96834,7 +95034,7 @@ index af0f22f..9a7d479 100644
                         break;
         }
 diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
-index 7858228..2919715 100644
+index 9739b53..6d457e3 100644
 --- a/virt/kvm/kvm_main.c
 +++ b/virt/kvm/kvm_main.c
 @@ -75,7 +75,7 @@ LIST_HEAD(vm_list);
@@ -96846,7 +95046,7 @@ index 7858228..2919715 100644
  
  struct kmem_cache *kvm_vcpu_cache;
  EXPORT_SYMBOL_GPL(kvm_vcpu_cache);
-@@ -2318,7 +2318,7 @@ static void hardware_enable_nolock(void *junk)
+@@ -2247,7 +2247,7 @@ static void hardware_enable_nolock(void *junk)
  
  	if (r) {
  		cpumask_clear_cpu(cpu, cpus_hardware_enabled);
@@ -96855,7 +95055,7 @@ index 7858228..2919715 100644
  		printk(KERN_INFO "kvm: enabling virtualization on "
  				 "CPU%d failed\n", cpu);
  	}
-@@ -2372,10 +2372,10 @@ static int hardware_enable_all(void)
+@@ -2301,10 +2301,10 @@ static int hardware_enable_all(void)
  
  	kvm_usage_count++;
  	if (kvm_usage_count == 1) {
@@ -96868,7 +95068,7 @@ index 7858228..2919715 100644
  			hardware_disable_all_nolock();
  			r = -EBUSY;
  		}
-@@ -2738,7 +2738,7 @@ static void kvm_sched_out(struct preempt_notifier *pn,
+@@ -2667,7 +2667,7 @@ static void kvm_sched_out(struct preempt_notifier *pn,
  	kvm_arch_vcpu_put(vcpu);
  }
  
@@ -96877,7 +95077,7 @@ index 7858228..2919715 100644
  		  struct module *module)
  {
  	int r;
-@@ -2801,7 +2801,7 @@ int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
+@@ -2730,7 +2730,7 @@ int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
  	if (!vcpu_align)
  		vcpu_align = __alignof__(struct kvm_vcpu);
  	kvm_vcpu_cache = kmem_cache_create("kvm_vcpu", vcpu_size, vcpu_align,
@@ -96886,7 +95086,7 @@ index 7858228..2919715 100644
  	if (!kvm_vcpu_cache) {
  		r = -ENOMEM;
  		goto out_free_3;
-@@ -2811,9 +2811,11 @@ int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
+@@ -2740,9 +2740,11 @@ int kvm_init(void *opaque, unsigned vcpu_size, unsigned vcpu_align,
  	if (r)
  		goto out_free;
  

diff --git a/3.3.8/4430_grsec-remove-localversion-grsec.patch b/3.4.1/4430_grsec-remove-localversion-grsec.patch
similarity index 100%
rename from 3.3.8/4430_grsec-remove-localversion-grsec.patch
rename to 3.4.1/4430_grsec-remove-localversion-grsec.patch

diff --git a/3.3.8/4435_grsec-mute-warnings.patch b/3.4.1/4435_grsec-mute-warnings.patch
similarity index 100%
rename from 3.3.8/4435_grsec-mute-warnings.patch
rename to 3.4.1/4435_grsec-mute-warnings.patch

diff --git a/3.3.8/4440_grsec-remove-protected-paths.patch b/3.4.1/4440_grsec-remove-protected-paths.patch
similarity index 100%
rename from 3.3.8/4440_grsec-remove-protected-paths.patch
rename to 3.4.1/4440_grsec-remove-protected-paths.patch

diff --git a/3.3.8/4445_grsec-pax-without-grsec.patch b/3.4.1/4445_grsec-pax-without-grsec.patch
similarity index 100%
rename from 3.3.8/4445_grsec-pax-without-grsec.patch
rename to 3.4.1/4445_grsec-pax-without-grsec.patch

diff --git a/3.3.8/4450_grsec-kconfig-default-gids.patch b/3.4.1/4450_grsec-kconfig-default-gids.patch
similarity index 100%
rename from 3.3.8/4450_grsec-kconfig-default-gids.patch
rename to 3.4.1/4450_grsec-kconfig-default-gids.patch

diff --git a/3.3.8/4455_grsec-kconfig-gentoo.patch b/3.4.1/4455_grsec-kconfig-gentoo.patch
similarity index 100%
rename from 3.3.8/4455_grsec-kconfig-gentoo.patch
rename to 3.4.1/4455_grsec-kconfig-gentoo.patch

diff --git a/3.3.8/4460-grsec-kconfig-proc-user.patch b/3.4.1/4460-grsec-kconfig-proc-user.patch
similarity index 100%
rename from 3.3.8/4460-grsec-kconfig-proc-user.patch
rename to 3.4.1/4460-grsec-kconfig-proc-user.patch

diff --git a/3.3.8/4465_selinux-avc_audit-log-curr_ip.patch b/3.4.1/4465_selinux-avc_audit-log-curr_ip.patch
similarity index 100%
rename from 3.3.8/4465_selinux-avc_audit-log-curr_ip.patch
rename to 3.4.1/4465_selinux-avc_audit-log-curr_ip.patch

diff --git a/3.3.8/4470_disable-compat_vdso.patch b/3.4.1/4470_disable-compat_vdso.patch
similarity index 100%
rename from 3.3.8/4470_disable-compat_vdso.patch
rename to 3.4.1/4470_disable-compat_vdso.patch



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2012-06-10 12:50 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-10 12:49 [gentoo-commits] proj/hardened-patchset:master commit in: 3.2.19/, 2.6.32/, 3.3.8/, 3.4.1/ Anthony G. Basile

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox