The patch titled selinux: Fix MLS compatibility off-by-one bug has been removed from the -mm tree. Its filename is selinux-fix-mls-compatibility-off-by-one-bug.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. From: Ron Yorston <rmy@xxxxxxxxxxxxx> Fix an off-by-one error in the MLS compatibility code that was causing contexts with a MLS suffix to be rejected, preventing sharing partitions between FC4 and FC5. Bug reported in https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=188068 Signed-off-by: Stephen Smalley <sds@xxxxxxxxxxxxx> Acked-by: James Morris <jmorris@xxxxxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- security/selinux/ss/mls.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN security/selinux/ss/mls.c~selinux-fix-mls-compatibility-off-by-one-bug security/selinux/ss/mls.c --- devel/security/selinux/ss/mls.c~selinux-fix-mls-compatibility-off-by-one-bug 2006-04-18 22:19:59.000000000 -0700 +++ devel-akpm/security/selinux/ss/mls.c 2006-04-18 22:19:59.000000000 -0700 @@ -264,7 +264,7 @@ int mls_context_to_sid(char oldc, if (!selinux_mls_enabled) { if (def_sid != SECSID_NULL && oldc) - *scontext += strlen(*scontext); + *scontext += strlen(*scontext)+1; return 0; } _ Patches currently in -mm which might be from rmy@xxxxxxxxxxxxx are origin.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