The patch titled slim: secfs inode->i_private build fix has been removed from the -mm tree. Its filename was slim-secfs-inode-i_private-build-fix.patch This patch was dropped because it was folded into slim-debug-output.patch ------------------------------------------------------ Subject: slim: secfs inode->i_private build fix From: Kylene Jo Hall <kjhall@xxxxxxxxxx> Due to the change from inode->u.generic_ip to inode->i_private in the mm tree. The slim securityfs file had a compilation error. This minor patch fixes this issue. Signed-off-by: Mimi Zohar <zohar@xxxxxxxxxx> Signed-off-by: Kylene Hall <kjhall@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- security/slim/slm_secfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN security/slim/slm_secfs.c~slim-secfs-inode-i_private-build-fix security/slim/slm_secfs.c --- a/security/slim/slm_secfs.c~slim-secfs-inode-i_private-build-fix +++ a/security/slim/slm_secfs.c @@ -44,8 +44,8 @@ static ssize_t slm_read_level(struct fil static int slm_open_debug(struct inode *inode, struct file *file) { - if (inode->u.generic_ip) - file->private_data = inode->u.generic_ip; + if (inode->i_private) + file->private_data = inode->i_private; return 0; } _ Patches currently in -mm which might be from kjhall@xxxxxxxxxx are mprotect-patch-for-use-by-slim.patch integrity-service-api-and-dummy-provider.patch slim-main-patch.patch slim-secfs-patch.patch slim-make-and-config-stuff.patch slim-debug-output.patch slim-secfs-inode-i_private-build-fix.patch slim-documentation.patch panic-on-slim-selinux.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