The patch titled slim: secfs inode->i_private build fix has been added to the -mm tree. Its filename is slim-secfs-inode-i_private-build-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ 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 files 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 @@ -45,8 +45,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-main-patch-socket_post_create-hook-return-code.patch slim-secfs-patch.patch slim-make-and-config-stuff.patch slim-debug-output.patch slim-fix-security-issue-with-the-task_post_setuid-hook.patch slim-secfs-inode-i_private-build-fix.patch slim-documentation.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