The patch titled sysctl-remove-the-proc_dir_entry-member-for-the-sysctl-tables-fix-3-fix has been removed from the -mm tree. Its filename was sysctl-remove-the-proc_dir_entry-member-for-the-sysctl-tables-fix-3-fix.patch This patch was dropped because it is obsolete ------------------------------------------------------ Subject: sysctl-remove-the-proc_dir_entry-member-for-the-sysctl-tables-fix-3-fix From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> security/selinux/hooks.c: In function 'selinux_proc_get_sid': security/selinux/hooks.c:826: error: label 'out_free' used but not defined Cc: Eric W. Biederman <ebiederm@xxxxxxxxxxxx> Cc: Stephen Smalley <sds@xxxxxxxxxxxxx> Cc: James Morris <jmorris@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- security/selinux/hooks.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff -puN security/selinux/hooks.c~sysctl-remove-the-proc_dir_entry-member-for-the-sysctl-tables-fix-3-fix security/selinux/hooks.c --- a/security/selinux/hooks.c~sysctl-remove-the-proc_dir_entry-member-for-the-sysctl-tables-fix-3-fix +++ a/security/selinux/hooks.c @@ -798,7 +798,8 @@ static int selinux_proc_get_sid(struct p u16 tclass, u32 *sid) { - int buflen, rc; + int buflen; + int rc = -ENOMEM; char *buffer, *path, *end; buffer = (char*)__get_free_page(GFP_KERNEL); @@ -828,6 +829,7 @@ static int selinux_proc_get_sid(struct p memcpy(end, "/sys", 4); path = end; rc = security_genfs_sid("proc", path, tclass, sid); +out_free: free_page((unsigned long)buffer); return rc; } _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch fix-warning-in-device_add_attrs.patch git-dvb.patch kthread-api-conversion-for-dvb_frontend-and-av7110-fix.patch git-libata-all.patch sis-warning-fixes.patch git-md-accel-fixes.patch git-md-accel-warning-fixes.patch git-netdev-all.patch revert-drivers-net-tulip-dmfe-support-basic-carrier-detection.patch git-sh.patch git-block.patch git-cryptodev-fixup.patch mm-vm_insert_pfn-tidy.patch swiotlb-uninlinings.patch spi-filesystem-api-tweaks.patch knfsd-sunrpc-teach-svc_sendto-to-deal-with-ipv6-addresses-tidy.patch knfsd-sunrpc-support-ipv6-addresses-in-rpc-servers-udp-receive-path-tidy.patch fix-utrace-utrace-ptrace-compat.patch sysctl-remove-the-proc_dir_entry-member-for-the-sysctl-tables-fix-3-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html