All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/17] Xattr inode operation removal
@ 2016-05-30  8:57 Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 01/17] xattr: Remove unnecessary NULL attribute name check Andreas Gruenbacher
                   ` (17 more replies)
  0 siblings, 18 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

This is version 3 of the xattr inode operation removal patch series. The
patches are available in git form at:

  https://git.kernel.org/cgit/linux/kernel/git/agruen/linux.git/log/?h=work.xattr


Change since Version 2:

 * Update on top of 4.7-rc1 (changes in setxattr and xattr_handler->set; commits
   59301226 and 3767e255).

 * Commit "evm: Turn evm_update_evmxattr into void function" dropped as it
   doesn't matter here.


The purpose of this series is to remove unnecessary differences between the
xattr implementations on different filesystems and to simplify things.  With
the exception of redirectors like fuse, overlayfs, and ecryptfs, all
filesystems perform some de-multiplexing based on the xattr name, so it makes
sense to make that the default; filesystems that don't do any de-multiplexing
can easily use a catch-all xattr handler.

The patch series is structured as follows:

 * The initial patches convert the remaining filesystems over to use xattr
   handlers for implementing their de-multiplexing.

 * Next, a new IOP_XATTR inode operations flag is introduced: the flag is set
   when an inode supports xattrs.  On most filesystems, the IOP_XATTR flag is
   automatically initialized correctly when the inode is allocated based on
   whether or not the s_xattr field in the inode's superblock is defined.
   Filesystems that support xattrs on some but not all inodes can clear the
   IOP_XATTR flag appropriately.

 * The IOP_XATTR flag is then used to get rid of the two remaining places where
   xattr inode operations other than the generic ones are used: bad inodes and
   libfs empty directories.

 * After that, we get rid of the remaining direct accesses to xattr inode
   operations.

 * Finally, we stop calling the xattr inode operations and remove them.

Note that these patches only remove the getxattr, setxattr, and removexattr
inode operations. The listxattr inode operation does not do any attribute name
de-multiplexing, and remains unchanged except for checking the new IOP_XATTR
flag as well now.

Note that this patch series still breaks Lustre.  I'm hoping that the Lustre
developers will come up with a patch to switch lustre over to use xattr
handlers.

Thanks,
Andreas


Andreas Gruenbacher (17):
  xattr: Remove unnecessary NULL attribute name check
  jffs2: Remove jffs2_{get,set,remove}xattr macros
  hfs: Switch to generic xattr handlers
  kernfs: Switch to generic xattr handlers
  sockfs: getxattr: Fail with -EOPNOTSUPP for invalid attribute names
  sockfs: Get rid of getxattr iop
  ecryptfs: Switch to generic xattr handlers
  overlayfs: Switch to generic xattr handlers
  fuse: Switch to generic xattr handlers
  vfs: Move xattr_resolve_name to the front of fs/xattr.c
  vfs: Add IOP_XATTR inode operations flag
  vfs: Use IOP_XATTR flag for bad-inode handling
  libfs: Use IOP_XATTR flag for empty directory handling
  xattr: Add __vfs_{get,set,remove}xattr helpers
  vfs: Check for the IOP_XATTR flag in listxattr
  xattr: Stop calling {get,set,remove}xattr inode operations
  vfs: Remove {get,set,remove}xattr inode operations

 Documentation/filesystems/Locking     |  24 +++-
 Documentation/filesystems/vfs.txt     |  45 ++++--
 arch/ia64/kernel/perfmon.c            |   4 +-
 drivers/gpu/drm/drm_drv.c             |   1 +
 fs/9p/vfs_inode_dotl.c                |   9 --
 fs/aio.c                              |   2 +-
 fs/anon_inodes.c                      |   2 +-
 fs/bad_inode.c                        |  21 +--
 fs/block_dev.c                        |   2 +-
 fs/btrfs/inode.c                      |  12 --
 fs/btrfs/tests/btrfs-tests.c          |   2 +-
 fs/cachefiles/bind.c                  |   4 +-
 fs/cachefiles/namei.c                 |   4 +-
 fs/ceph/dir.c                         |   3 -
 fs/ceph/inode.c                       |   6 -
 fs/cifs/cifsfs.c                      |   9 --
 fs/ecryptfs/ecryptfs_kernel.h         |   2 +
 fs/ecryptfs/inode.c                   |  67 ++++++---
 fs/ecryptfs/main.c                    |   1 +
 fs/ecryptfs/mmap.c                    |  13 +-
 fs/ext2/file.c                        |   3 -
 fs/ext2/namei.c                       |   6 -
 fs/ext2/symlink.c                     |   6 -
 fs/ext4/file.c                        |   3 -
 fs/ext4/namei.c                       |   6 -
 fs/ext4/symlink.c                     |   9 --
 fs/f2fs/file.c                        |   3 -
 fs/f2fs/namei.c                       |  12 --
 fs/fuse/dir.c                         |  49 +++++--
 fs/fuse/fuse_i.h                      |   2 +
 fs/fuse/inode.c                       |   1 +
 fs/gfs2/inode.c                       |   9 --
 fs/hfs/attr.c                         |  83 +++++++----
 fs/hfs/hfs_fs.h                       |   6 +-
 fs/hfs/inode.c                        |   5 +-
 fs/hfs/super.c                        |   1 +
 fs/hfsplus/dir.c                      |   3 -
 fs/hfsplus/inode.c                    |   3 -
 fs/inode.c                            |   2 +
 fs/jffs2/dir.c                        |   3 -
 fs/jffs2/file.c                       |   3 -
 fs/jffs2/symlink.c                    |   3 -
 fs/jffs2/xattr.h                      |   6 -
 fs/jfs/file.c                         |   3 -
 fs/jfs/namei.c                        |   3 -
 fs/jfs/symlink.c                      |   6 -
 fs/kernfs/dir.c                       |   3 -
 fs/kernfs/inode.c                     | 155 +++++++++++----------
 fs/kernfs/kernfs-internal.h           |   7 +-
 fs/kernfs/mount.c                     |   1 +
 fs/kernfs/symlink.c                   |   3 -
 fs/libfs.c                            |  25 +---
 fs/nfs/nfs3proc.c                     |   6 -
 fs/nfs/nfs4proc.c                     |   6 -
 fs/nsfs.c                             |   2 +-
 fs/ocfs2/file.c                       |   3 -
 fs/ocfs2/namei.c                      |   3 -
 fs/ocfs2/symlink.c                    |   3 -
 fs/orangefs/inode.c                   |   3 -
 fs/orangefs/namei.c                   |   3 -
 fs/orangefs/symlink.c                 |   1 -
 fs/overlayfs/copy_up.c                |   4 +-
 fs/overlayfs/dir.c                    |   3 -
 fs/overlayfs/inode.c                  |  48 +++++--
 fs/overlayfs/overlayfs.h              |   7 +-
 fs/overlayfs/super.c                  |   5 +-
 fs/pipe.c                             |   2 +-
 fs/reiserfs/file.c                    |   3 -
 fs/reiserfs/namei.c                   |   9 --
 fs/squashfs/inode.c                   |   1 -
 fs/squashfs/namei.c                   |   1 -
 fs/squashfs/symlink.c                 |   1 -
 fs/squashfs/xattr.h                   |   1 -
 fs/ubifs/dir.c                        |   3 -
 fs/ubifs/file.c                       |   6 -
 fs/xattr.c                            | 250 ++++++++++++++++------------------
 fs/xfs/xfs_iops.c                     |  15 --
 include/linux/fs.h                    |   7 +-
 include/linux/xattr.h                 |   7 +-
 mm/shmem.c                            |  15 --
 net/socket.c                          |  59 ++++----
 security/commoncap.c                  |  25 ++--
 security/integrity/evm/evm_crypto.c   |   7 +-
 security/integrity/evm/evm_main.c     |   4 +-
 security/integrity/ima/ima_appraise.c |  21 ++-
 security/selinux/hooks.c              |  19 +--
 security/smack/smack_lsm.c            |  12 +-
 87 files changed, 538 insertions(+), 693 deletions(-)

-- 
2.5.5


^ permalink raw reply	[flat|nested] 27+ messages in thread

* [PATCH v3 01/17] xattr: Remove unnecessary NULL attribute name check
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 02/17] jffs2: Remove jffs2_{get,set,remove}xattr macros Andreas Gruenbacher
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

When NULL is passed to one of the xattr system calls as the attribute
name, copying that name from user space already fails with -EFAULT;
xattr_resolve_name is never called with a NULL attribute name.

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
 fs/xattr.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/fs/xattr.c b/fs/xattr.c
index 4beafc4..75f9f14 100644
--- a/fs/xattr.c
+++ b/fs/xattr.c
@@ -668,9 +668,6 @@ xattr_resolve_name(const struct xattr_handler **handlers, const char **name)
 {
 	const struct xattr_handler *handler;
 
-	if (!*name)
-		return ERR_PTR(-EINVAL);
-
 	for_each_xattr_handler(handlers, handler) {
 		const char *n;
 
-- 
2.5.5


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH v3 02/17] jffs2: Remove jffs2_{get,set,remove}xattr macros
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 01/17] xattr: Remove unnecessary NULL attribute name check Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 03/17] hfs: Switch to generic xattr handlers Andreas Gruenbacher
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

When CONFIG_JFFS2_FS_XATTR is off, jffs2_xattr_handlers is defined as
NULL. With sb->s_xattr == NULL, the generic_{get,set,remove}xattr
functions produce the same result that setting the {get,set,remove}xattr
inode operations to NULL produces, so there is no need for these macros.

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
 fs/jffs2/dir.c     | 6 +++---
 fs/jffs2/file.c    | 6 +++---
 fs/jffs2/symlink.c | 6 +++---
 fs/jffs2/xattr.h   | 6 ------
 4 files changed, 9 insertions(+), 15 deletions(-)

diff --git a/fs/jffs2/dir.c b/fs/jffs2/dir.c
index 84c4bf3..db84191 100644
--- a/fs/jffs2/dir.c
+++ b/fs/jffs2/dir.c
@@ -61,10 +61,10 @@ const struct inode_operations jffs2_dir_inode_operations =
 	.get_acl =	jffs2_get_acl,
 	.set_acl =	jffs2_set_acl,
 	.setattr =	jffs2_setattr,
-	.setxattr =	jffs2_setxattr,
-	.getxattr =	jffs2_getxattr,
+	.setxattr =	generic_setxattr,
+	.getxattr =	generic_getxattr,
 	.listxattr =	jffs2_listxattr,
-	.removexattr =	jffs2_removexattr
+	.removexattr =	generic_removexattr
 };
 
 /***********************************************************************/
diff --git a/fs/jffs2/file.c b/fs/jffs2/file.c
index 0e62dec..fdf9e1c 100644
--- a/fs/jffs2/file.c
+++ b/fs/jffs2/file.c
@@ -66,10 +66,10 @@ const struct inode_operations jffs2_file_inode_operations =
 	.get_acl =	jffs2_get_acl,
 	.set_acl =	jffs2_set_acl,
 	.setattr =	jffs2_setattr,
-	.setxattr =	jffs2_setxattr,
-	.getxattr =	jffs2_getxattr,
+	.setxattr =	generic_setxattr,
+	.getxattr =	generic_getxattr,
 	.listxattr =	jffs2_listxattr,
-	.removexattr =	jffs2_removexattr
+	.removexattr =	generic_removexattr
 };
 
 const struct address_space_operations jffs2_file_address_operations =
diff --git a/fs/jffs2/symlink.c b/fs/jffs2/symlink.c
index 2cabd64..afe2d75 100644
--- a/fs/jffs2/symlink.c
+++ b/fs/jffs2/symlink.c
@@ -16,8 +16,8 @@ const struct inode_operations jffs2_symlink_inode_operations =
 	.readlink =	generic_readlink,
 	.get_link =	simple_get_link,
 	.setattr =	jffs2_setattr,
-	.setxattr =	jffs2_setxattr,
-	.getxattr =	jffs2_getxattr,
+	.setxattr =	generic_setxattr,
+	.getxattr =	generic_getxattr,
 	.listxattr =	jffs2_listxattr,
-	.removexattr =	jffs2_removexattr
+	.removexattr =	generic_removexattr
 };
diff --git a/fs/jffs2/xattr.h b/fs/jffs2/xattr.h
index 467ff37..720007b 100644
--- a/fs/jffs2/xattr.h
+++ b/fs/jffs2/xattr.h
@@ -99,9 +99,6 @@ extern const struct xattr_handler jffs2_user_xattr_handler;
 extern const struct xattr_handler jffs2_trusted_xattr_handler;
 
 extern ssize_t jffs2_listxattr(struct dentry *, char *, size_t);
-#define jffs2_getxattr		generic_getxattr
-#define jffs2_setxattr		generic_setxattr
-#define jffs2_removexattr	generic_removexattr
 
 #else
 
@@ -116,9 +113,6 @@ extern ssize_t jffs2_listxattr(struct dentry *, char *, size_t);
 
 #define jffs2_xattr_handlers	NULL
 #define jffs2_listxattr		NULL
-#define jffs2_getxattr		NULL
-#define jffs2_setxattr		NULL
-#define jffs2_removexattr	NULL
 
 #endif /* CONFIG_JFFS2_FS_XATTR */
 
-- 
2.5.5


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH v3 03/17] hfs: Switch to generic xattr handlers
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 01/17] xattr: Remove unnecessary NULL attribute name check Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 02/17] jffs2: Remove jffs2_{get,set,remove}xattr macros Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 04/17] kernfs: " Andreas Gruenbacher
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
 fs/hfs/attr.c   | 83 +++++++++++++++++++++++++++++++++++++++------------------
 fs/hfs/hfs_fs.h |  6 +----
 fs/hfs/inode.c  |  7 ++---
 fs/hfs/super.c  |  1 +
 4 files changed, 63 insertions(+), 34 deletions(-)

diff --git a/fs/hfs/attr.c b/fs/hfs/attr.c
index d9a8691..b13b982 100644
--- a/fs/hfs/attr.c
+++ b/fs/hfs/attr.c
@@ -13,9 +13,13 @@
 #include "hfs_fs.h"
 #include "btree.h"
 
-int hfs_setxattr(struct dentry *unused, struct inode *inode,
-		 const char *name, const void *value,
-		 size_t size, int flags)
+enum hfs_xattr_type {
+	HFS_TYPE,
+	HFS_CREATOR,
+};
+
+static int __hfs_setxattr(struct inode *inode, enum hfs_xattr_type type,
+			  const void *value, size_t size, int flags)
 {
 	struct hfs_find_data fd;
 	hfs_cat_rec rec;
@@ -36,18 +40,22 @@ int hfs_setxattr(struct dentry *unused, struct inode *inode,
 			sizeof(struct hfs_cat_file));
 	file = &rec.file;
 
-	if (!strcmp(name, "hfs.type")) {
+	switch(type) {
+	case HFS_TYPE:
 		if (size == 4)
 			memcpy(&file->UsrWds.fdType, value, 4);
 		else
 			res = -ERANGE;
-	} else if (!strcmp(name, "hfs.creator")) {
+		break;
+
+	case HFS_CREATOR:
 		if (size == 4)
 			memcpy(&file->UsrWds.fdCreator, value, 4);
 		else
 			res = -ERANGE;
-	} else
-		res = -EOPNOTSUPP;
+		break;
+	}
+
 	if (!res)
 		hfs_bnode_write(fd.bnode, &rec, fd.entryoffset,
 				sizeof(struct hfs_cat_file));
@@ -56,8 +64,8 @@ out:
 	return res;
 }
 
-ssize_t hfs_getxattr(struct dentry *unused, struct inode *inode,
-		     const char *name, void *value, size_t size)
+static ssize_t __hfs_getxattr(struct inode *inode, enum hfs_xattr_type type,
+			      void *value, size_t size)
 {
 	struct hfs_find_data fd;
 	hfs_cat_rec rec;
@@ -80,41 +88,64 @@ ssize_t hfs_getxattr(struct dentry *unused, struct inode *inode,
 	}
 	file = &rec.file;
 
-	if (!strcmp(name, "hfs.type")) {
+	switch(type) {
+	case HFS_TYPE:
 		if (size >= 4) {
 			memcpy(value, &file->UsrWds.fdType, 4);
 			res = 4;
 		} else
 			res = size ? -ERANGE : 4;
-	} else if (!strcmp(name, "hfs.creator")) {
+		break;
+
+	case HFS_CREATOR:
 		if (size >= 4) {
 			memcpy(value, &file->UsrWds.fdCreator, 4);
 			res = 4;
 		} else
 			res = size ? -ERANGE : 4;
-	} else
-		res = -ENODATA;
+		break;
+	}
+
 out:
 	if (size)
 		hfs_find_exit(&fd);
 	return res;
 }
 
-#define HFS_ATTRLIST_SIZE (sizeof("hfs.creator")+sizeof("hfs.type"))
-
-ssize_t hfs_listxattr(struct dentry *dentry, char *buffer, size_t size)
+static int hfs_xattr_get(const struct xattr_handler *handler,
+			 struct dentry *unused, struct inode *inode,
+			 const char *name, void *value, size_t size)
 {
-	struct inode *inode = d_inode(dentry);
+	return __hfs_getxattr(inode, handler->flags, value, size);
+}
 
-	if (!S_ISREG(inode->i_mode) || HFS_IS_RSRC(inode))
+static int hfs_xattr_set(const struct xattr_handler *handler,
+			 struct dentry *unused, struct inode *inode,
+			 const char *name, const void *value, size_t size,
+			 int flags)
+{
+	if (!value)
 		return -EOPNOTSUPP;
 
-	if (!buffer || !size)
-		return HFS_ATTRLIST_SIZE;
-	if (size < HFS_ATTRLIST_SIZE)
-		return -ERANGE;
-	strcpy(buffer, "hfs.type");
-	strcpy(buffer + sizeof("hfs.type"), "hfs.creator");
-
-	return HFS_ATTRLIST_SIZE;
+	return __hfs_setxattr(inode, handler->flags, value, size, flags);
 }
+
+static const struct xattr_handler hfs_creator_handler = {
+	.name = "hfs.creator",
+	.flags = HFS_CREATOR,
+	.get = hfs_xattr_get,
+	.set = hfs_xattr_set,
+};
+
+static const struct xattr_handler hfs_type_handler = {
+	.name = "hfs.type",
+	.flags = HFS_TYPE,
+	.get = hfs_xattr_get,
+	.set = hfs_xattr_set,
+};
+
+const struct xattr_handler *hfs_xattr_handlers[] = {
+	&hfs_creator_handler,
+	&hfs_type_handler,
+	NULL
+};
diff --git a/fs/hfs/hfs_fs.h b/fs/hfs/hfs_fs.h
index ee2f385..c4691e8 100644
--- a/fs/hfs/hfs_fs.h
+++ b/fs/hfs/hfs_fs.h
@@ -212,11 +212,7 @@ extern void hfs_evict_inode(struct inode *);
 extern void hfs_delete_inode(struct inode *);
 
 /* attr.c */
-extern int hfs_setxattr(struct dentry *dentry, struct inode *inode, const char *name,
-			const void *value, size_t size, int flags);
-extern ssize_t hfs_getxattr(struct dentry *dentry, struct inode *inode,
-			    const char *name, void *value, size_t size);
-extern ssize_t hfs_listxattr(struct dentry *dentry, char *buffer, size_t size);
+extern const struct xattr_handler *hfs_xattr_handlers[];
 
 /* mdb.c */
 extern int hfs_mdb_get(struct super_block *);
diff --git a/fs/hfs/inode.c b/fs/hfs/inode.c
index 8eed66a..d7f833f 100644
--- a/fs/hfs/inode.c
+++ b/fs/hfs/inode.c
@@ -15,6 +15,7 @@
 #include <linux/mpage.h>
 #include <linux/sched.h>
 #include <linux/uio.h>
+#include <linux/xattr.h>
 
 #include "hfs_fs.h"
 #include "btree.h"
@@ -687,7 +688,7 @@ static const struct file_operations hfs_file_operations = {
 static const struct inode_operations hfs_file_inode_operations = {
 	.lookup		= hfs_file_lookup,
 	.setattr	= hfs_inode_setattr,
-	.setxattr	= hfs_setxattr,
-	.getxattr	= hfs_getxattr,
-	.listxattr	= hfs_listxattr,
+	.setxattr	= generic_setxattr,
+	.getxattr	= generic_getxattr,
+	.listxattr	= generic_listxattr,
 };
diff --git a/fs/hfs/super.c b/fs/hfs/super.c
index 1ca95c2..bf6304a 100644
--- a/fs/hfs/super.c
+++ b/fs/hfs/super.c
@@ -406,6 +406,7 @@ static int hfs_fill_super(struct super_block *sb, void *data, int silent)
 	}
 
 	sb->s_op = &hfs_super_operations;
+	sb->s_xattr = hfs_xattr_handlers;
 	sb->s_flags |= MS_NODIRATIME;
 	mutex_init(&sbi->bitmap_lock);
 
-- 
2.5.5


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH v3 04/17] kernfs: Switch to generic xattr handlers
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
                   ` (2 preceding siblings ...)
  2016-05-30  8:57 ` [PATCH v3 03/17] hfs: Switch to generic xattr handlers Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 05/17] sockfs: getxattr: Fail with -EOPNOTSUPP for invalid attribute names Andreas Gruenbacher
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Acked-by: Tejun Heo <tj@kernel.org>
---
 fs/kernfs/dir.c             |   6 +-
 fs/kernfs/inode.c           | 158 +++++++++++++++++++++++---------------------
 fs/kernfs/kernfs-internal.h |   7 +-
 fs/kernfs/mount.c           |   1 +
 fs/kernfs/symlink.c         |   6 +-
 5 files changed, 92 insertions(+), 86 deletions(-)

diff --git a/fs/kernfs/dir.c b/fs/kernfs/dir.c
index 8a65240..320d8a9 100644
--- a/fs/kernfs/dir.c
+++ b/fs/kernfs/dir.c
@@ -1126,9 +1126,9 @@ const struct inode_operations kernfs_dir_iops = {
 	.permission	= kernfs_iop_permission,
 	.setattr	= kernfs_iop_setattr,
 	.getattr	= kernfs_iop_getattr,
-	.setxattr	= kernfs_iop_setxattr,
-	.removexattr	= kernfs_iop_removexattr,
-	.getxattr	= kernfs_iop_getxattr,
+	.setxattr	= generic_setxattr,
+	.removexattr	= generic_removexattr,
+	.getxattr	= generic_getxattr,
 	.listxattr	= kernfs_iop_listxattr,
 
 	.mkdir		= kernfs_iop_mkdir,
diff --git a/fs/kernfs/inode.c b/fs/kernfs/inode.c
index 63b925d..6bc8754 100644
--- a/fs/kernfs/inode.c
+++ b/fs/kernfs/inode.c
@@ -28,9 +28,9 @@ static const struct inode_operations kernfs_iops = {
 	.permission	= kernfs_iop_permission,
 	.setattr	= kernfs_iop_setattr,
 	.getattr	= kernfs_iop_getattr,
-	.setxattr	= kernfs_iop_setxattr,
-	.removexattr	= kernfs_iop_removexattr,
-	.getxattr	= kernfs_iop_getxattr,
+	.setxattr	= generic_setxattr,
+	.removexattr	= generic_removexattr,
+	.getxattr	= generic_getxattr,
 	.listxattr	= kernfs_iop_listxattr,
 };
 
@@ -138,17 +138,12 @@ out:
 	return error;
 }
 
-static int kernfs_node_setsecdata(struct kernfs_node *kn, void **secdata,
+static int kernfs_node_setsecdata(struct kernfs_iattrs *attrs, void **secdata,
 				  u32 *secdata_len)
 {
-	struct kernfs_iattrs *attrs;
 	void *old_secdata;
 	size_t old_secdata_len;
 
-	attrs = kernfs_iattrs(kn);
-	if (!attrs)
-		return -ENOMEM;
-
 	old_secdata = attrs->ia_secdata;
 	old_secdata_len = attrs->ia_secdata_len;
 
@@ -160,71 +155,6 @@ static int kernfs_node_setsecdata(struct kernfs_node *kn, void **secdata,
 	return 0;
 }
 
-int kernfs_iop_setxattr(struct dentry *unused, struct inode *inode,
-			const char *name, const void *value,
-			size_t size, int flags)
-{
-	struct kernfs_node *kn = inode->i_private;
-	struct kernfs_iattrs *attrs;
-	void *secdata;
-	int error;
-	u32 secdata_len = 0;
-
-	attrs = kernfs_iattrs(kn);
-	if (!attrs)
-		return -ENOMEM;
-
-	if (!strncmp(name, XATTR_SECURITY_PREFIX, XATTR_SECURITY_PREFIX_LEN)) {
-		const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
-		error = security_inode_setsecurity(inode, suffix,
-						value, size, flags);
-		if (error)
-			return error;
-		error = security_inode_getsecctx(inode,
-						&secdata, &secdata_len);
-		if (error)
-			return error;
-
-		mutex_lock(&kernfs_mutex);
-		error = kernfs_node_setsecdata(kn, &secdata, &secdata_len);
-		mutex_unlock(&kernfs_mutex);
-
-		if (secdata)
-			security_release_secctx(secdata, secdata_len);
-		return error;
-	} else if (!strncmp(name, XATTR_TRUSTED_PREFIX, XATTR_TRUSTED_PREFIX_LEN)) {
-		return simple_xattr_set(&attrs->xattrs, name, value, size,
-					flags);
-	}
-
-	return -EINVAL;
-}
-
-int kernfs_iop_removexattr(struct dentry *dentry, const char *name)
-{
-	struct kernfs_node *kn = dentry->d_fsdata;
-	struct kernfs_iattrs *attrs;
-
-	attrs = kernfs_iattrs(kn);
-	if (!attrs)
-		return -ENOMEM;
-
-	return simple_xattr_set(&attrs->xattrs, name, NULL, 0, XATTR_REPLACE);
-}
-
-ssize_t kernfs_iop_getxattr(struct dentry *unused, struct inode *inode,
-			    const char *name, void *buf, size_t size)
-{
-	struct kernfs_node *kn = inode->i_private;
-	struct kernfs_iattrs *attrs;
-
-	attrs = kernfs_iattrs(kn);
-	if (!attrs)
-		return -ENOMEM;
-
-	return simple_xattr_get(&attrs->xattrs, name, buf, size);
-}
-
 ssize_t kernfs_iop_listxattr(struct dentry *dentry, char *buf, size_t size)
 {
 	struct kernfs_node *kn = dentry->d_fsdata;
@@ -376,3 +306,83 @@ int kernfs_iop_permission(struct inode *inode, int mask)
 
 	return generic_permission(inode, mask);
 }
+
+static int kernfs_xattr_get(const struct xattr_handler *handler,
+			    struct dentry *unused, struct inode *inode,
+			    const char *suffix, void *value, size_t size)
+{
+	const char *name = xattr_full_name(handler, suffix);
+	struct kernfs_node *kn = inode->i_private;
+	struct kernfs_iattrs *attrs;
+
+	attrs = kernfs_iattrs(kn);
+	if (!attrs)
+		return -ENOMEM;
+
+	return simple_xattr_get(&attrs->xattrs, name, value, size);
+}
+
+static int kernfs_xattr_set(const struct xattr_handler *handler,
+			    struct dentry *unused, struct inode *inode,
+			    const char *suffix, const void *value,
+			    size_t size, int flags)
+{
+	const char *name = xattr_full_name(handler, suffix);
+	struct kernfs_node *kn = inode->i_private;
+	struct kernfs_iattrs *attrs;
+
+	attrs = kernfs_iattrs(kn);
+	if (!attrs)
+		return -ENOMEM;
+
+	return simple_xattr_set(&attrs->xattrs, name, value, size, flags);
+}
+
+const struct xattr_handler kernfs_trusted_xattr_handler = {
+	.prefix = XATTR_TRUSTED_PREFIX,
+	.get = kernfs_xattr_get,
+	.set = kernfs_xattr_set,
+};
+
+static int kernfs_security_xattr_set(const struct xattr_handler *handler,
+				     struct dentry *unused, struct inode *inode,
+				     const char *suffix, const void *value,
+				     size_t size, int flags)
+{
+	struct kernfs_node *kn = inode->i_private;
+	struct kernfs_iattrs *attrs;
+	void *secdata;
+	u32 secdata_len = 0;
+	int error;
+
+	attrs = kernfs_iattrs(kn);
+	if (!attrs)
+		return -ENOMEM;
+
+	error = security_inode_setsecurity(inode, suffix, value, size, flags);
+	if (error)
+		return error;
+	error = security_inode_getsecctx(inode, &secdata, &secdata_len);
+	if (error)
+		return error;
+
+	mutex_lock(&kernfs_mutex);
+	error = kernfs_node_setsecdata(attrs, &secdata, &secdata_len);
+	mutex_unlock(&kernfs_mutex);
+
+	if (secdata)
+		security_release_secctx(secdata, secdata_len);
+	return error;
+}
+
+const struct xattr_handler kernfs_security_xattr_handler = {
+	.prefix = XATTR_SECURITY_PREFIX,
+	.get = kernfs_xattr_get,
+	.set = kernfs_security_xattr_set,
+};
+
+const struct xattr_handler *kernfs_xattr_handlers[] = {
+	&kernfs_trusted_xattr_handler,
+	&kernfs_security_xattr_handler,
+	NULL
+};
diff --git a/fs/kernfs/kernfs-internal.h b/fs/kernfs/kernfs-internal.h
index 3715923..bfd551b 100644
--- a/fs/kernfs/kernfs-internal.h
+++ b/fs/kernfs/kernfs-internal.h
@@ -76,17 +76,12 @@ extern struct kmem_cache *kernfs_node_cache;
 /*
  * inode.c
  */
+extern const struct xattr_handler *kernfs_xattr_handlers[];
 void kernfs_evict_inode(struct inode *inode);
 int kernfs_iop_permission(struct inode *inode, int mask);
 int kernfs_iop_setattr(struct dentry *dentry, struct iattr *iattr);
 int kernfs_iop_getattr(struct vfsmount *mnt, struct dentry *dentry,
 		       struct kstat *stat);
-int kernfs_iop_setxattr(struct dentry *dentry, struct inode *inode,
-			const char *name, const void *value,
-			size_t size, int flags);
-int kernfs_iop_removexattr(struct dentry *dentry, const char *name);
-ssize_t kernfs_iop_getxattr(struct dentry *dentry, struct inode *inode,
-			    const char *name, void *buf, size_t size);
 ssize_t kernfs_iop_listxattr(struct dentry *dentry, char *buf, size_t size);
 
 /*
diff --git a/fs/kernfs/mount.c b/fs/kernfs/mount.c
index 63534f5..9c225d7 100644
--- a/fs/kernfs/mount.c
+++ b/fs/kernfs/mount.c
@@ -156,6 +156,7 @@ static int kernfs_fill_super(struct super_block *sb, unsigned long magic)
 	sb->s_blocksize_bits = PAGE_SHIFT;
 	sb->s_magic = magic;
 	sb->s_op = &kernfs_sops;
+	sb->s_xattr = kernfs_xattr_handlers;
 	sb->s_time_gran = 1;
 
 	/* get root inode, initialize and unlock it */
diff --git a/fs/kernfs/symlink.c b/fs/kernfs/symlink.c
index 117b8b3..549a14c7 100644
--- a/fs/kernfs/symlink.c
+++ b/fs/kernfs/symlink.c
@@ -134,9 +134,9 @@ static const char *kernfs_iop_get_link(struct dentry *dentry,
 }
 
 const struct inode_operations kernfs_symlink_iops = {
-	.setxattr	= kernfs_iop_setxattr,
-	.removexattr	= kernfs_iop_removexattr,
-	.getxattr	= kernfs_iop_getxattr,
+	.setxattr	= generic_setxattr,
+	.removexattr	= generic_removexattr,
+	.getxattr	= generic_getxattr,
 	.listxattr	= kernfs_iop_listxattr,
 	.readlink	= generic_readlink,
 	.get_link	= kernfs_iop_get_link,
-- 
2.5.5

^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH v3 05/17] sockfs: getxattr: Fail with -EOPNOTSUPP for invalid attribute names
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
                   ` (3 preceding siblings ...)
  2016-05-30  8:57 ` [PATCH v3 04/17] kernfs: " Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 06/17] sockfs: Get rid of getxattr iop Andreas Gruenbacher
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

The standard return value for unsupported attribute names is
-EOPNOTSUPP, as opposed to undefined but supported attributes
(-ENODATA).

Also, fail for attribute names like "system.sockprotonameXXX" and
simplify the code a bit.

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
 net/socket.c | 24 ++++++------------------
 1 file changed, 6 insertions(+), 18 deletions(-)

diff --git a/net/socket.c b/net/socket.c
index a1bd161..9b3dca6 100644
--- a/net/socket.c
+++ b/net/socket.c
@@ -469,27 +469,15 @@ static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
 static ssize_t sockfs_getxattr(struct dentry *dentry, struct inode *inode,
 			       const char *name, void *value, size_t size)
 {
-	const char *proto_name;
-	size_t proto_size;
-	int error;
-
-	error = -ENODATA;
-	if (!strncmp(name, XATTR_NAME_SOCKPROTONAME, XATTR_NAME_SOCKPROTONAME_LEN)) {
-		proto_name = dentry->d_name.name;
-		proto_size = strlen(proto_name);
-
+	if (!strcmp(name, XATTR_NAME_SOCKPROTONAME)) {
 		if (value) {
-			error = -ERANGE;
-			if (proto_size + 1 > size)
-				goto out;
-
-			strncpy(value, proto_name, proto_size + 1);
+			if (dentry->d_name.len + 1 > size)
+				return -ERANGE;
+			memcpy(value, dentry->d_name.name, dentry->d_name.len + 1);
 		}
-		error = proto_size + 1;
+		return dentry->d_name.len + 1;
 	}
-
-out:
-	return error;
+	return -EOPNOTSUPP;
 }
 
 static ssize_t sockfs_listxattr(struct dentry *dentry, char *buffer,
-- 
2.5.5

^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH v3 06/17] sockfs: Get rid of getxattr iop
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
                   ` (4 preceding siblings ...)
  2016-05-30  8:57 ` [PATCH v3 05/17] sockfs: getxattr: Fail with -EOPNOTSUPP for invalid attribute names Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 07/17] ecryptfs: Switch to generic xattr handlers Andreas Gruenbacher
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

If we allow pseudo-filesystems created with mount_pseudo to have xattr
handlers, we can replace sockfs_getxattr with a sockfs_xattr_get handler
to use the xattr handler name parsing.

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
 arch/ia64/kernel/perfmon.c   |  4 ++--
 drivers/gpu/drm/drm_drv.c    |  1 +
 fs/aio.c                     |  2 +-
 fs/anon_inodes.c             |  2 +-
 fs/block_dev.c               |  2 +-
 fs/btrfs/tests/btrfs-tests.c |  2 +-
 fs/libfs.c                   |  3 ++-
 fs/nsfs.c                    |  2 +-
 fs/pipe.c                    |  2 +-
 include/linux/fs.h           |  1 +
 net/socket.c                 | 48 ++++++++++++++++++++++++++------------------
 11 files changed, 41 insertions(+), 28 deletions(-)

diff --git a/arch/ia64/kernel/perfmon.c b/arch/ia64/kernel/perfmon.c
index 2436ad5..4cef6a6 100644
--- a/arch/ia64/kernel/perfmon.c
+++ b/arch/ia64/kernel/perfmon.c
@@ -611,8 +611,8 @@ static const struct dentry_operations pfmfs_dentry_operations;
 static struct dentry *
 pfmfs_mount(struct file_system_type *fs_type, int flags, const char *dev_name, void *data)
 {
-	return mount_pseudo(fs_type, "pfm:", NULL, &pfmfs_dentry_operations,
-			PFMFS_MAGIC);
+	return mount_pseudo(fs_type, "pfm:", NULL, NULL,
+			    &pfmfs_dentry_operations, PFMFS_MAGIC);
 }
 
 static struct file_system_type pfm_fs_type = {
diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c
index bff8922..118658a 100644
--- a/drivers/gpu/drm/drm_drv.c
+++ b/drivers/gpu/drm/drm_drv.c
@@ -511,6 +511,7 @@ static struct dentry *drm_fs_mount(struct file_system_type *fs_type, int flags,
 	return mount_pseudo(fs_type,
 			    "drm:",
 			    &drm_fs_sops,
+			    NULL,
 			    &drm_fs_dops,
 			    0x010203ff);
 }
diff --git a/fs/aio.c b/fs/aio.c
index fb8e45b..5003cb8 100644
--- a/fs/aio.c
+++ b/fs/aio.c
@@ -239,7 +239,7 @@ static struct dentry *aio_mount(struct file_system_type *fs_type,
 	static const struct dentry_operations ops = {
 		.d_dname	= simple_dname,
 	};
-	return mount_pseudo(fs_type, "aio:", NULL, &ops, AIO_RING_MAGIC);
+	return mount_pseudo(fs_type, "aio:", NULL, NULL, &ops, AIO_RING_MAGIC);
 }
 
 /* aio_setup
diff --git a/fs/anon_inodes.c b/fs/anon_inodes.c
index 80ef38c..5e1aeea1 100644
--- a/fs/anon_inodes.c
+++ b/fs/anon_inodes.c
@@ -41,7 +41,7 @@ static const struct dentry_operations anon_inodefs_dentry_operations = {
 static struct dentry *anon_inodefs_mount(struct file_system_type *fs_type,
 				int flags, const char *dev_name, void *data)
 {
-	return mount_pseudo(fs_type, "anon_inode:", NULL,
+	return mount_pseudo(fs_type, "anon_inode:", NULL, NULL,
 			&anon_inodefs_dentry_operations, ANON_INODE_FS_MAGIC);
 }
 
diff --git a/fs/block_dev.c b/fs/block_dev.c
index 71ccab1..acabeaa 100644
--- a/fs/block_dev.c
+++ b/fs/block_dev.c
@@ -658,7 +658,7 @@ static struct dentry *bd_mount(struct file_system_type *fs_type,
 	int flags, const char *dev_name, void *data)
 {
 	struct dentry *dent;
-	dent = mount_pseudo(fs_type, "bdev:", &bdev_sops, NULL, BDEVFS_MAGIC);
+	dent = mount_pseudo(fs_type, "bdev:", &bdev_sops, NULL, NULL, BDEVFS_MAGIC);
 	if (dent)
 		dent->d_sb->s_iflags |= SB_I_CGROUPWB;
 	return dent;
diff --git a/fs/btrfs/tests/btrfs-tests.c b/fs/btrfs/tests/btrfs-tests.c
index f54bf45..ebecf33 100644
--- a/fs/btrfs/tests/btrfs-tests.c
+++ b/fs/btrfs/tests/btrfs-tests.c
@@ -40,7 +40,7 @@ static struct dentry *btrfs_test_mount(struct file_system_type *fs_type,
 				       void *data)
 {
 	return mount_pseudo(fs_type, "btrfs_test:", &btrfs_test_super_ops,
-			    NULL, BTRFS_TEST_MAGIC);
+			    NULL, NULL, BTRFS_TEST_MAGIC);
 }
 
 static struct file_system_type test_type = {
diff --git a/fs/libfs.c b/fs/libfs.c
index 3db2721..89341ad 100644
--- a/fs/libfs.c
+++ b/fs/libfs.c
@@ -206,7 +206,7 @@ static const struct super_operations simple_super_operations = {
  * will never be mountable)
  */
 struct dentry *mount_pseudo(struct file_system_type *fs_type, char *name,
-	const struct super_operations *ops,
+	const struct super_operations *ops, const struct xattr_handler **xattr,
 	const struct dentry_operations *dops, unsigned long magic)
 {
 	struct super_block *s;
@@ -223,6 +223,7 @@ struct dentry *mount_pseudo(struct file_system_type *fs_type, char *name,
 	s->s_blocksize_bits = PAGE_SHIFT;
 	s->s_magic = magic;
 	s->s_op = ops ? ops : &simple_super_operations;
+	s->s_xattr = xattr;
 	s->s_time_gran = 1;
 	root = new_inode(s);
 	if (!root)
diff --git a/fs/nsfs.c b/fs/nsfs.c
index 8f20d60..e151cc3 100644
--- a/fs/nsfs.c
+++ b/fs/nsfs.c
@@ -154,7 +154,7 @@ static const struct super_operations nsfs_ops = {
 static struct dentry *nsfs_mount(struct file_system_type *fs_type,
 			int flags, const char *dev_name, void *data)
 {
-	return mount_pseudo(fs_type, "nsfs:", &nsfs_ops,
+	return mount_pseudo(fs_type, "nsfs:", &nsfs_ops, NULL,
 			&ns_dentry_operations, NSFS_MAGIC);
 }
 static struct file_system_type nsfs = {
diff --git a/fs/pipe.c b/fs/pipe.c
index 0d3f516..035fa6f 100644
--- a/fs/pipe.c
+++ b/fs/pipe.c
@@ -1143,7 +1143,7 @@ static const struct super_operations pipefs_ops = {
 static struct dentry *pipefs_mount(struct file_system_type *fs_type,
 			 int flags, const char *dev_name, void *data)
 {
-	return mount_pseudo(fs_type, "pipe:", &pipefs_ops,
+	return mount_pseudo(fs_type, "pipe:", &pipefs_ops, NULL,
 			&pipefs_dentry_operations, PIPEFS_MAGIC);
 }
 
diff --git a/include/linux/fs.h b/include/linux/fs.h
index dd28814..a1f69bd 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -2059,6 +2059,7 @@ struct super_block *sget(struct file_system_type *type,
 			int flags, void *data);
 extern struct dentry *mount_pseudo(struct file_system_type *, char *,
 	const struct super_operations *ops,
+	const struct xattr_handler **xattr,
 	const struct dentry_operations *dops,
 	unsigned long);
 
diff --git a/net/socket.c b/net/socket.c
index 9b3dca6..be5463f 100644
--- a/net/socket.c
+++ b/net/socket.c
@@ -320,11 +320,38 @@ static const struct dentry_operations sockfs_dentry_operations = {
 	.d_dname  = sockfs_dname,
 };
 
+static int sockfs_xattr_get(const struct xattr_handler *handler,
+			    struct dentry *dentry, struct inode *inode,
+			    const char *suffix, void *value, size_t size)
+{
+	if (value) {
+		if (dentry->d_name.len + 1 > size)
+			return -ERANGE;
+		memcpy(value, dentry->d_name.name, dentry->d_name.len + 1);
+	}
+	return dentry->d_name.len + 1;
+}
+
+#define XATTR_SOCKPROTONAME_SUFFIX "sockprotoname"
+#define XATTR_NAME_SOCKPROTONAME (XATTR_SYSTEM_PREFIX XATTR_SOCKPROTONAME_SUFFIX)
+#define XATTR_NAME_SOCKPROTONAME_LEN (sizeof(XATTR_NAME_SOCKPROTONAME)-1)
+
+static const struct xattr_handler sockfs_xattr_handler = {
+	.name = XATTR_NAME_SOCKPROTONAME,
+	.get = sockfs_xattr_get,
+};
+
+static const struct xattr_handler *sockfs_xattr_handlers[] = {
+	&sockfs_xattr_handler,
+	NULL
+};
+
 static struct dentry *sockfs_mount(struct file_system_type *fs_type,
 			 int flags, const char *dev_name, void *data)
 {
 	return mount_pseudo(fs_type, "socket:", &sockfs_ops,
-		&sockfs_dentry_operations, SOCKFS_MAGIC);
+			    sockfs_xattr_handlers,
+			    &sockfs_dentry_operations, SOCKFS_MAGIC);
 }
 
 static struct vfsmount *sock_mnt __read_mostly;
@@ -463,23 +490,6 @@ static struct socket *sockfd_lookup_light(int fd, int *err, int *fput_needed)
 	return NULL;
 }
 
-#define XATTR_SOCKPROTONAME_SUFFIX "sockprotoname"
-#define XATTR_NAME_SOCKPROTONAME (XATTR_SYSTEM_PREFIX XATTR_SOCKPROTONAME_SUFFIX)
-#define XATTR_NAME_SOCKPROTONAME_LEN (sizeof(XATTR_NAME_SOCKPROTONAME)-1)
-static ssize_t sockfs_getxattr(struct dentry *dentry, struct inode *inode,
-			       const char *name, void *value, size_t size)
-{
-	if (!strcmp(name, XATTR_NAME_SOCKPROTONAME)) {
-		if (value) {
-			if (dentry->d_name.len + 1 > size)
-				return -ERANGE;
-			memcpy(value, dentry->d_name.name, dentry->d_name.len + 1);
-		}
-		return dentry->d_name.len + 1;
-	}
-	return -EOPNOTSUPP;
-}
-
 static ssize_t sockfs_listxattr(struct dentry *dentry, char *buffer,
 				size_t size)
 {
@@ -509,7 +519,7 @@ static ssize_t sockfs_listxattr(struct dentry *dentry, char *buffer,
 }
 
 static const struct inode_operations sockfs_inode_ops = {
-	.getxattr = sockfs_getxattr,
+	.getxattr = generic_getxattr,
 	.listxattr = sockfs_listxattr,
 };
 
-- 
2.5.5

^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH v3 07/17] ecryptfs: Switch to generic xattr handlers
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
                   ` (5 preceding siblings ...)
  2016-05-30  8:57 ` [PATCH v3 06/17] sockfs: Get rid of getxattr iop Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 08/17] overlayfs: " Andreas Gruenbacher
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
 fs/ecryptfs/ecryptfs_kernel.h |  2 ++
 fs/ecryptfs/inode.c           | 62 +++++++++++++++++++++++++++++++++----------
 fs/ecryptfs/main.c            |  1 +
 3 files changed, 51 insertions(+), 14 deletions(-)

diff --git a/fs/ecryptfs/ecryptfs_kernel.h b/fs/ecryptfs/ecryptfs_kernel.h
index 4ba1547..599a292 100644
--- a/fs/ecryptfs/ecryptfs_kernel.h
+++ b/fs/ecryptfs/ecryptfs_kernel.h
@@ -715,4 +715,6 @@ int ecryptfs_set_f_namelen(long *namelen, long lower_namelen,
 int ecryptfs_derive_iv(char *iv, struct ecryptfs_crypt_stat *crypt_stat,
 		       loff_t offset);
 
+extern const struct xattr_handler *ecryptfs_xattr_handlers[];
+
 #endif /* #ifndef ECRYPTFS_KERNEL_H */
diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c
index 9d153b6..cef32cc 100644
--- a/fs/ecryptfs/inode.c
+++ b/fs/ecryptfs/inode.c
@@ -1066,19 +1066,22 @@ out:
 	return rc;
 }
 
-static int ecryptfs_removexattr(struct dentry *dentry, const char *name)
+static int ecryptfs_removexattr(struct dentry *dentry, struct inode *inode,
+				const char *name)
 {
 	int rc = 0;
 	struct dentry *lower_dentry;
+	struct inode *lower_inode;
 
 	lower_dentry = ecryptfs_dentry_to_lower(dentry);
-	if (!d_inode(lower_dentry)->i_op->removexattr) {
+	lower_inode = ecryptfs_inode_to_lower(inode);
+	if (!lower_inode->i_op->removexattr) {
 		rc = -EOPNOTSUPP;
 		goto out;
 	}
-	inode_lock(d_inode(lower_dentry));
-	rc = d_inode(lower_dentry)->i_op->removexattr(lower_dentry, name);
-	inode_unlock(d_inode(lower_dentry));
+	inode_lock(lower_inode);
+	rc = lower_inode->i_op->removexattr(lower_dentry, name);
+	inode_unlock(lower_inode);
 out:
 	return rc;
 }
@@ -1089,10 +1092,10 @@ const struct inode_operations ecryptfs_symlink_iops = {
 	.permission = ecryptfs_permission,
 	.setattr = ecryptfs_setattr,
 	.getattr = ecryptfs_getattr_link,
-	.setxattr = ecryptfs_setxattr,
-	.getxattr = ecryptfs_getxattr,
+	.setxattr = generic_setxattr,
+	.getxattr = generic_getxattr,
 	.listxattr = ecryptfs_listxattr,
-	.removexattr = ecryptfs_removexattr
+	.removexattr = generic_removexattr
 };
 
 const struct inode_operations ecryptfs_dir_iops = {
@@ -1107,18 +1110,49 @@ const struct inode_operations ecryptfs_dir_iops = {
 	.rename = ecryptfs_rename,
 	.permission = ecryptfs_permission,
 	.setattr = ecryptfs_setattr,
-	.setxattr = ecryptfs_setxattr,
-	.getxattr = ecryptfs_getxattr,
+	.setxattr = generic_setxattr,
+	.getxattr = generic_getxattr,
 	.listxattr = ecryptfs_listxattr,
-	.removexattr = ecryptfs_removexattr
+	.removexattr = generic_removexattr
 };
 
 const struct inode_operations ecryptfs_main_iops = {
 	.permission = ecryptfs_permission,
 	.setattr = ecryptfs_setattr,
 	.getattr = ecryptfs_getattr,
-	.setxattr = ecryptfs_setxattr,
-	.getxattr = ecryptfs_getxattr,
+	.setxattr = generic_setxattr,
+	.getxattr = generic_getxattr,
 	.listxattr = ecryptfs_listxattr,
-	.removexattr = ecryptfs_removexattr
+	.removexattr = generic_removexattr
+};
+
+static int ecryptfs_xattr_get(const struct xattr_handler *handler,
+			      struct dentry *dentry, struct inode *inode,
+			      const char *name, void *buffer, size_t size)
+{
+	return ecryptfs_getxattr(dentry, inode, name, buffer, size);
+}
+
+static int ecryptfs_xattr_set(const struct xattr_handler *handler,
+			      struct dentry *dentry, struct inode *inode,
+			      const char *name, const void *value, size_t size,
+			      int flags)
+{
+	if (value)
+		return ecryptfs_setxattr(dentry, inode, name, value, size, flags);
+	else {
+		BUG_ON(flags != XATTR_REPLACE);
+		return ecryptfs_removexattr(dentry, inode, name);
+	}
+}
+
+const struct xattr_handler ecryptfs_xattr_handler = {
+	.prefix = "",  /* match anything */
+	.get = ecryptfs_xattr_get,
+	.set = ecryptfs_xattr_set,
+};
+
+const struct xattr_handler *ecryptfs_xattr_handlers[] = {
+	&ecryptfs_xattr_handler,
+	NULL
 };
diff --git a/fs/ecryptfs/main.c b/fs/ecryptfs/main.c
index 1698132..44ee3e2 100644
--- a/fs/ecryptfs/main.c
+++ b/fs/ecryptfs/main.c
@@ -529,6 +529,7 @@ static struct dentry *ecryptfs_mount(struct file_system_type *fs_type, int flags
 	/* ->kill_sb() will take care of sbi after that point */
 	sbi = NULL;
 	s->s_op = &ecryptfs_sops;
+	s->s_xattr = ecryptfs_xattr_handlers;
 	s->s_d_op = &ecryptfs_dops;
 
 	err = "Reading sb failed";
-- 
2.5.5

^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH v3 08/17] overlayfs: Switch to generic xattr handlers
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
                   ` (6 preceding siblings ...)
  2016-05-30  8:57 ` [PATCH v3 07/17] ecryptfs: Switch to generic xattr handlers Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 09/17] fuse: " Andreas Gruenbacher
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
 fs/overlayfs/dir.c       |  6 +++---
 fs/overlayfs/inode.c     | 54 +++++++++++++++++++++++++++++++++++++-----------
 fs/overlayfs/overlayfs.h |  7 +------
 fs/overlayfs/super.c     |  1 +
 4 files changed, 47 insertions(+), 21 deletions(-)

diff --git a/fs/overlayfs/dir.c b/fs/overlayfs/dir.c
index 22f0253..450bc74 100644
--- a/fs/overlayfs/dir.c
+++ b/fs/overlayfs/dir.c
@@ -910,8 +910,8 @@ const struct inode_operations ovl_dir_inode_operations = {
 	.mknod		= ovl_mknod,
 	.permission	= ovl_permission,
 	.getattr	= ovl_dir_getattr,
-	.setxattr	= ovl_setxattr,
-	.getxattr	= ovl_getxattr,
+	.setxattr	= generic_setxattr,
+	.getxattr	= generic_getxattr,
 	.listxattr	= ovl_listxattr,
-	.removexattr	= ovl_removexattr,
+	.removexattr	= generic_removexattr,
 };
diff --git a/fs/overlayfs/inode.c b/fs/overlayfs/inode.c
index 0ed7c40..6c9f1fb 100644
--- a/fs/overlayfs/inode.c
+++ b/fs/overlayfs/inode.c
@@ -210,9 +210,8 @@ static bool ovl_is_private_xattr(const char *name)
 	return strncmp(name, OVL_XATTR_PRE_NAME, OVL_XATTR_PRE_LEN) == 0;
 }
 
-int ovl_setxattr(struct dentry *dentry, struct inode *inode,
-		 const char *name, const void *value,
-		 size_t size, int flags)
+static int ovl_setxattr(struct dentry *dentry, const char *name,
+			const void *value, size_t size, int flags)
 {
 	int err;
 	struct dentry *upperdentry;
@@ -247,8 +246,8 @@ static bool ovl_need_xattr_filter(struct dentry *dentry,
 		return false;
 }
 
-ssize_t ovl_getxattr(struct dentry *dentry, struct inode *inode,
-		     const char *name, void *value, size_t size)
+static ssize_t ovl_getxattr(struct dentry *dentry, struct inode *inode,
+			    const char *name, void *value, size_t size)
 {
 	struct path realpath;
 	enum ovl_path_type type = ovl_path_real(dentry, &realpath);
@@ -291,7 +290,7 @@ ssize_t ovl_listxattr(struct dentry *dentry, char *list, size_t size)
 	return res;
 }
 
-int ovl_removexattr(struct dentry *dentry, const char *name)
+static int ovl_removexattr(struct dentry *dentry, const char *name)
 {
 	int err;
 	struct path realpath;
@@ -375,10 +374,10 @@ static const struct inode_operations ovl_file_inode_operations = {
 	.setattr	= ovl_setattr,
 	.permission	= ovl_permission,
 	.getattr	= ovl_getattr,
-	.setxattr	= ovl_setxattr,
-	.getxattr	= ovl_getxattr,
+	.setxattr	= generic_setxattr,
+	.getxattr	= generic_getxattr,
 	.listxattr	= ovl_listxattr,
-	.removexattr	= ovl_removexattr,
+	.removexattr	= generic_removexattr,
 };
 
 static const struct inode_operations ovl_symlink_inode_operations = {
@@ -386,10 +385,10 @@ static const struct inode_operations ovl_symlink_inode_operations = {
 	.get_link	= ovl_get_link,
 	.readlink	= ovl_readlink,
 	.getattr	= ovl_getattr,
-	.setxattr	= ovl_setxattr,
-	.getxattr	= ovl_getxattr,
+	.setxattr	= generic_setxattr,
+	.getxattr	= generic_getxattr,
 	.listxattr	= ovl_listxattr,
-	.removexattr	= ovl_removexattr,
+	.removexattr	= generic_removexattr,
 };
 
 struct inode *ovl_new_inode(struct super_block *sb, umode_t mode,
@@ -434,3 +433,34 @@ struct inode *ovl_new_inode(struct super_block *sb, umode_t mode,
 
 	return inode;
 }
+
+static int ovl_xattr_get(const struct xattr_handler *handler,
+			 struct dentry *dentry, struct inode *inode,
+			 const char *name, void *buffer, size_t size)
+{
+	return ovl_getxattr(dentry, inode, name, buffer, size);
+}
+
+static int ovl_xattr_set(const struct xattr_handler *handler,
+			 struct dentry *dentry, struct inode *inode,
+			 const char *name, const void *value, size_t size,
+			 int flags)
+{
+	if (value)
+		return ovl_setxattr(dentry, name, value, size, flags);
+	else {
+		BUG_ON(flags != XATTR_REPLACE);
+		return ovl_removexattr(dentry, name);
+	}
+}
+
+const struct xattr_handler ovl_xattr_handler = {
+	.prefix = "",  /* match anything */
+	.get = ovl_xattr_get,
+	.set = ovl_xattr_set,
+};
+
+const struct xattr_handler *ovl_xattr_handlers[] = {
+	&ovl_xattr_handler,
+	NULL
+};
diff --git a/fs/overlayfs/overlayfs.h b/fs/overlayfs/overlayfs.h
index 4bd9b5b..20e1990 100644
--- a/fs/overlayfs/overlayfs.h
+++ b/fs/overlayfs/overlayfs.h
@@ -172,13 +172,7 @@ int ovl_check_d_type_supported(struct path *realpath);
 /* inode.c */
 int ovl_setattr(struct dentry *dentry, struct iattr *attr);
 int ovl_permission(struct inode *inode, int mask);
-int ovl_setxattr(struct dentry *dentry, struct inode *inode,
-		 const char *name, const void *value,
-		 size_t size, int flags);
-ssize_t ovl_getxattr(struct dentry *dentry, struct inode *inode,
-		     const char *name, void *value, size_t size);
 ssize_t ovl_listxattr(struct dentry *dentry, char *list, size_t size);
-int ovl_removexattr(struct dentry *dentry, const char *name);
 struct inode *ovl_d_select_inode(struct dentry *dentry, unsigned file_flags);
 
 struct inode *ovl_new_inode(struct super_block *sb, umode_t mode,
@@ -188,6 +182,7 @@ static inline void ovl_copyattr(struct inode *from, struct inode *to)
 	to->i_uid = from->i_uid;
 	to->i_gid = from->i_gid;
 }
+extern const struct xattr_handler *ovl_xattr_handlers[];
 
 /* dir.c */
 extern const struct inode_operations ovl_dir_inode_operations;
diff --git a/fs/overlayfs/super.c b/fs/overlayfs/super.c
index ce02f46..dab5301a 100644
--- a/fs/overlayfs/super.c
+++ b/fs/overlayfs/super.c
@@ -1154,6 +1154,7 @@ static int ovl_fill_super(struct super_block *sb, void *data, int silent)
 
 	sb->s_magic = OVERLAYFS_SUPER_MAGIC;
 	sb->s_op = &ovl_super_operations;
+	sb->s_xattr = ovl_xattr_handlers;
 	sb->s_root = root_dentry;
 	sb->s_fs_info = ufs;
 
-- 
2.5.5

^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH v3 09/17] fuse: Switch to generic xattr handlers
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
                   ` (7 preceding siblings ...)
  2016-05-30  8:57 ` [PATCH v3 08/17] overlayfs: " Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 10/17] vfs: Move xattr_resolve_name to the front of fs/xattr.c Andreas Gruenbacher
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
 fs/fuse/dir.c    | 58 ++++++++++++++++++++++++++++++++++++++++++--------------
 fs/fuse/fuse_i.h |  2 ++
 fs/fuse/inode.c  |  1 +
 3 files changed, 47 insertions(+), 14 deletions(-)

diff --git a/fs/fuse/dir.c b/fs/fuse/dir.c
index ccd4971..b44177a7 100644
--- a/fs/fuse/dir.c
+++ b/fs/fuse/dir.c
@@ -13,6 +13,7 @@
 #include <linux/sched.h>
 #include <linux/namei.h>
 #include <linux/slab.h>
+#include <linux/xattr.h>
 
 static bool fuse_use_readdirplus(struct inode *dir, struct dir_context *ctx)
 {
@@ -1719,9 +1720,8 @@ static int fuse_getattr(struct vfsmount *mnt, struct dentry *entry,
 	return fuse_update_attributes(inode, stat, NULL, NULL);
 }
 
-static int fuse_setxattr(struct dentry *unused, struct inode *inode,
-			 const char *name, const void *value,
-			 size_t size, int flags)
+static int fuse_setxattr(struct inode *inode, const char *name,
+			 const void *value, size_t size, int flags)
 {
 	struct fuse_conn *fc = get_fuse_conn(inode);
 	FUSE_ARGS(args);
@@ -1838,9 +1838,8 @@ static ssize_t fuse_listxattr(struct dentry *entry, char *list, size_t size)
 	return ret;
 }
 
-static int fuse_removexattr(struct dentry *entry, const char *name)
+static int fuse_removexattr(struct inode *inode, const char *name)
 {
-	struct inode *inode = d_inode(entry);
 	struct fuse_conn *fc = get_fuse_conn(inode);
 	FUSE_ARGS(args);
 	int err;
@@ -1879,10 +1878,10 @@ static const struct inode_operations fuse_dir_inode_operations = {
 	.mknod		= fuse_mknod,
 	.permission	= fuse_permission,
 	.getattr	= fuse_getattr,
-	.setxattr	= fuse_setxattr,
-	.getxattr	= fuse_getxattr,
+	.setxattr	= generic_setxattr,
+	.getxattr	= generic_getxattr,
 	.listxattr	= fuse_listxattr,
-	.removexattr	= fuse_removexattr,
+	.removexattr	= generic_removexattr,
 };
 
 static const struct file_operations fuse_dir_operations = {
@@ -1900,10 +1899,10 @@ static const struct inode_operations fuse_common_inode_operations = {
 	.setattr	= fuse_setattr,
 	.permission	= fuse_permission,
 	.getattr	= fuse_getattr,
-	.setxattr	= fuse_setxattr,
-	.getxattr	= fuse_getxattr,
+	.setxattr	= generic_setxattr,
+	.getxattr	= generic_getxattr,
 	.listxattr	= fuse_listxattr,
-	.removexattr	= fuse_removexattr,
+	.removexattr	= generic_removexattr,
 };
 
 static const struct inode_operations fuse_symlink_inode_operations = {
@@ -1911,10 +1910,10 @@ static const struct inode_operations fuse_symlink_inode_operations = {
 	.get_link	= fuse_get_link,
 	.readlink	= generic_readlink,
 	.getattr	= fuse_getattr,
-	.setxattr	= fuse_setxattr,
-	.getxattr	= fuse_getxattr,
+	.setxattr	= generic_setxattr,
+	.getxattr	= generic_getxattr,
 	.listxattr	= fuse_listxattr,
-	.removexattr	= fuse_removexattr,
+	.removexattr	= generic_removexattr,
 };
 
 void fuse_init_common(struct inode *inode)
@@ -1932,3 +1931,34 @@ void fuse_init_symlink(struct inode *inode)
 {
 	inode->i_op = &fuse_symlink_inode_operations;
 }
+
+static int fuse_xattr_get(const struct xattr_handler *handler,
+		          struct dentry *dentry, struct inode *inode,
+		          const char *name, void *buffer, size_t size)
+{
+       return fuse_getxattr(dentry, inode, name, buffer, size);
+}
+
+static int fuse_xattr_set(const struct xattr_handler *handler,
+		          struct dentry *dentry, struct inode *inode,
+			  const char *name, const void *value, size_t size,
+			  int flags)
+{
+       if (value)
+		return fuse_setxattr(inode, name, value, size, flags);
+       else {
+		BUG_ON(flags != XATTR_REPLACE);
+		return fuse_removexattr(inode, name);
+       }
+}
+
+const struct xattr_handler fuse_xattr_handler = {
+       .prefix = "",  /* match anything */
+       .get = fuse_xattr_get,
+       .set = fuse_xattr_set,
+};
+
+const struct xattr_handler *fuse_xattr_handlers[] = {
+       &fuse_xattr_handler,
+       NULL
+};
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h
index eddbe02..acf3481 100644
--- a/fs/fuse/fuse_i.h
+++ b/fs/fuse/fuse_i.h
@@ -956,4 +956,6 @@ int fuse_do_setattr(struct inode *inode, struct iattr *attr,
 
 void fuse_set_initialized(struct fuse_conn *fc);
 
+extern const struct xattr_handler *fuse_xattr_handlers[];
+
 #endif /* _FS_FUSE_I_H */
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c
index 1ce6766..0a6ec20 100644
--- a/fs/fuse/inode.c
+++ b/fs/fuse/inode.c
@@ -1058,6 +1058,7 @@ static int fuse_fill_super(struct super_block *sb, void *data, int silent)
 	}
 	sb->s_magic = FUSE_SUPER_MAGIC;
 	sb->s_op = &fuse_super_operations;
+	sb->s_xattr = fuse_xattr_handlers;
 	sb->s_maxbytes = MAX_LFS_FILESIZE;
 	sb->s_time_gran = 1;
 	sb->s_export_op = &fuse_export_operations;
-- 
2.5.5


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH v3 10/17] vfs: Move xattr_resolve_name to the front of fs/xattr.c
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
                   ` (8 preceding siblings ...)
  2016-05-30  8:57 ` [PATCH v3 09/17] fuse: " Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 11/17] vfs: Add IOP_XATTR inode operations flag Andreas Gruenbacher
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
 fs/xattr.c | 101 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 50 insertions(+), 51 deletions(-)

diff --git a/fs/xattr.c b/fs/xattr.c
index 75f9f14..09df3c1 100644
--- a/fs/xattr.c
+++ b/fs/xattr.c
@@ -24,6 +24,56 @@
 
 #include <asm/uaccess.h>
 
+static const char *
+strcmp_prefix(const char *a, const char *a_prefix)
+{
+	while (*a_prefix && *a == *a_prefix) {
+		a++;
+		a_prefix++;
+	}
+	return *a_prefix ? NULL : a;
+}
+
+/*
+ * In order to implement different sets of xattr operations for each xattr
+ * prefix with the generic xattr API, a filesystem should create a
+ * null-terminated array of struct xattr_handler (one for each prefix) and
+ * hang a pointer to it off of the s_xattr field of the superblock.
+ *
+ * The generic_fooxattr() functions will use this list to dispatch xattr
+ * operations to the correct xattr_handler.
+ */
+#define for_each_xattr_handler(handlers, handler)		\
+	if (handlers)						\
+		for ((handler) = *(handlers)++;			\
+			(handler) != NULL;			\
+			(handler) = *(handlers)++)
+
+/*
+ * Find the xattr_handler with the matching prefix.
+ */
+static const struct xattr_handler *
+xattr_resolve_name(const struct xattr_handler **handlers, const char **name)
+{
+	const struct xattr_handler *handler;
+
+	for_each_xattr_handler(handlers, handler) {
+		const char *n;
+
+		n = strcmp_prefix(*name, xattr_prefix(handler));
+		if (n) {
+			if (!handler->prefix ^ !*n) {
+				if (*n)
+					continue;
+				return ERR_PTR(-EINVAL);
+			}
+			*name = n;
+			return handler;
+		}
+	}
+	return ERR_PTR(-EOPNOTSUPP);
+}
+
 /*
  * Check permissions for extended attribute access.  This is a bit complicated
  * because different namespaces have very different rules.
@@ -634,57 +684,6 @@ SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
 	return error;
 }
 
-
-static const char *
-strcmp_prefix(const char *a, const char *a_prefix)
-{
-	while (*a_prefix && *a == *a_prefix) {
-		a++;
-		a_prefix++;
-	}
-	return *a_prefix ? NULL : a;
-}
-
-/*
- * In order to implement different sets of xattr operations for each xattr
- * prefix with the generic xattr API, a filesystem should create a
- * null-terminated array of struct xattr_handler (one for each prefix) and
- * hang a pointer to it off of the s_xattr field of the superblock.
- *
- * The generic_fooxattr() functions will use this list to dispatch xattr
- * operations to the correct xattr_handler.
- */
-#define for_each_xattr_handler(handlers, handler)		\
-	if (handlers)						\
-		for ((handler) = *(handlers)++;			\
-			(handler) != NULL;			\
-			(handler) = *(handlers)++)
-
-/*
- * Find the xattr_handler with the matching prefix.
- */
-static const struct xattr_handler *
-xattr_resolve_name(const struct xattr_handler **handlers, const char **name)
-{
-	const struct xattr_handler *handler;
-
-	for_each_xattr_handler(handlers, handler) {
-		const char *n;
-
-		n = strcmp_prefix(*name, xattr_prefix(handler));
-		if (n) {
-			if (!handler->prefix ^ !*n) {
-				if (*n)
-					continue;
-				return ERR_PTR(-EINVAL);
-			}
-			*name = n;
-			return handler;
-		}
-	}
-	return ERR_PTR(-EOPNOTSUPP);
-}
-
 /*
  * Find the handler for the prefix and dispatch its get() operation.
  */
-- 
2.5.5


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH v3 11/17] vfs: Add IOP_XATTR inode operations flag
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
                   ` (9 preceding siblings ...)
  2016-05-30  8:57 ` [PATCH v3 10/17] vfs: Move xattr_resolve_name to the front of fs/xattr.c Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 12/17] vfs: Use IOP_XATTR flag for bad-inode handling Andreas Gruenbacher
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

The IOP_XATTR inode operations flag in inode->i_opflags indicates that
the inode has xattr support.  The flag is automatically set by
new_inode() on filesystems with xattr support (where sb->s_xattr is
defined), and cleared otherwise.  Filesystems can explicitly clear it
for inodes that should not have xattr support.

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
 fs/inode.c         |  2 ++
 fs/xattr.c         | 12 ++++++++----
 include/linux/fs.h |  1 +
 3 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/fs/inode.c b/fs/inode.c
index 4ccbc21..aaad9b2 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -140,6 +140,8 @@ int inode_init_always(struct super_block *sb, struct inode *inode)
 	inode->i_fop = &no_open_fops;
 	inode->__i_nlink = 1;
 	inode->i_opflags = 0;
+	if (sb->s_xattr)
+		inode->i_opflags |= IOP_XATTR;
 	i_uid_write(inode, 0);
 	i_gid_write(inode, 0);
 	atomic_set(&inode->i_writecount, 0);
diff --git a/fs/xattr.c b/fs/xattr.c
index 09df3c1..bc3cb69 100644
--- a/fs/xattr.c
+++ b/fs/xattr.c
@@ -53,10 +53,13 @@ strcmp_prefix(const char *a, const char *a_prefix)
  * Find the xattr_handler with the matching prefix.
  */
 static const struct xattr_handler *
-xattr_resolve_name(const struct xattr_handler **handlers, const char **name)
+xattr_resolve_name(struct inode *inode, const char **name)
 {
+	const struct xattr_handler **handlers = inode->i_sb->s_xattr;
 	const struct xattr_handler *handler;
 
+	if (!(inode->i_opflags & IOP_XATTR))
+		return ERR_PTR(-EOPNOTSUPP);
 	for_each_xattr_handler(handlers, handler) {
 		const char *n;
 
@@ -291,6 +294,7 @@ nolsm:
 		error = -EOPNOTSUPP;
 
 	return error;
+
 }
 EXPORT_SYMBOL_GPL(vfs_getxattr);
 
@@ -693,7 +697,7 @@ generic_getxattr(struct dentry *dentry, struct inode *inode,
 {
 	const struct xattr_handler *handler;
 
-	handler = xattr_resolve_name(dentry->d_sb->s_xattr, &name);
+	handler = xattr_resolve_name(inode, &name);
 	if (IS_ERR(handler))
 		return PTR_ERR(handler);
 	return handler->get(handler, dentry, inode,
@@ -748,7 +752,7 @@ generic_setxattr(struct dentry *dentry, struct inode *inode, const char *name,
 
 	if (size == 0)
 		value = "";  /* empty EA, do not remove */
-	handler = xattr_resolve_name(dentry->d_sb->s_xattr, &name);
+	handler = xattr_resolve_name(inode, &name);
 	if (IS_ERR(handler))
 		return PTR_ERR(handler);
 	return handler->set(handler, dentry, inode, name, value, size, flags);
@@ -763,7 +767,7 @@ generic_removexattr(struct dentry *dentry, const char *name)
 {
 	const struct xattr_handler *handler;
 
-	handler = xattr_resolve_name(dentry->d_sb->s_xattr, &name);
+	handler = xattr_resolve_name(d_inode(dentry), &name);
 	if (IS_ERR(handler))
 		return PTR_ERR(handler);
 	return handler->set(handler, dentry, d_inode(dentry), name, NULL,
diff --git a/include/linux/fs.h b/include/linux/fs.h
index a1f69bd..365e212 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -593,6 +593,7 @@ is_uncached_acl(struct posix_acl *acl)
 #define IOP_FASTPERM	0x0001
 #define IOP_LOOKUP	0x0002
 #define IOP_NOFOLLOW	0x0004
+#define IOP_XATTR	0x0008
 
 /*
  * Keep mostly read-only and often accessed (especially for
-- 
2.5.5


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH v3 12/17] vfs: Use IOP_XATTR flag for bad-inode handling
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
                   ` (10 preceding siblings ...)
  2016-05-30  8:57 ` [PATCH v3 11/17] vfs: Add IOP_XATTR inode operations flag Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 13/17] libfs: Use IOP_XATTR flag for empty directory handling Andreas Gruenbacher
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

With this change, all the xattr handler based operations will produce an
-EIO result for bad inodes, and we no longer only depend on inode->i_op
to be set to bad_inode_ops.

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
 fs/bad_inode.c | 21 +--------------------
 fs/xattr.c     |  8 +++++++-
 2 files changed, 8 insertions(+), 21 deletions(-)

diff --git a/fs/bad_inode.c b/fs/bad_inode.c
index 3ba385e..7bb153c 100644
--- a/fs/bad_inode.c
+++ b/fs/bad_inode.c
@@ -100,29 +100,12 @@ static int bad_inode_setattr(struct dentry *direntry, struct iattr *attrs)
 	return -EIO;
 }
 
-static int bad_inode_setxattr(struct dentry *dentry, struct inode *inode,
-		const char *name, const void *value, size_t size, int flags)
-{
-	return -EIO;
-}
-
-static ssize_t bad_inode_getxattr(struct dentry *dentry, struct inode *inode,
-			const char *name, void *buffer, size_t size)
-{
-	return -EIO;
-}
-
 static ssize_t bad_inode_listxattr(struct dentry *dentry, char *buffer,
 			size_t buffer_size)
 {
 	return -EIO;
 }
 
-static int bad_inode_removexattr(struct dentry *dentry, const char *name)
-{
-	return -EIO;
-}
-
 static const struct inode_operations bad_inode_ops =
 {
 	.create		= bad_inode_create,
@@ -142,10 +125,7 @@ static const struct inode_operations bad_inode_ops =
 	.permission	= bad_inode_permission,
 	.getattr	= bad_inode_getattr,
 	.setattr	= bad_inode_setattr,
-	.setxattr	= bad_inode_setxattr,
-	.getxattr	= bad_inode_getxattr,
 	.listxattr	= bad_inode_listxattr,
-	.removexattr	= bad_inode_removexattr,
 };
 
 
@@ -175,6 +155,7 @@ void make_bad_inode(struct inode *inode)
 	inode->i_atime = inode->i_mtime = inode->i_ctime =
 		current_fs_time(inode->i_sb);
 	inode->i_op = &bad_inode_ops;	
+	inode->i_opflags &= ~IOP_XATTR;
 	inode->i_fop = &bad_file_ops;	
 }
 EXPORT_SYMBOL(make_bad_inode);
diff --git a/fs/xattr.c b/fs/xattr.c
index bc3cb69..aea1990 100644
--- a/fs/xattr.c
+++ b/fs/xattr.c
@@ -58,8 +58,11 @@ xattr_resolve_name(struct inode *inode, const char **name)
 	const struct xattr_handler **handlers = inode->i_sb->s_xattr;
 	const struct xattr_handler *handler;
 
-	if (!(inode->i_opflags & IOP_XATTR))
+	if (!(inode->i_opflags & IOP_XATTR)) {
+		if (unlikely(is_bad_inode(inode)))
+			return ERR_PTR(-EIO);
 		return ERR_PTR(-EOPNOTSUPP);
+	}
 	for_each_xattr_handler(handlers, handler) {
 		const char *n;
 
@@ -161,6 +164,9 @@ int __vfs_setxattr_noperm(struct dentry *dentry, const char *name,
 		}
 	} else if (issec) {
 		const char *suffix = name + XATTR_SECURITY_PREFIX_LEN;
+
+		if (unlikely(is_bad_inode(inode)))
+			return -EIO;
 		error = security_inode_setsecurity(inode, suffix, value,
 						   size, flags);
 		if (!error)
-- 
2.5.5

^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH v3 13/17] libfs: Use IOP_XATTR flag for empty directory handling
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
                   ` (11 preceding siblings ...)
  2016-05-30  8:57 ` [PATCH v3 12/17] vfs: Use IOP_XATTR flag for bad-inode handling Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 14/17] xattr: Add __vfs_{get,set,remove}xattr helpers Andreas Gruenbacher
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

Instead of special xattr inode operations, use the IOP_XATTR inode
operations flag for the special libfs empty directories.

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
 fs/libfs.c | 22 +---------------------
 1 file changed, 1 insertion(+), 21 deletions(-)

diff --git a/fs/libfs.c b/fs/libfs.c
index 89341ad..06057e9 100644
--- a/fs/libfs.c
+++ b/fs/libfs.c
@@ -1119,24 +1119,6 @@ static int empty_dir_setattr(struct dentry *dentry, struct iattr *attr)
 	return -EPERM;
 }
 
-static int empty_dir_setxattr(struct dentry *dentry, struct inode *inode,
-			      const char *name, const void *value,
-			      size_t size, int flags)
-{
-	return -EOPNOTSUPP;
-}
-
-static ssize_t empty_dir_getxattr(struct dentry *dentry, struct inode *inode,
-				  const char *name, void *value, size_t size)
-{
-	return -EOPNOTSUPP;
-}
-
-static int empty_dir_removexattr(struct dentry *dentry, const char *name)
-{
-	return -EOPNOTSUPP;
-}
-
 static ssize_t empty_dir_listxattr(struct dentry *dentry, char *list, size_t size)
 {
 	return -EOPNOTSUPP;
@@ -1147,9 +1129,6 @@ static const struct inode_operations empty_dir_inode_operations = {
 	.permission	= generic_permission,
 	.setattr	= empty_dir_setattr,
 	.getattr	= empty_dir_getattr,
-	.setxattr	= empty_dir_setxattr,
-	.getxattr	= empty_dir_getxattr,
-	.removexattr	= empty_dir_removexattr,
 	.listxattr	= empty_dir_listxattr,
 };
 
@@ -1185,6 +1164,7 @@ void make_empty_dir_inode(struct inode *inode)
 	inode->i_blocks = 0;
 
 	inode->i_op = &empty_dir_inode_operations;
+	inode->i_opflags &= ~IOP_XATTR;
 	inode->i_fop = &empty_dir_operations;
 }
 
-- 
2.5.5

^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH v3 14/17] xattr: Add __vfs_{get,set,remove}xattr helpers
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
                   ` (12 preceding siblings ...)
  2016-05-30  8:57 ` [PATCH v3 13/17] libfs: Use IOP_XATTR flag for empty directory handling Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 15/17] vfs: Check for the IOP_XATTR flag in listxattr Andreas Gruenbacher
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

Right now, various places in the kernel check for the existence of
getxattr, setxattr, and removexattr inode operations and directly call
those operations.  Switch to helper functions and test for the IOP_XATTR
flag instead.

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Acked-by: James Morris <james.l.morris@oracle.com>
---
 fs/cachefiles/bind.c                  |  4 ++--
 fs/cachefiles/namei.c                 |  4 ++--
 fs/ecryptfs/inode.c                   | 18 +++++++-------
 fs/ecryptfs/mmap.c                    | 13 +++++------
 fs/overlayfs/copy_up.c                |  4 ++--
 fs/overlayfs/super.c                  |  4 ++--
 fs/xattr.c                            | 44 ++++++++++++++++++++++++++---------
 include/linux/xattr.h                 |  3 +++
 security/commoncap.c                  | 25 ++++++++------------
 security/integrity/evm/evm_crypto.c   |  7 +++---
 security/integrity/evm/evm_main.c     |  4 ++--
 security/integrity/ima/ima_appraise.c | 21 ++++++++---------
 security/selinux/hooks.c              | 19 ++++++---------
 security/smack/smack_lsm.c            | 12 +++++-----
 14 files changed, 97 insertions(+), 85 deletions(-)

diff --git a/fs/cachefiles/bind.c b/fs/cachefiles/bind.c
index 6af790f..3ff867f 100644
--- a/fs/cachefiles/bind.c
+++ b/fs/cachefiles/bind.c
@@ -20,6 +20,7 @@
 #include <linux/mount.h>
 #include <linux/statfs.h>
 #include <linux/ctype.h>
+#include <linux/xattr.h>
 #include "internal.h"
 
 static int cachefiles_daemon_add_cache(struct cachefiles_cache *caches);
@@ -126,8 +127,7 @@ static int cachefiles_daemon_add_cache(struct cachefiles_cache *cache)
 	if (d_is_negative(root) ||
 	    !d_backing_inode(root)->i_op->lookup ||
 	    !d_backing_inode(root)->i_op->mkdir ||
-	    !d_backing_inode(root)->i_op->setxattr ||
-	    !d_backing_inode(root)->i_op->getxattr ||
+	    !(d_backing_inode(root)->i_opflags & IOP_XATTR) ||
 	    !root->d_sb->s_op->statfs ||
 	    !root->d_sb->s_op->sync_fs)
 		goto error_unsupported;
diff --git a/fs/cachefiles/namei.c b/fs/cachefiles/namei.c
index 4ae7500..0d8ca89 100644
--- a/fs/cachefiles/namei.c
+++ b/fs/cachefiles/namei.c
@@ -20,6 +20,7 @@
 #include <linux/namei.h>
 #include <linux/security.h>
 #include <linux/slab.h>
+#include <linux/xattr.h>
 #include "internal.h"
 
 #define CACHEFILES_KEYBUF_SIZE 512
@@ -798,8 +799,7 @@ struct dentry *cachefiles_get_directory(struct cachefiles_cache *cache,
 	}
 
 	ret = -EPERM;
-	if (!d_backing_inode(subdir)->i_op->setxattr ||
-	    !d_backing_inode(subdir)->i_op->getxattr ||
+	if (!(d_backing_inode(subdir)->i_opflags & IOP_XATTR) ||
 	    !d_backing_inode(subdir)->i_op->lookup ||
 	    !d_backing_inode(subdir)->i_op->mkdir ||
 	    !d_backing_inode(subdir)->i_op->create ||
diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c
index cef32cc..32fee25 100644
--- a/fs/ecryptfs/inode.c
+++ b/fs/ecryptfs/inode.c
@@ -1005,15 +1005,14 @@ ecryptfs_setxattr(struct dentry *dentry, struct inode *inode,
 		  const char *name, const void *value,
 		  size_t size, int flags)
 {
-	int rc = 0;
+	int rc;
 	struct dentry *lower_dentry;
 
 	lower_dentry = ecryptfs_dentry_to_lower(dentry);
-	if (!d_inode(lower_dentry)->i_op->setxattr) {
+	if (!(d_inode(lower_dentry)->i_opflags & IOP_XATTR)) {
 		rc = -EOPNOTSUPP;
 		goto out;
 	}
-
 	rc = vfs_setxattr(lower_dentry, name, value, size, flags);
 	if (!rc && inode)
 		fsstack_copy_attr_all(inode, d_inode(lower_dentry));
@@ -1025,15 +1024,14 @@ ssize_t
 ecryptfs_getxattr_lower(struct dentry *lower_dentry, struct inode *lower_inode,
 			const char *name, void *value, size_t size)
 {
-	int rc = 0;
+	int rc;
 
-	if (!lower_inode->i_op->getxattr) {
+	if (!(lower_inode->i_opflags & IOP_XATTR)) {
 		rc = -EOPNOTSUPP;
 		goto out;
 	}
 	inode_lock(lower_inode);
-	rc = lower_inode->i_op->getxattr(lower_dentry, lower_inode,
-					 name, value, size);
+	rc = __vfs_getxattr(lower_dentry, lower_inode, name, value, size);
 	inode_unlock(lower_inode);
 out:
 	return rc;
@@ -1069,18 +1067,18 @@ out:
 static int ecryptfs_removexattr(struct dentry *dentry, struct inode *inode,
 				const char *name)
 {
-	int rc = 0;
+	int rc;
 	struct dentry *lower_dentry;
 	struct inode *lower_inode;
 
 	lower_dentry = ecryptfs_dentry_to_lower(dentry);
 	lower_inode = ecryptfs_inode_to_lower(inode);
-	if (!lower_inode->i_op->removexattr) {
+	if (!(lower_inode->i_opflags & IOP_XATTR)) {
 		rc = -EOPNOTSUPP;
 		goto out;
 	}
 	inode_lock(lower_inode);
-	rc = lower_inode->i_op->removexattr(lower_dentry, name);
+	rc = __vfs_removexattr(lower_dentry, name);
 	inode_unlock(lower_inode);
 out:
 	return rc;
diff --git a/fs/ecryptfs/mmap.c b/fs/ecryptfs/mmap.c
index 9c3437c..1f0c471 100644
--- a/fs/ecryptfs/mmap.c
+++ b/fs/ecryptfs/mmap.c
@@ -32,6 +32,7 @@
 #include <linux/file.h>
 #include <linux/scatterlist.h>
 #include <linux/slab.h>
+#include <linux/xattr.h>
 #include <asm/unaligned.h>
 #include "ecryptfs_kernel.h"
 
@@ -422,7 +423,7 @@ static int ecryptfs_write_inode_size_to_xattr(struct inode *ecryptfs_inode)
 	struct inode *lower_inode = d_inode(lower_dentry);
 	int rc;
 
-	if (!lower_inode->i_op->getxattr || !lower_inode->i_op->setxattr) {
+	if (!(lower_inode->i_opflags & IOP_XATTR)) {
 		printk(KERN_WARNING
 		       "No support for setting xattr in lower filesystem\n");
 		rc = -ENOSYS;
@@ -436,15 +437,13 @@ static int ecryptfs_write_inode_size_to_xattr(struct inode *ecryptfs_inode)
 		goto out;
 	}
 	inode_lock(lower_inode);
-	size = lower_inode->i_op->getxattr(lower_dentry, lower_inode,
-					   ECRYPTFS_XATTR_NAME,
-					   xattr_virt, PAGE_SIZE);
+	size = __vfs_getxattr(lower_dentry, lower_inode, ECRYPTFS_XATTR_NAME,
+			      xattr_virt, PAGE_SIZE);
 	if (size < 0)
 		size = 8;
 	put_unaligned_be64(i_size_read(ecryptfs_inode), xattr_virt);
-	rc = lower_inode->i_op->setxattr(lower_dentry, lower_inode,
-					 ECRYPTFS_XATTR_NAME,
-					 xattr_virt, size, 0);
+	rc = __vfs_setxattr(lower_dentry, lower_inode, ECRYPTFS_XATTR_NAME,
+			    xattr_virt, size, 0);
 	inode_unlock(lower_inode);
 	if (rc)
 		printk(KERN_ERR "Error whilst attempting to write inode size "
diff --git a/fs/overlayfs/copy_up.c b/fs/overlayfs/copy_up.c
index 80aa6f1..59b5394 100644
--- a/fs/overlayfs/copy_up.c
+++ b/fs/overlayfs/copy_up.c
@@ -58,8 +58,8 @@ int ovl_copy_xattr(struct dentry *old, struct dentry *new)
 	char *buf, *name, *value = NULL;
 	int uninitialized_var(error);
 
-	if (!old->d_inode->i_op->getxattr ||
-	    !new->d_inode->i_op->getxattr)
+	if (!(old->d_inode->i_opflags & IOP_XATTR) ||
+	    !(new->d_inode->i_opflags & IOP_XATTR))
 		return 0;
 
 	list_size = vfs_listxattr(old, NULL, 0);
diff --git a/fs/overlayfs/super.c b/fs/overlayfs/super.c
index dab5301a..2a1840b 100644
--- a/fs/overlayfs/super.c
+++ b/fs/overlayfs/super.c
@@ -280,10 +280,10 @@ static bool ovl_is_opaquedir(struct dentry *dentry)
 	char val;
 	struct inode *inode = dentry->d_inode;
 
-	if (!S_ISDIR(inode->i_mode) || !inode->i_op->getxattr)
+	if (!S_ISDIR(inode->i_mode) || !(inode->i_opflags & IOP_XATTR))
 		return false;
 
-	res = inode->i_op->getxattr(dentry, inode, OVL_XATTR_OPAQUE, &val, 1);
+	res = __vfs_getxattr(dentry, inode, OVL_XATTR_OPAQUE, &val, 1);
 	if (res == 1 && val == 'y')
 		return true;
 
diff --git a/fs/xattr.c b/fs/xattr.c
index aea1990..a947cb5 100644
--- a/fs/xattr.c
+++ b/fs/xattr.c
@@ -129,6 +129,16 @@ xattr_permission(struct inode *inode, const char *name, int mask)
 	return inode_permission(inode, mask);
 }
 
+int
+__vfs_setxattr(struct dentry *dentry, struct inode *inode, const char *name,
+	       const void *value, size_t size, int flags)
+{
+	if (!inode->i_op->setxattr)
+		return -EOPNOTSUPP;
+	return inode->i_op->setxattr(dentry, inode, name, value, size, flags);
+}
+EXPORT_SYMBOL(__vfs_setxattr);
+
 /**
  *  __vfs_setxattr_noperm - perform setxattr operation without performing
  *  permission checks.
@@ -156,7 +166,7 @@ int __vfs_setxattr_noperm(struct dentry *dentry, const char *name,
 	if (issec)
 		inode->i_flags &= ~S_NOSEC;
 	if (inode->i_op->setxattr) {
-		error = inode->i_op->setxattr(dentry, inode, name, value, size, flags);
+		error = __vfs_setxattr(dentry, inode, name, value, size, flags);
 		if (!error) {
 			fsnotify_xattr(dentry);
 			security_inode_post_setxattr(dentry, name, value,
@@ -268,6 +278,16 @@ vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
 }
 
 ssize_t
+__vfs_getxattr(struct dentry *dentry, struct inode *inode, const char *name,
+	       void *value, size_t size)
+{
+	if (!inode->i_op->getxattr)
+		return -EOPNOTSUPP;
+	return inode->i_op->getxattr(dentry, inode, name, value, size);
+}
+EXPORT_SYMBOL(__vfs_getxattr);
+
+ssize_t
 vfs_getxattr(struct dentry *dentry, const char *name, void *value, size_t size)
 {
 	struct inode *inode = dentry->d_inode;
@@ -294,13 +314,7 @@ vfs_getxattr(struct dentry *dentry, const char *name, void *value, size_t size)
 		return ret;
 	}
 nolsm:
-	if (inode->i_op->getxattr)
-		error = inode->i_op->getxattr(dentry, inode, name, value, size);
-	else
-		error = -EOPNOTSUPP;
-
-	return error;
-
+	return __vfs_getxattr(dentry, inode, name, value, size);
 }
 EXPORT_SYMBOL_GPL(vfs_getxattr);
 
@@ -325,13 +339,21 @@ vfs_listxattr(struct dentry *d, char *list, size_t size)
 EXPORT_SYMBOL_GPL(vfs_listxattr);
 
 int
-vfs_removexattr(struct dentry *dentry, const char *name)
+__vfs_removexattr(struct dentry *dentry, const char *name)
 {
 	struct inode *inode = dentry->d_inode;
-	int error;
 
 	if (!inode->i_op->removexattr)
 		return -EOPNOTSUPP;
+	return inode->i_op->removexattr(dentry, name);
+}
+EXPORT_SYMBOL(__vfs_removexattr);
+
+int
+vfs_removexattr(struct dentry *dentry, const char *name)
+{
+	struct inode *inode = dentry->d_inode;
+	int error;
 
 	error = xattr_permission(inode, name, MAY_WRITE);
 	if (error)
@@ -342,7 +364,7 @@ vfs_removexattr(struct dentry *dentry, const char *name)
 	if (error)
 		goto out;
 
-	error = inode->i_op->removexattr(dentry, name);
+	error = __vfs_removexattr(dentry, name);
 
 	if (!error) {
 		fsnotify_xattr(dentry);
diff --git a/include/linux/xattr.h b/include/linux/xattr.h
index 94079ba..6ae6b2e 100644
--- a/include/linux/xattr.h
+++ b/include/linux/xattr.h
@@ -46,10 +46,13 @@ struct xattr {
 };
 
 ssize_t xattr_getsecurity(struct inode *, const char *, void *, size_t);
+ssize_t __vfs_getxattr(struct dentry *, struct inode *, const char *, void *, size_t);
 ssize_t vfs_getxattr(struct dentry *, const char *, void *, size_t);
 ssize_t vfs_listxattr(struct dentry *d, char *list, size_t size);
+int __vfs_setxattr(struct dentry *, struct inode *, const char *, const void *, size_t, int);
 int __vfs_setxattr_noperm(struct dentry *, const char *, const void *, size_t, int);
 int vfs_setxattr(struct dentry *, const char *, const void *, size_t, int);
+int __vfs_removexattr(struct dentry *, const char *);
 int vfs_removexattr(struct dentry *, const char *);
 
 ssize_t generic_getxattr(struct dentry *dentry, struct inode *inode, const char *name, void *buffer, size_t size);
diff --git a/security/commoncap.c b/security/commoncap.c
index e7fadde..b878d77 100644
--- a/security/commoncap.c
+++ b/security/commoncap.c
@@ -310,13 +310,8 @@ int cap_inode_need_killpriv(struct dentry *dentry)
 	struct inode *inode = d_backing_inode(dentry);
 	int error;
 
-	if (!inode->i_op->getxattr)
-	       return 0;
-
-	error = inode->i_op->getxattr(dentry, inode, XATTR_NAME_CAPS, NULL, 0);
-	if (error <= 0)
-		return 0;
-	return 1;
+	error = __vfs_getxattr(dentry, inode, XATTR_NAME_CAPS, NULL, 0);
+	return error > 0;
 }
 
 /**
@@ -329,12 +324,12 @@ int cap_inode_need_killpriv(struct dentry *dentry)
  */
 int cap_inode_killpriv(struct dentry *dentry)
 {
-	struct inode *inode = d_backing_inode(dentry);
-
-	if (!inode->i_op->removexattr)
-	       return 0;
+	int error;
 
-	return inode->i_op->removexattr(dentry, XATTR_NAME_CAPS);
+	error = __vfs_removexattr(dentry, XATTR_NAME_CAPS);
+	if (error == -EOPNOTSUPP)
+		error = 0;
+	return error;
 }
 
 /*
@@ -394,11 +389,11 @@ int get_vfs_caps_from_disk(const struct dentry *dentry, struct cpu_vfs_cap_data
 
 	memset(cpu_caps, 0, sizeof(struct cpu_vfs_cap_data));
 
-	if (!inode || !inode->i_op->getxattr)
+	if (!inode)
 		return -ENODATA;
 
-	size = inode->i_op->getxattr((struct dentry *)dentry, inode,
-				     XATTR_NAME_CAPS, &caps, XATTR_CAPS_SZ);
+	size = __vfs_getxattr((struct dentry *)dentry, inode,
+			      XATTR_NAME_CAPS, &caps, XATTR_CAPS_SZ);
 	if (size == -ENODATA || size == -EOPNOTSUPP)
 		/* no data, that's ok */
 		return -ENODATA;
diff --git a/security/integrity/evm/evm_crypto.c b/security/integrity/evm/evm_crypto.c
index 30b6b7d0..26e61df 100644
--- a/security/integrity/evm/evm_crypto.c
+++ b/security/integrity/evm/evm_crypto.c
@@ -182,8 +182,9 @@ static int evm_calc_hmac_or_hash(struct dentry *dentry,
 	int error;
 	int size;
 
-	if (!inode->i_op->getxattr)
+	if (!(inode->i_opflags & IOP_XATTR))
 		return -EOPNOTSUPP;
+
 	desc = init_desc(type);
 	if (IS_ERR(desc))
 		return PTR_ERR(desc);
@@ -253,8 +254,8 @@ int evm_update_evmxattr(struct dentry *dentry, const char *xattr_name,
 		rc = __vfs_setxattr_noperm(dentry, XATTR_NAME_EVM,
 					   &xattr_data,
 					   sizeof(xattr_data), 0);
-	} else if (rc == -ENODATA && inode->i_op->removexattr) {
-		rc = inode->i_op->removexattr(dentry, XATTR_NAME_EVM);
+	} else if (rc == -ENODATA && (inode->i_opflags & IOP_XATTR)) {
+		rc = __vfs_removexattr(dentry, XATTR_NAME_EVM);
 	}
 	return rc;
 }
diff --git a/security/integrity/evm/evm_main.c b/security/integrity/evm/evm_main.c
index b9e2628..ba86155 100644
--- a/security/integrity/evm/evm_main.c
+++ b/security/integrity/evm/evm_main.c
@@ -78,11 +78,11 @@ static int evm_find_protected_xattrs(struct dentry *dentry)
 	int error;
 	int count = 0;
 
-	if (!inode->i_op->getxattr)
+	if (!(inode->i_opflags & IOP_XATTR))
 		return -EOPNOTSUPP;
 
 	for (xattr = evm_config_xattrnames; *xattr != NULL; xattr++) {
-		error = inode->i_op->getxattr(dentry, inode, *xattr, NULL, 0);
+		error = __vfs_getxattr(dentry, inode, *xattr, NULL, 0);
 		if (error < 0) {
 			if (error == -ENODATA)
 				continue;
diff --git a/security/integrity/ima/ima_appraise.c b/security/integrity/ima/ima_appraise.c
index 1bcbc12..6886f68 100644
--- a/security/integrity/ima/ima_appraise.c
+++ b/security/integrity/ima/ima_appraise.c
@@ -165,13 +165,13 @@ enum hash_algo ima_get_hash_algo(struct evm_ima_xattr_data *xattr_value,
 int ima_read_xattr(struct dentry *dentry,
 		   struct evm_ima_xattr_data **xattr_value)
 {
-	struct inode *inode = d_backing_inode(dentry);
-
-	if (!inode->i_op->getxattr)
-		return 0;
+	ssize_t ret;
 
-	return vfs_getxattr_alloc(dentry, XATTR_NAME_IMA, (char **)xattr_value,
-				  0, GFP_NOFS);
+	ret = vfs_getxattr_alloc(dentry, XATTR_NAME_IMA, (char **)xattr_value,
+				 0, GFP_NOFS);
+	if (ret == -EOPNOTSUPP)
+		ret = 0;
+	return ret;
 }
 
 /*
@@ -195,7 +195,7 @@ int ima_appraise_measurement(enum ima_hooks func,
 	enum integrity_status status = INTEGRITY_UNKNOWN;
 	int rc = xattr_len, hash_start = 0;
 
-	if (!inode->i_op->getxattr)
+	if (!(inode->i_opflags & IOP_XATTR))
 		return INTEGRITY_UNKNOWN;
 
 	if (rc <= 0) {
@@ -322,10 +322,10 @@ void ima_inode_post_setattr(struct dentry *dentry)
 {
 	struct inode *inode = d_backing_inode(dentry);
 	struct integrity_iint_cache *iint;
-	int must_appraise, rc;
+	int must_appraise;
 
 	if (!(ima_policy_flag & IMA_APPRAISE) || !S_ISREG(inode->i_mode)
-	    || !inode->i_op->removexattr)
+	    || !(inode->i_opflags & IOP_XATTR))
 		return;
 
 	must_appraise = ima_must_appraise(inode, MAY_ACCESS, POST_SETATTR);
@@ -338,8 +338,7 @@ void ima_inode_post_setattr(struct dentry *dentry)
 			iint->flags |= IMA_APPRAISE;
 	}
 	if (!must_appraise)
-		rc = inode->i_op->removexattr(dentry, XATTR_NAME_IMA);
-	return;
+		__vfs_removexattr(dentry, XATTR_NAME_IMA);
 }
 
 /*
diff --git a/security/selinux/hooks.c b/security/selinux/hooks.c
index a86d537..f11b444 100644
--- a/security/selinux/hooks.c
+++ b/security/selinux/hooks.c
@@ -507,14 +507,14 @@ static int sb_finish_set_opts(struct super_block *sb)
 		   the root directory.  -ENODATA is ok, as this may be
 		   the first boot of the SELinux kernel before we have
 		   assigned xattr values to the filesystem. */
-		if (!root_inode->i_op->getxattr) {
+		if (!(root_inode->i_opflags & IOP_XATTR)) {
 			printk(KERN_WARNING "SELinux: (dev %s, type %s) has no "
 			       "xattr support\n", sb->s_id, sb->s_type->name);
 			rc = -EOPNOTSUPP;
 			goto out;
 		}
-		rc = root_inode->i_op->getxattr(root, root_inode,
-						XATTR_NAME_SELINUX, NULL, 0);
+
+		rc = __vfs_getxattr(root, root_inode, XATTR_NAME_SELINUX, NULL, 0);
 		if (rc < 0 && rc != -ENODATA) {
 			if (rc == -EOPNOTSUPP)
 				printk(KERN_WARNING "SELinux: (dev %s, type "
@@ -1387,11 +1387,10 @@ static int inode_doinit_with_dentry(struct inode *inode, struct dentry *opt_dent
 	case SECURITY_FS_USE_NATIVE:
 		break;
 	case SECURITY_FS_USE_XATTR:
-		if (!inode->i_op->getxattr) {
+		if (!(inode->i_opflags & IOP_XATTR)) {
 			isec->sid = sbsec->def_sid;
 			break;
 		}
-
 		/* Need a dentry, since the xattr API requires one.
 		   Life would be simpler if we could just pass the inode. */
 		if (opt_dentry) {
@@ -1422,14 +1421,12 @@ static int inode_doinit_with_dentry(struct inode *inode, struct dentry *opt_dent
 			goto out_unlock;
 		}
 		context[len] = '\0';
-		rc = inode->i_op->getxattr(dentry, inode, XATTR_NAME_SELINUX,
-					   context, len);
+		rc = __vfs_getxattr(dentry, inode, XATTR_NAME_SELINUX, context, len);
 		if (rc == -ERANGE) {
 			kfree(context);
 
 			/* Need a larger buffer.  Query for the right size. */
-			rc = inode->i_op->getxattr(dentry, inode, XATTR_NAME_SELINUX,
-						   NULL, 0);
+			rc = __vfs_getxattr(dentry, inode, XATTR_NAME_SELINUX, NULL, 0);
 			if (rc < 0) {
 				dput(dentry);
 				goto out_unlock;
@@ -1442,9 +1439,7 @@ static int inode_doinit_with_dentry(struct inode *inode, struct dentry *opt_dent
 				goto out_unlock;
 			}
 			context[len] = '\0';
-			rc = inode->i_op->getxattr(dentry, inode,
-						   XATTR_NAME_SELINUX,
-						   context, len);
+			rc = __vfs_getxattr(dentry, inode, XATTR_NAME_SELINUX, context, len);
 		}
 		dput(dentry);
 		if (rc < 0) {
diff --git a/security/smack/smack_lsm.c b/security/smack/smack_lsm.c
index 6777295..d42b509 100644
--- a/security/smack/smack_lsm.c
+++ b/security/smack/smack_lsm.c
@@ -265,14 +265,14 @@ static struct smack_known *smk_fetch(const char *name, struct inode *ip,
 	char *buffer;
 	struct smack_known *skp = NULL;
 
-	if (ip->i_op->getxattr == NULL)
+	if (!(ip->i_opflags & IOP_XATTR))
 		return ERR_PTR(-EOPNOTSUPP);
 
 	buffer = kzalloc(SMK_LONGLABEL, GFP_KERNEL);
 	if (buffer == NULL)
 		return ERR_PTR(-ENOMEM);
 
-	rc = ip->i_op->getxattr(dp, ip, name, buffer, SMK_LONGLABEL);
+	rc = __vfs_getxattr(dp, ip, name, buffer, SMK_LONGLABEL);
 	if (rc < 0)
 		skp = ERR_PTR(rc);
 	else if (rc == 0)
@@ -3489,8 +3489,8 @@ static void smack_d_instantiate(struct dentry *opt_dentry, struct inode *inode)
 		 * It would be curious if the label of the task
 		 * does not match that assigned.
 		 */
-		if (inode->i_op->getxattr == NULL)
-			break;
+		if (!(inode->i_opflags & IOP_XATTR))
+		        break;
 		/*
 		 * Get the dentry for xattr.
 		 */
@@ -3514,12 +3514,12 @@ static void smack_d_instantiate(struct dentry *opt_dentry, struct inode *inode)
 			 */
 			if (isp->smk_flags & SMK_INODE_CHANGED) {
 				isp->smk_flags &= ~SMK_INODE_CHANGED;
-				rc = inode->i_op->setxattr(dp, inode,
+				rc = __vfs_setxattr(dp, inode,
 					XATTR_NAME_SMACKTRANSMUTE,
 					TRANS_TRUE, TRANS_TRUE_SIZE,
 					0);
 			} else {
-				rc = inode->i_op->getxattr(dp, inode,
+				rc = __vfs_getxattr(dp, inode,
 					XATTR_NAME_SMACKTRANSMUTE, trattr,
 					TRANS_TRUE_SIZE);
 				if (rc >= 0 && strncmp(trattr, TRANS_TRUE,
-- 
2.5.5

^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH v3 15/17] vfs: Check for the IOP_XATTR flag in listxattr
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
                   ` (13 preceding siblings ...)
  2016-05-30  8:57 ` [PATCH v3 14/17] xattr: Add __vfs_{get,set,remove}xattr helpers Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 16/17] xattr: Stop calling {get,set,remove}xattr inode operations Andreas Gruenbacher
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

When an inode doesn't support xattrs, turn listxattr off as well.

(When xattrs are "turned off", the VFS still passes security xattr
operations through to security modules, which can still expose inode
security labels that way.)

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
 fs/xattr.c | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/fs/xattr.c b/fs/xattr.c
index a947cb5..8ffc93e 100644
--- a/fs/xattr.c
+++ b/fs/xattr.c
@@ -319,18 +319,19 @@ nolsm:
 EXPORT_SYMBOL_GPL(vfs_getxattr);
 
 ssize_t
-vfs_listxattr(struct dentry *d, char *list, size_t size)
+vfs_listxattr(struct dentry *dentry, char *list, size_t size)
 {
+	struct inode *inode = d_inode(dentry);
 	ssize_t error;
 
-	error = security_inode_listxattr(d);
+	error = security_inode_listxattr(dentry);
 	if (error)
 		return error;
-	error = -EOPNOTSUPP;
-	if (d->d_inode->i_op->listxattr) {
-		error = d->d_inode->i_op->listxattr(d, list, size);
+	if (inode->i_op->listxattr && (inode->i_opflags & IOP_XATTR)) {
+		error = -EOPNOTSUPP;
+		error = inode->i_op->listxattr(dentry, list, size);
 	} else {
-		error = security_inode_listsecurity(d->d_inode, list, size);
+		error = security_inode_listsecurity(inode, list, size);
 		if (size && error > size)
 			error = -ERANGE;
 	}
-- 
2.5.5


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH v3 16/17] xattr: Stop calling {get,set,remove}xattr inode operations
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
                   ` (14 preceding siblings ...)
  2016-05-30  8:57 ` [PATCH v3 15/17] vfs: Check for the IOP_XATTR flag in listxattr Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  8:57 ` [PATCH v3 17/17] vfs: Remove " Andreas Gruenbacher
  2016-05-30  9:54 ` [PATCH v3 00/17] Xattr inode operation removal Sedat Dilek
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

All filesystems that support xattrs by now do so via xattr handlers.
They all define sb->s_xattr, and their getxattr, setxattr, and
removexattr inode operations use the generic inode operations.  On
filesystems that don't support xattrs, the xattr inode operations are
all NULL, and sb->s_xattr is also NULL.

This means that we can remove the getxattr, setxattr, and removexattr
inode operations and directly call the generic handlers, or better,
inline expand those handlers into fs/xattr.c.

Filesystems that do not support xattrs on some inodes should clear the
IOP_XATTR i_opflags flag in those inodes.  (Right now, some filesystems
have checks to disable xattrs on some inodes in the ->list, ->get, and
->set xattr handler operations instead.)  The IOP_XATTR flag is
automatically cleared in inodes of filesystems that don't have xattr
support.

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
 Documentation/filesystems/Locking | 24 +++++++++++++-----
 Documentation/filesystems/vfs.txt | 45 ++++++++++++++++++++++-----------
 fs/xattr.c                        | 52 +++++++++++++++++++++++++--------------
 3 files changed, 82 insertions(+), 39 deletions(-)

diff --git a/Documentation/filesystems/Locking b/Documentation/filesystems/Locking
index 75eea7c..b958926 100644
--- a/Documentation/filesystems/Locking
+++ b/Documentation/filesystems/Locking
@@ -56,10 +56,7 @@ prototypes:
 	int (*get_acl)(struct inode *, int);
 	int (*setattr) (struct dentry *, struct iattr *);
 	int (*getattr) (struct vfsmount *, struct dentry *, struct kstat *);
-	int (*setxattr) (struct dentry *, const char *,const void *,size_t,int);
-	ssize_t (*getxattr) (struct dentry *, const char *, void *, size_t);
 	ssize_t (*listxattr) (struct dentry *, char *, size_t);
-	int (*removexattr) (struct dentry *, const char *);
 	int (*fiemap)(struct inode *, struct fiemap_extent_info *, u64 start, u64 len);
 	void (*update_time)(struct inode *, struct timespec *, int);
 	int (*atomic_open)(struct inode *, struct dentry *,
@@ -87,16 +84,14 @@ setattr:	yes
 permission:	no (may not block if called in rcu-walk mode)
 get_acl:	no
 getattr:	no
-setxattr:	yes
-getxattr:	no
 listxattr:	no
-removexattr:	yes
 fiemap:		no
 update_time:	no
 atomic_open:	yes
 tmpfile:	no
 dentry_open:	no
 
+
 	Additionally, ->rmdir(), ->unlink() and ->rename() have ->i_mutex on
 victim.
 	cross-directory ->rename() and rename2() has (per-superblock)
@@ -105,6 +100,23 @@ victim.
 See Documentation/filesystems/directory-locking for more detailed discussion
 of the locking scheme for directory operations.
 
+----------------------- xattr_handler operations -----------------------
+protoypes:
+	bool (*list)(struct dentry *dentry);
+	int (*get)(const struct xattr_handler *handler, struct dentry *dentry,
+		   struct inode *inode, const char *name, void *buffer,
+		   size_t size);
+	int (*set)(const struct xattr_handler *handler, struct dentry *dentry,
+		   struct inode *inode, const char *name, const void *buffer,
+		   size_t size, int flags);
+
+locking rules:
+	all may block
+		i_mutex(inode)
+list:		no
+get:		no
+set:		yes
+
 --------------------------- super_operations ---------------------------
 prototypes:
 	struct inode *(*alloc_inode)(struct super_block *sb);
diff --git a/Documentation/filesystems/vfs.txt b/Documentation/filesystems/vfs.txt
index c61a223..65988f7 100644
--- a/Documentation/filesystems/vfs.txt
+++ b/Documentation/filesystems/vfs.txt
@@ -323,6 +323,35 @@ Whoever sets up the inode is responsible for filling in the "i_op" field. This
 is a pointer to a "struct inode_operations" which describes the methods that
 can be performed on individual inodes.
 
+struct xattr_handlers
+---------------------
+
+On filesystems that support extended attributes (xattrs), the s_xattr
+superblock field points to a NULL-terminated array of xattr handlers.  Extended
+attributes are name:value pairs.
+
+  name: Indicates that the handler matches attributes with the specified name
+	(such as "system.posix_acl_access"); the prefix field must be NULL.
+
+  prefix: Indicates that the handler matches all attributes with the specified
+	name prefix (such as "user."); the name field must be NULL.
+
+  list: Determine if attributes matching this xattr handler should be listed
+	for a particular dentry.  Used by some listxattr implementations like
+	generic_listxattr.
+
+  get: Called by the VFS to get the value of a particular extended attribute.
+	This method is called by the getxattr(2) system call.
+
+  set: Called by the VFS to set the value of a particular extended attribute.
+	When the new value is NULL, called to remove a particular extended
+	attribute.  This method is called by the the setxattr(2) and
+	removexattr(2) system calls.
+
+When none of the xattr handlers of a filesystem match the specified attribute
+name or when a filesystem doesn't support extended attributes, the various
+*xattr(2) system calls return -EOPNOTSUPP.
+
 
 The Inode Object
 ================
@@ -356,10 +385,7 @@ struct inode_operations {
 	int (*get_acl)(struct inode *, int);
 	int (*setattr) (struct dentry *, struct iattr *);
 	int (*getattr) (struct vfsmount *mnt, struct dentry *, struct kstat *);
-	int (*setxattr) (struct dentry *, const char *,const void *,size_t,int);
-	ssize_t (*getxattr) (struct dentry *, const char *, void *, size_t);
 	ssize_t (*listxattr) (struct dentry *, char *, size_t);
-	int (*removexattr) (struct dentry *, const char *);
 	void (*update_time)(struct inode *, struct timespec *, int);
 	int (*atomic_open)(struct inode *, struct dentry *, struct file *,
 			unsigned open_flag, umode_t create_mode, int *opened);
@@ -464,19 +490,8 @@ otherwise noted.
   getattr: called by the VFS to get attributes of a file. This method
   	is called by stat(2) and related system calls.
 
-  setxattr: called by the VFS to set an extended attribute for a file.
-  	Extended attribute is a name:value pair associated with an
-  	inode. This method is called by setxattr(2) system call.
-
-  getxattr: called by the VFS to retrieve the value of an extended
-  	attribute name. This method is called by getxattr(2) function
-  	call.
-
   listxattr: called by the VFS to list all extended attributes for a
-  	given file. This method is called by listxattr(2) system call.
-
-  removexattr: called by the VFS to remove an extended attribute from
-  	a file. This method is called by removexattr(2) system call.
+	given file. This method is called by the listxattr(2) system call.
 
   update_time: called by the VFS to update a specific time or the i_version of
   	an inode.  If this is not defined the VFS will update the inode itself
diff --git a/fs/xattr.c b/fs/xattr.c
index 8ffc93e..5bda06c 100644
--- a/fs/xattr.c
+++ b/fs/xattr.c
@@ -36,12 +36,9 @@ strcmp_prefix(const char *a, const char *a_prefix)
 
 /*
  * In order to implement different sets of xattr operations for each xattr
- * prefix with the generic xattr API, a filesystem should create a
- * null-terminated array of struct xattr_handler (one for each prefix) and
- * hang a pointer to it off of the s_xattr field of the superblock.
- *
- * The generic_fooxattr() functions will use this list to dispatch xattr
- * operations to the correct xattr_handler.
+ * prefix, a filesystem should create a null-terminated array of struct
+ * xattr_handler (one for each prefix) and hang a pointer to it off of the
+ * s_xattr field of the superblock.
  */
 #define for_each_xattr_handler(handlers, handler)		\
 	if (handlers)						\
@@ -133,9 +130,16 @@ int
 __vfs_setxattr(struct dentry *dentry, struct inode *inode, const char *name,
 	       const void *value, size_t size, int flags)
 {
-	if (!inode->i_op->setxattr)
+	const struct xattr_handler *handler;
+
+	handler = xattr_resolve_name(inode, &name);
+	if (IS_ERR(handler))
+		return PTR_ERR(handler);
+	if (!handler->set)
 		return -EOPNOTSUPP;
-	return inode->i_op->setxattr(dentry, inode, name, value, size, flags);
+	if (size == 0)
+		value = "";  /* empty EA, do not remove */
+	return handler->set(handler, dentry, inode, name, value, size, flags);
 }
 EXPORT_SYMBOL(__vfs_setxattr);
 
@@ -165,7 +169,7 @@ int __vfs_setxattr_noperm(struct dentry *dentry, const char *name,
 
 	if (issec)
 		inode->i_flags &= ~S_NOSEC;
-	if (inode->i_op->setxattr) {
+	if (inode->i_opflags & IOP_XATTR) {
 		error = __vfs_setxattr(dentry, inode, name, value, size, flags);
 		if (!error) {
 			fsnotify_xattr(dentry);
@@ -250,6 +254,7 @@ ssize_t
 vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
 		   size_t xattr_size, gfp_t flags)
 {
+	const struct xattr_handler *handler;
 	struct inode *inode = dentry->d_inode;
 	char *value = *xattr_value;
 	int error;
@@ -258,10 +263,12 @@ vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
 	if (error)
 		return error;
 
-	if (!inode->i_op->getxattr)
+	handler = xattr_resolve_name(inode, &name);
+	if (IS_ERR(handler))
+		return PTR_ERR(handler);
+	if (!handler->get)
 		return -EOPNOTSUPP;
-
-	error = inode->i_op->getxattr(dentry, inode, name, NULL, 0);
+	error = handler->get(handler, dentry, inode, name, NULL, 0);
 	if (error < 0)
 		return error;
 
@@ -272,7 +279,7 @@ vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
 		memset(value, 0, error + 1);
 	}
 
-	error = inode->i_op->getxattr(dentry, inode, name, value, error);
+	error = handler->get(handler, dentry, inode, name, value, error);
 	*xattr_value = value;
 	return error;
 }
@@ -281,9 +288,14 @@ ssize_t
 __vfs_getxattr(struct dentry *dentry, struct inode *inode, const char *name,
 	       void *value, size_t size)
 {
-	if (!inode->i_op->getxattr)
+	const struct xattr_handler *handler;
+
+	handler = xattr_resolve_name(inode, &name);
+	if (IS_ERR(handler))
+		return PTR_ERR(handler);
+	if (!handler->get)
 		return -EOPNOTSUPP;
-	return inode->i_op->getxattr(dentry, inode, name, value, size);
+	return handler->get(handler, dentry, inode, name, value, size);
 }
 EXPORT_SYMBOL(__vfs_getxattr);
 
@@ -342,11 +354,15 @@ EXPORT_SYMBOL_GPL(vfs_listxattr);
 int
 __vfs_removexattr(struct dentry *dentry, const char *name)
 {
-	struct inode *inode = dentry->d_inode;
+	struct inode *inode = d_inode(dentry);
+	const struct xattr_handler *handler;
 
-	if (!inode->i_op->removexattr)
+	handler = xattr_resolve_name(inode, &name);
+	if (IS_ERR(handler))
+		return PTR_ERR(handler);
+	if (!handler->set)
 		return -EOPNOTSUPP;
-	return inode->i_op->removexattr(dentry, name);
+	return handler->set(handler, dentry, inode, name, NULL, 0, XATTR_REPLACE);
 }
 EXPORT_SYMBOL(__vfs_removexattr);
 
-- 
2.5.5


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [PATCH v3 17/17] vfs: Remove {get,set,remove}xattr inode operations
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
                   ` (15 preceding siblings ...)
  2016-05-30  8:57 ` [PATCH v3 16/17] xattr: Stop calling {get,set,remove}xattr inode operations Andreas Gruenbacher
@ 2016-05-30  8:57 ` Andreas Gruenbacher
  2016-05-30  9:54 ` [PATCH v3 00/17] Xattr inode operation removal Sedat Dilek
  17 siblings, 0 replies; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30  8:57 UTC (permalink / raw)
  To: Alexander Viro
  Cc: Andreas Gruenbacher, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

These inode operations are no longer used; remove them.

Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
---
 fs/9p/vfs_inode_dotl.c |  9 ---------
 fs/btrfs/inode.c       | 12 ------------
 fs/ceph/dir.c          |  3 ---
 fs/ceph/inode.c        |  6 ------
 fs/cifs/cifsfs.c       |  9 ---------
 fs/ecryptfs/inode.c    |  9 ---------
 fs/ext2/file.c         |  3 ---
 fs/ext2/namei.c        |  6 ------
 fs/ext2/symlink.c      |  6 ------
 fs/ext4/file.c         |  3 ---
 fs/ext4/namei.c        |  6 ------
 fs/ext4/symlink.c      |  9 ---------
 fs/f2fs/file.c         |  3 ---
 fs/f2fs/namei.c        | 12 ------------
 fs/fuse/dir.c          |  9 ---------
 fs/gfs2/inode.c        |  9 ---------
 fs/hfs/inode.c         |  2 --
 fs/hfsplus/dir.c       |  3 ---
 fs/hfsplus/inode.c     |  3 ---
 fs/jffs2/dir.c         |  3 ---
 fs/jffs2/file.c        |  3 ---
 fs/jffs2/symlink.c     |  3 ---
 fs/jfs/file.c          |  3 ---
 fs/jfs/namei.c         |  3 ---
 fs/jfs/symlink.c       |  6 ------
 fs/kernfs/dir.c        |  3 ---
 fs/kernfs/inode.c      |  3 ---
 fs/kernfs/symlink.c    |  3 ---
 fs/nfs/nfs3proc.c      |  6 ------
 fs/nfs/nfs4proc.c      |  6 ------
 fs/ocfs2/file.c        |  3 ---
 fs/ocfs2/namei.c       |  3 ---
 fs/ocfs2/symlink.c     |  3 ---
 fs/orangefs/inode.c    |  3 ---
 fs/orangefs/namei.c    |  3 ---
 fs/orangefs/symlink.c  |  1 -
 fs/overlayfs/dir.c     |  3 ---
 fs/overlayfs/inode.c   |  6 ------
 fs/reiserfs/file.c     |  3 ---
 fs/reiserfs/namei.c    |  9 ---------
 fs/squashfs/inode.c    |  1 -
 fs/squashfs/namei.c    |  1 -
 fs/squashfs/symlink.c  |  1 -
 fs/squashfs/xattr.h    |  1 -
 fs/ubifs/dir.c         |  3 ---
 fs/ubifs/file.c        |  6 ------
 fs/xattr.c             | 53 --------------------------------------------------
 fs/xfs/xfs_iops.c      | 15 --------------
 include/linux/fs.h     |  5 -----
 include/linux/xattr.h  |  4 ----
 mm/shmem.c             | 15 --------------
 net/socket.c           |  1 -
 52 files changed, 307 deletions(-)

diff --git a/fs/9p/vfs_inode_dotl.c b/fs/9p/vfs_inode_dotl.c
index a34702c..f0f36b8 100644
--- a/fs/9p/vfs_inode_dotl.c
+++ b/fs/9p/vfs_inode_dotl.c
@@ -973,9 +973,6 @@ const struct inode_operations v9fs_dir_inode_operations_dotl = {
 	.rename = v9fs_vfs_rename,
 	.getattr = v9fs_vfs_getattr_dotl,
 	.setattr = v9fs_vfs_setattr_dotl,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
-	.removexattr = generic_removexattr,
 	.listxattr = v9fs_listxattr,
 	.get_acl = v9fs_iop_get_acl,
 };
@@ -983,9 +980,6 @@ const struct inode_operations v9fs_dir_inode_operations_dotl = {
 const struct inode_operations v9fs_file_inode_operations_dotl = {
 	.getattr = v9fs_vfs_getattr_dotl,
 	.setattr = v9fs_vfs_setattr_dotl,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
-	.removexattr = generic_removexattr,
 	.listxattr = v9fs_listxattr,
 	.get_acl = v9fs_iop_get_acl,
 };
@@ -995,8 +989,5 @@ const struct inode_operations v9fs_symlink_inode_operations_dotl = {
 	.get_link = v9fs_vfs_get_link_dotl,
 	.getattr = v9fs_vfs_getattr_dotl,
 	.setattr = v9fs_vfs_setattr_dotl,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
-	.removexattr = generic_removexattr,
 	.listxattr = v9fs_listxattr,
 };
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 2704995..0f084e2 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -10493,10 +10493,7 @@ static const struct inode_operations btrfs_dir_inode_operations = {
 	.symlink	= btrfs_symlink,
 	.setattr	= btrfs_setattr,
 	.mknod		= btrfs_mknod,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= btrfs_listxattr,
-	.removexattr	= generic_removexattr,
 	.permission	= btrfs_permission,
 	.get_acl	= btrfs_get_acl,
 	.set_acl	= btrfs_set_acl,
@@ -10570,10 +10567,7 @@ static const struct address_space_operations btrfs_symlink_aops = {
 static const struct inode_operations btrfs_file_inode_operations = {
 	.getattr	= btrfs_getattr,
 	.setattr	= btrfs_setattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr      = btrfs_listxattr,
-	.removexattr	= generic_removexattr,
 	.permission	= btrfs_permission,
 	.fiemap		= btrfs_fiemap,
 	.get_acl	= btrfs_get_acl,
@@ -10584,10 +10578,7 @@ static const struct inode_operations btrfs_special_inode_operations = {
 	.getattr	= btrfs_getattr,
 	.setattr	= btrfs_setattr,
 	.permission	= btrfs_permission,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= btrfs_listxattr,
-	.removexattr	= generic_removexattr,
 	.get_acl	= btrfs_get_acl,
 	.set_acl	= btrfs_set_acl,
 	.update_time	= btrfs_update_time,
@@ -10598,10 +10589,7 @@ static const struct inode_operations btrfs_symlink_inode_operations = {
 	.getattr	= btrfs_getattr,
 	.setattr	= btrfs_setattr,
 	.permission	= btrfs_permission,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= btrfs_listxattr,
-	.removexattr	= generic_removexattr,
 	.update_time	= btrfs_update_time,
 };
 
diff --git a/fs/ceph/dir.c b/fs/ceph/dir.c
index 6e0fedf..70fd1aa 100644
--- a/fs/ceph/dir.c
+++ b/fs/ceph/dir.c
@@ -1463,10 +1463,7 @@ const struct inode_operations ceph_dir_iops = {
 	.permission = ceph_permission,
 	.getattr = ceph_getattr,
 	.setattr = ceph_setattr,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = ceph_listxattr,
-	.removexattr = generic_removexattr,
 	.get_acl = ceph_get_acl,
 	.set_acl = ceph_set_acl,
 	.mknod = ceph_mknod,
diff --git a/fs/ceph/inode.c b/fs/ceph/inode.c
index f059b59..4c41726 100644
--- a/fs/ceph/inode.c
+++ b/fs/ceph/inode.c
@@ -94,10 +94,7 @@ const struct inode_operations ceph_file_iops = {
 	.permission = ceph_permission,
 	.setattr = ceph_setattr,
 	.getattr = ceph_getattr,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = ceph_listxattr,
-	.removexattr = generic_removexattr,
 	.get_acl = ceph_get_acl,
 	.set_acl = ceph_set_acl,
 };
@@ -1861,10 +1858,7 @@ static const struct inode_operations ceph_symlink_iops = {
 	.get_link = simple_get_link,
 	.setattr = ceph_setattr,
 	.getattr = ceph_getattr,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = ceph_listxattr,
-	.removexattr = generic_removexattr,
 };
 
 int __ceph_setattr(struct inode *inode, struct iattr *attr)
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c
index 5d8b7ed..6f6d338 100644
--- a/fs/cifs/cifsfs.c
+++ b/fs/cifs/cifsfs.c
@@ -893,30 +893,21 @@ const struct inode_operations cifs_dir_inode_ops = {
 	.setattr = cifs_setattr,
 	.symlink = cifs_symlink,
 	.mknod   = cifs_mknod,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = cifs_listxattr,
-	.removexattr = generic_removexattr,
 };
 
 const struct inode_operations cifs_file_inode_ops = {
 	.setattr = cifs_setattr,
 	.getattr = cifs_getattr,
 	.permission = cifs_permission,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = cifs_listxattr,
-	.removexattr = generic_removexattr,
 };
 
 const struct inode_operations cifs_symlink_inode_ops = {
 	.readlink = generic_readlink,
 	.get_link = cifs_get_link,
 	.permission = cifs_permission,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = cifs_listxattr,
-	.removexattr = generic_removexattr,
 };
 
 static int cifs_clone_file_range(struct file *src_file, loff_t off,
diff --git a/fs/ecryptfs/inode.c b/fs/ecryptfs/inode.c
index 32fee25..3f2575d 100644
--- a/fs/ecryptfs/inode.c
+++ b/fs/ecryptfs/inode.c
@@ -1090,10 +1090,7 @@ const struct inode_operations ecryptfs_symlink_iops = {
 	.permission = ecryptfs_permission,
 	.setattr = ecryptfs_setattr,
 	.getattr = ecryptfs_getattr_link,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = ecryptfs_listxattr,
-	.removexattr = generic_removexattr
 };
 
 const struct inode_operations ecryptfs_dir_iops = {
@@ -1108,20 +1105,14 @@ const struct inode_operations ecryptfs_dir_iops = {
 	.rename = ecryptfs_rename,
 	.permission = ecryptfs_permission,
 	.setattr = ecryptfs_setattr,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = ecryptfs_listxattr,
-	.removexattr = generic_removexattr
 };
 
 const struct inode_operations ecryptfs_main_iops = {
 	.permission = ecryptfs_permission,
 	.setattr = ecryptfs_setattr,
 	.getattr = ecryptfs_getattr,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = ecryptfs_listxattr,
-	.removexattr = generic_removexattr
 };
 
 static int ecryptfs_xattr_get(const struct xattr_handler *handler,
diff --git a/fs/ext2/file.c b/fs/ext2/file.c
index 868c023..83cf515 100644
--- a/fs/ext2/file.c
+++ b/fs/ext2/file.c
@@ -178,10 +178,7 @@ const struct file_operations ext2_file_operations = {
 
 const struct inode_operations ext2_file_inode_operations = {
 #ifdef CONFIG_EXT2_FS_XATTR
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ext2_listxattr,
-	.removexattr	= generic_removexattr,
 #endif
 	.setattr	= ext2_setattr,
 	.get_acl	= ext2_get_acl,
diff --git a/fs/ext2/namei.c b/fs/ext2/namei.c
index d446203..ff32ea7 100644
--- a/fs/ext2/namei.c
+++ b/fs/ext2/namei.c
@@ -428,10 +428,7 @@ const struct inode_operations ext2_dir_inode_operations = {
 	.mknod		= ext2_mknod,
 	.rename		= ext2_rename,
 #ifdef CONFIG_EXT2_FS_XATTR
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ext2_listxattr,
-	.removexattr	= generic_removexattr,
 #endif
 	.setattr	= ext2_setattr,
 	.get_acl	= ext2_get_acl,
@@ -441,10 +438,7 @@ const struct inode_operations ext2_dir_inode_operations = {
 
 const struct inode_operations ext2_special_inode_operations = {
 #ifdef CONFIG_EXT2_FS_XATTR
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ext2_listxattr,
-	.removexattr	= generic_removexattr,
 #endif
 	.setattr	= ext2_setattr,
 	.get_acl	= ext2_get_acl,
diff --git a/fs/ext2/symlink.c b/fs/ext2/symlink.c
index 3495d8a..8437b19 100644
--- a/fs/ext2/symlink.c
+++ b/fs/ext2/symlink.c
@@ -25,10 +25,7 @@ const struct inode_operations ext2_symlink_inode_operations = {
 	.get_link	= page_get_link,
 	.setattr	= ext2_setattr,
 #ifdef CONFIG_EXT2_FS_XATTR
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ext2_listxattr,
-	.removexattr	= generic_removexattr,
 #endif
 };
  
@@ -37,9 +34,6 @@ const struct inode_operations ext2_fast_symlink_inode_operations = {
 	.get_link	= simple_get_link,
 	.setattr	= ext2_setattr,
 #ifdef CONFIG_EXT2_FS_XATTR
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ext2_listxattr,
-	.removexattr	= generic_removexattr,
 #endif
 };
diff --git a/fs/ext4/file.c b/fs/ext4/file.c
index df44c87..3a25ddb 100644
--- a/fs/ext4/file.c
+++ b/fs/ext4/file.c
@@ -711,10 +711,7 @@ const struct file_operations ext4_file_operations = {
 const struct inode_operations ext4_file_inode_operations = {
 	.setattr	= ext4_setattr,
 	.getattr	= ext4_getattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ext4_listxattr,
-	.removexattr	= generic_removexattr,
 	.get_acl	= ext4_get_acl,
 	.set_acl	= ext4_set_acl,
 	.fiemap		= ext4_fiemap,
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c
index ec4c399..007a166 100644
--- a/fs/ext4/namei.c
+++ b/fs/ext4/namei.c
@@ -3887,10 +3887,7 @@ const struct inode_operations ext4_dir_inode_operations = {
 	.tmpfile	= ext4_tmpfile,
 	.rename2	= ext4_rename2,
 	.setattr	= ext4_setattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ext4_listxattr,
-	.removexattr	= generic_removexattr,
 	.get_acl	= ext4_get_acl,
 	.set_acl	= ext4_set_acl,
 	.fiemap         = ext4_fiemap,
@@ -3898,10 +3895,7 @@ const struct inode_operations ext4_dir_inode_operations = {
 
 const struct inode_operations ext4_special_inode_operations = {
 	.setattr	= ext4_setattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ext4_listxattr,
-	.removexattr	= generic_removexattr,
 	.get_acl	= ext4_get_acl,
 	.set_acl	= ext4_set_acl,
 };
diff --git a/fs/ext4/symlink.c b/fs/ext4/symlink.c
index 75ed5c2..65fa087 100644
--- a/fs/ext4/symlink.c
+++ b/fs/ext4/symlink.c
@@ -94,10 +94,7 @@ const struct inode_operations ext4_encrypted_symlink_inode_operations = {
 	.readlink	= generic_readlink,
 	.get_link	= ext4_encrypted_get_link,
 	.setattr	= ext4_setattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ext4_listxattr,
-	.removexattr	= generic_removexattr,
 };
 #endif
 
@@ -105,18 +102,12 @@ const struct inode_operations ext4_symlink_inode_operations = {
 	.readlink	= generic_readlink,
 	.get_link	= page_get_link,
 	.setattr	= ext4_setattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ext4_listxattr,
-	.removexattr	= generic_removexattr,
 };
 
 const struct inode_operations ext4_fast_symlink_inode_operations = {
 	.readlink	= generic_readlink,
 	.get_link	= simple_get_link,
 	.setattr	= ext4_setattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ext4_listxattr,
-	.removexattr	= generic_removexattr,
 };
diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
index f4c0086..3dbe74c 100644
--- a/fs/f2fs/file.c
+++ b/fs/f2fs/file.c
@@ -740,10 +740,7 @@ const struct inode_operations f2fs_file_inode_operations = {
 	.get_acl	= f2fs_get_acl,
 	.set_acl	= f2fs_set_acl,
 #ifdef CONFIG_F2FS_FS_XATTR
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= f2fs_listxattr,
-	.removexattr	= generic_removexattr,
 #endif
 	.fiemap		= f2fs_fiemap,
 };
diff --git a/fs/f2fs/namei.c b/fs/f2fs/namei.c
index 324ed38..10d098c 100644
--- a/fs/f2fs/namei.c
+++ b/fs/f2fs/namei.c
@@ -1066,10 +1066,7 @@ const struct inode_operations f2fs_encrypted_symlink_inode_operations = {
 	.getattr	= f2fs_getattr,
 	.setattr	= f2fs_setattr,
 #ifdef CONFIG_F2FS_FS_XATTR
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= f2fs_listxattr,
-	.removexattr	= generic_removexattr,
 #endif
 };
 
@@ -1089,10 +1086,7 @@ const struct inode_operations f2fs_dir_inode_operations = {
 	.get_acl	= f2fs_get_acl,
 	.set_acl	= f2fs_set_acl,
 #ifdef CONFIG_F2FS_FS_XATTR
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= f2fs_listxattr,
-	.removexattr	= generic_removexattr,
 #endif
 };
 
@@ -1102,10 +1096,7 @@ const struct inode_operations f2fs_symlink_inode_operations = {
 	.getattr	= f2fs_getattr,
 	.setattr	= f2fs_setattr,
 #ifdef CONFIG_F2FS_FS_XATTR
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= f2fs_listxattr,
-	.removexattr	= generic_removexattr,
 #endif
 };
 
@@ -1115,9 +1106,6 @@ const struct inode_operations f2fs_special_inode_operations = {
 	.get_acl	= f2fs_get_acl,
 	.set_acl	= f2fs_set_acl,
 #ifdef CONFIG_F2FS_FS_XATTR
-	.setxattr       = generic_setxattr,
-	.getxattr       = generic_getxattr,
 	.listxattr	= f2fs_listxattr,
-	.removexattr    = generic_removexattr,
 #endif
 };
diff --git a/fs/fuse/dir.c b/fs/fuse/dir.c
index b44177a7..59e65bc 100644
--- a/fs/fuse/dir.c
+++ b/fs/fuse/dir.c
@@ -1878,10 +1878,7 @@ static const struct inode_operations fuse_dir_inode_operations = {
 	.mknod		= fuse_mknod,
 	.permission	= fuse_permission,
 	.getattr	= fuse_getattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= fuse_listxattr,
-	.removexattr	= generic_removexattr,
 };
 
 static const struct file_operations fuse_dir_operations = {
@@ -1899,10 +1896,7 @@ static const struct inode_operations fuse_common_inode_operations = {
 	.setattr	= fuse_setattr,
 	.permission	= fuse_permission,
 	.getattr	= fuse_getattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= fuse_listxattr,
-	.removexattr	= generic_removexattr,
 };
 
 static const struct inode_operations fuse_symlink_inode_operations = {
@@ -1910,10 +1904,7 @@ static const struct inode_operations fuse_symlink_inode_operations = {
 	.get_link	= fuse_get_link,
 	.readlink	= generic_readlink,
 	.getattr	= fuse_getattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= fuse_listxattr,
-	.removexattr	= generic_removexattr,
 };
 
 void fuse_init_common(struct inode *inode)
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c
index 21dc784..c454bae 100644
--- a/fs/gfs2/inode.c
+++ b/fs/gfs2/inode.c
@@ -1994,10 +1994,7 @@ const struct inode_operations gfs2_file_iops = {
 	.permission = gfs2_permission,
 	.setattr = gfs2_setattr,
 	.getattr = gfs2_getattr,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = gfs2_listxattr,
-	.removexattr = generic_removexattr,
 	.fiemap = gfs2_fiemap,
 	.get_acl = gfs2_get_acl,
 	.set_acl = gfs2_set_acl,
@@ -2016,10 +2013,7 @@ const struct inode_operations gfs2_dir_iops = {
 	.permission = gfs2_permission,
 	.setattr = gfs2_setattr,
 	.getattr = gfs2_getattr,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = gfs2_listxattr,
-	.removexattr = generic_removexattr,
 	.fiemap = gfs2_fiemap,
 	.get_acl = gfs2_get_acl,
 	.set_acl = gfs2_set_acl,
@@ -2032,10 +2026,7 @@ const struct inode_operations gfs2_symlink_iops = {
 	.permission = gfs2_permission,
 	.setattr = gfs2_setattr,
 	.getattr = gfs2_getattr,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = gfs2_listxattr,
-	.removexattr = generic_removexattr,
 	.fiemap = gfs2_fiemap,
 };
 
diff --git a/fs/hfs/inode.c b/fs/hfs/inode.c
index d7f833f..85961fc 100644
--- a/fs/hfs/inode.c
+++ b/fs/hfs/inode.c
@@ -688,7 +688,5 @@ static const struct file_operations hfs_file_operations = {
 static const struct inode_operations hfs_file_inode_operations = {
 	.lookup		= hfs_file_lookup,
 	.setattr	= hfs_inode_setattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= generic_listxattr,
 };
diff --git a/fs/hfsplus/dir.c b/fs/hfsplus/dir.c
index 42e1286..9cbe430 100644
--- a/fs/hfsplus/dir.c
+++ b/fs/hfsplus/dir.c
@@ -562,10 +562,7 @@ const struct inode_operations hfsplus_dir_inode_operations = {
 	.symlink		= hfsplus_symlink,
 	.mknod			= hfsplus_mknod,
 	.rename			= hfsplus_rename,
-	.setxattr		= generic_setxattr,
-	.getxattr		= generic_getxattr,
 	.listxattr		= hfsplus_listxattr,
-	.removexattr		= generic_removexattr,
 #ifdef CONFIG_HFSPLUS_FS_POSIX_ACL
 	.get_acl		= hfsplus_get_posix_acl,
 	.set_acl		= hfsplus_set_posix_acl,
diff --git a/fs/hfsplus/inode.c b/fs/hfsplus/inode.c
index ef9fefe..f5baee5 100644
--- a/fs/hfsplus/inode.c
+++ b/fs/hfsplus/inode.c
@@ -333,10 +333,7 @@ int hfsplus_file_fsync(struct file *file, loff_t start, loff_t end,
 
 static const struct inode_operations hfsplus_file_inode_operations = {
 	.setattr	= hfsplus_setattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= hfsplus_listxattr,
-	.removexattr	= generic_removexattr,
 #ifdef CONFIG_HFSPLUS_FS_POSIX_ACL
 	.get_acl	= hfsplus_get_posix_acl,
 	.set_acl	= hfsplus_set_posix_acl,
diff --git a/fs/jffs2/dir.c b/fs/jffs2/dir.c
index db84191..56cf89c 100644
--- a/fs/jffs2/dir.c
+++ b/fs/jffs2/dir.c
@@ -61,10 +61,7 @@ const struct inode_operations jffs2_dir_inode_operations =
 	.get_acl =	jffs2_get_acl,
 	.set_acl =	jffs2_set_acl,
 	.setattr =	jffs2_setattr,
-	.setxattr =	generic_setxattr,
-	.getxattr =	generic_getxattr,
 	.listxattr =	jffs2_listxattr,
-	.removexattr =	generic_removexattr
 };
 
 /***********************************************************************/
diff --git a/fs/jffs2/file.c b/fs/jffs2/file.c
index fdf9e1c..c12476e 100644
--- a/fs/jffs2/file.c
+++ b/fs/jffs2/file.c
@@ -66,10 +66,7 @@ const struct inode_operations jffs2_file_inode_operations =
 	.get_acl =	jffs2_get_acl,
 	.set_acl =	jffs2_set_acl,
 	.setattr =	jffs2_setattr,
-	.setxattr =	generic_setxattr,
-	.getxattr =	generic_getxattr,
 	.listxattr =	jffs2_listxattr,
-	.removexattr =	generic_removexattr
 };
 
 const struct address_space_operations jffs2_file_address_operations =
diff --git a/fs/jffs2/symlink.c b/fs/jffs2/symlink.c
index afe2d75..8f3f085 100644
--- a/fs/jffs2/symlink.c
+++ b/fs/jffs2/symlink.c
@@ -16,8 +16,5 @@ const struct inode_operations jffs2_symlink_inode_operations =
 	.readlink =	generic_readlink,
 	.get_link =	simple_get_link,
 	.setattr =	jffs2_setattr,
-	.setxattr =	generic_setxattr,
-	.getxattr =	generic_getxattr,
 	.listxattr =	jffs2_listxattr,
-	.removexattr =	generic_removexattr
 };
diff --git a/fs/jfs/file.c b/fs/jfs/file.c
index 7f1a585..f6eb041 100644
--- a/fs/jfs/file.c
+++ b/fs/jfs/file.c
@@ -140,10 +140,7 @@ int jfs_setattr(struct dentry *dentry, struct iattr *iattr)
 }
 
 const struct inode_operations jfs_file_inode_operations = {
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= jfs_listxattr,
-	.removexattr	= generic_removexattr,
 	.setattr	= jfs_setattr,
 #ifdef CONFIG_JFS_POSIX_ACL
 	.get_acl	= jfs_get_acl,
diff --git a/fs/jfs/namei.c b/fs/jfs/namei.c
index 539dedd..cdaacec 100644
--- a/fs/jfs/namei.c
+++ b/fs/jfs/namei.c
@@ -1537,10 +1537,7 @@ const struct inode_operations jfs_dir_inode_operations = {
 	.rmdir		= jfs_rmdir,
 	.mknod		= jfs_mknod,
 	.rename		= jfs_rename,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= jfs_listxattr,
-	.removexattr	= generic_removexattr,
 	.setattr	= jfs_setattr,
 #ifdef CONFIG_JFS_POSIX_ACL
 	.get_acl	= jfs_get_acl,
diff --git a/fs/jfs/symlink.c b/fs/jfs/symlink.c
index c94c7e4..c82404f 100644
--- a/fs/jfs/symlink.c
+++ b/fs/jfs/symlink.c
@@ -25,19 +25,13 @@ const struct inode_operations jfs_fast_symlink_inode_operations = {
 	.readlink	= generic_readlink,
 	.get_link	= simple_get_link,
 	.setattr	= jfs_setattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= jfs_listxattr,
-	.removexattr	= generic_removexattr,
 };
 
 const struct inode_operations jfs_symlink_inode_operations = {
 	.readlink	= generic_readlink,
 	.get_link	= page_get_link,
 	.setattr	= jfs_setattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= jfs_listxattr,
-	.removexattr	= generic_removexattr,
 };
 
diff --git a/fs/kernfs/dir.c b/fs/kernfs/dir.c
index 320d8a9..b98855b 100644
--- a/fs/kernfs/dir.c
+++ b/fs/kernfs/dir.c
@@ -1126,9 +1126,6 @@ const struct inode_operations kernfs_dir_iops = {
 	.permission	= kernfs_iop_permission,
 	.setattr	= kernfs_iop_setattr,
 	.getattr	= kernfs_iop_getattr,
-	.setxattr	= generic_setxattr,
-	.removexattr	= generic_removexattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= kernfs_iop_listxattr,
 
 	.mkdir		= kernfs_iop_mkdir,
diff --git a/fs/kernfs/inode.c b/fs/kernfs/inode.c
index 6bc8754..2b735ce 100644
--- a/fs/kernfs/inode.c
+++ b/fs/kernfs/inode.c
@@ -28,9 +28,6 @@ static const struct inode_operations kernfs_iops = {
 	.permission	= kernfs_iop_permission,
 	.setattr	= kernfs_iop_setattr,
 	.getattr	= kernfs_iop_getattr,
-	.setxattr	= generic_setxattr,
-	.removexattr	= generic_removexattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= kernfs_iop_listxattr,
 };
 
diff --git a/fs/kernfs/symlink.c b/fs/kernfs/symlink.c
index 549a14c7..9b43ca0 100644
--- a/fs/kernfs/symlink.c
+++ b/fs/kernfs/symlink.c
@@ -134,9 +134,6 @@ static const char *kernfs_iop_get_link(struct dentry *dentry,
 }
 
 const struct inode_operations kernfs_symlink_iops = {
-	.setxattr	= generic_setxattr,
-	.removexattr	= generic_removexattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= kernfs_iop_listxattr,
 	.readlink	= generic_readlink,
 	.get_link	= kernfs_iop_get_link,
diff --git a/fs/nfs/nfs3proc.c b/fs/nfs/nfs3proc.c
index cb28cce..0be4e42 100644
--- a/fs/nfs/nfs3proc.c
+++ b/fs/nfs/nfs3proc.c
@@ -899,9 +899,6 @@ static const struct inode_operations nfs3_dir_inode_operations = {
 	.setattr	= nfs_setattr,
 #ifdef CONFIG_NFS_V3_ACL
 	.listxattr	= nfs3_listxattr,
-	.getxattr	= generic_getxattr,
-	.setxattr	= generic_setxattr,
-	.removexattr	= generic_removexattr,
 	.get_acl	= nfs3_get_acl,
 	.set_acl	= nfs3_set_acl,
 #endif
@@ -913,9 +910,6 @@ static const struct inode_operations nfs3_file_inode_operations = {
 	.setattr	= nfs_setattr,
 #ifdef CONFIG_NFS_V3_ACL
 	.listxattr	= nfs3_listxattr,
-	.getxattr	= generic_getxattr,
-	.setxattr	= generic_setxattr,
-	.removexattr	= generic_removexattr,
 	.get_acl	= nfs3_get_acl,
 	.set_acl	= nfs3_set_acl,
 #endif
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c
index de97567..1e6b319 100644
--- a/fs/nfs/nfs4proc.c
+++ b/fs/nfs/nfs4proc.c
@@ -8865,20 +8865,14 @@ static const struct inode_operations nfs4_dir_inode_operations = {
 	.permission	= nfs_permission,
 	.getattr	= nfs_getattr,
 	.setattr	= nfs_setattr,
-	.getxattr	= generic_getxattr,
-	.setxattr	= generic_setxattr,
 	.listxattr	= nfs4_listxattr,
-	.removexattr	= generic_removexattr,
 };
 
 static const struct inode_operations nfs4_file_inode_operations = {
 	.permission	= nfs_permission,
 	.getattr	= nfs_getattr,
 	.setattr	= nfs_setattr,
-	.getxattr	= generic_getxattr,
-	.setxattr	= generic_setxattr,
 	.listxattr	= nfs4_listxattr,
-	.removexattr	= generic_removexattr,
 };
 
 const struct nfs_rpc_ops nfs_v4_clientops = {
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c
index 4e7b0dc..baf291b 100644
--- a/fs/ocfs2/file.c
+++ b/fs/ocfs2/file.c
@@ -2460,10 +2460,7 @@ const struct inode_operations ocfs2_file_iops = {
 	.setattr	= ocfs2_setattr,
 	.getattr	= ocfs2_getattr,
 	.permission	= ocfs2_permission,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ocfs2_listxattr,
-	.removexattr	= generic_removexattr,
 	.fiemap		= ocfs2_fiemap,
 	.get_acl	= ocfs2_iop_get_acl,
 	.set_acl	= ocfs2_iop_set_acl,
diff --git a/fs/ocfs2/namei.c b/fs/ocfs2/namei.c
index a8f1225..6cc043e 100644
--- a/fs/ocfs2/namei.c
+++ b/fs/ocfs2/namei.c
@@ -2913,10 +2913,7 @@ const struct inode_operations ocfs2_dir_iops = {
 	.setattr	= ocfs2_setattr,
 	.getattr	= ocfs2_getattr,
 	.permission	= ocfs2_permission,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ocfs2_listxattr,
-	.removexattr	= generic_removexattr,
 	.fiemap         = ocfs2_fiemap,
 	.get_acl	= ocfs2_iop_get_acl,
 	.set_acl	= ocfs2_iop_set_acl,
diff --git a/fs/ocfs2/symlink.c b/fs/ocfs2/symlink.c
index 6c2a3e3..6ad8eec 100644
--- a/fs/ocfs2/symlink.c
+++ b/fs/ocfs2/symlink.c
@@ -91,9 +91,6 @@ const struct inode_operations ocfs2_symlink_inode_operations = {
 	.get_link	= page_get_link,
 	.getattr	= ocfs2_getattr,
 	.setattr	= ocfs2_setattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ocfs2_listxattr,
-	.removexattr	= generic_removexattr,
 	.fiemap		= ocfs2_fiemap,
 };
diff --git a/fs/orangefs/inode.c b/fs/orangefs/inode.c
index 85640e9..80b1b35 100644
--- a/fs/orangefs/inode.c
+++ b/fs/orangefs/inode.c
@@ -299,10 +299,7 @@ struct inode_operations orangefs_file_inode_operations = {
 	.set_acl = orangefs_set_acl,
 	.setattr = orangefs_setattr,
 	.getattr = orangefs_getattr,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = orangefs_listxattr,
-	.removexattr = generic_removexattr,
 	.permission = orangefs_permission,
 };
 
diff --git a/fs/orangefs/namei.c b/fs/orangefs/namei.c
index 5a60c50..d396d03 100644
--- a/fs/orangefs/namei.c
+++ b/fs/orangefs/namei.c
@@ -454,9 +454,6 @@ struct inode_operations orangefs_dir_inode_operations = {
 	.rename = orangefs_rename,
 	.setattr = orangefs_setattr,
 	.getattr = orangefs_getattr,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
-	.removexattr = generic_removexattr,
 	.listxattr = orangefs_listxattr,
 	.permission = orangefs_permission,
 };
diff --git a/fs/orangefs/symlink.c b/fs/orangefs/symlink.c
index 6418dd6..dade1ef 100644
--- a/fs/orangefs/symlink.c
+++ b/fs/orangefs/symlink.c
@@ -14,6 +14,5 @@ struct inode_operations orangefs_symlink_inode_operations = {
 	.setattr = orangefs_setattr,
 	.getattr = orangefs_getattr,
 	.listxattr = orangefs_listxattr,
-	.setxattr = generic_setxattr,
 	.permission = orangefs_permission,
 };
diff --git a/fs/overlayfs/dir.c b/fs/overlayfs/dir.c
index 450bc74..83d26c5 100644
--- a/fs/overlayfs/dir.c
+++ b/fs/overlayfs/dir.c
@@ -910,8 +910,5 @@ const struct inode_operations ovl_dir_inode_operations = {
 	.mknod		= ovl_mknod,
 	.permission	= ovl_permission,
 	.getattr	= ovl_dir_getattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ovl_listxattr,
-	.removexattr	= generic_removexattr,
 };
diff --git a/fs/overlayfs/inode.c b/fs/overlayfs/inode.c
index 6c9f1fb..3659c04 100644
--- a/fs/overlayfs/inode.c
+++ b/fs/overlayfs/inode.c
@@ -374,10 +374,7 @@ static const struct inode_operations ovl_file_inode_operations = {
 	.setattr	= ovl_setattr,
 	.permission	= ovl_permission,
 	.getattr	= ovl_getattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ovl_listxattr,
-	.removexattr	= generic_removexattr,
 };
 
 static const struct inode_operations ovl_symlink_inode_operations = {
@@ -385,10 +382,7 @@ static const struct inode_operations ovl_symlink_inode_operations = {
 	.get_link	= ovl_get_link,
 	.readlink	= ovl_readlink,
 	.getattr	= ovl_getattr,
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= ovl_listxattr,
-	.removexattr	= generic_removexattr,
 };
 
 struct inode *ovl_new_inode(struct super_block *sb, umode_t mode,
diff --git a/fs/reiserfs/file.c b/fs/reiserfs/file.c
index 90f815b..2f8c5c9 100644
--- a/fs/reiserfs/file.c
+++ b/fs/reiserfs/file.c
@@ -260,10 +260,7 @@ const struct file_operations reiserfs_file_operations = {
 
 const struct inode_operations reiserfs_file_inode_operations = {
 	.setattr = reiserfs_setattr,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = reiserfs_listxattr,
-	.removexattr = generic_removexattr,
 	.permission = reiserfs_permission,
 	.get_acl = reiserfs_get_acl,
 	.set_acl = reiserfs_set_acl,
diff --git a/fs/reiserfs/namei.c b/fs/reiserfs/namei.c
index 8a36696..fd7d060 100644
--- a/fs/reiserfs/namei.c
+++ b/fs/reiserfs/namei.c
@@ -1650,10 +1650,7 @@ const struct inode_operations reiserfs_dir_inode_operations = {
 	.mknod = reiserfs_mknod,
 	.rename = reiserfs_rename,
 	.setattr = reiserfs_setattr,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = reiserfs_listxattr,
-	.removexattr = generic_removexattr,
 	.permission = reiserfs_permission,
 	.get_acl = reiserfs_get_acl,
 	.set_acl = reiserfs_set_acl,
@@ -1667,10 +1664,7 @@ const struct inode_operations reiserfs_symlink_inode_operations = {
 	.readlink = generic_readlink,
 	.get_link	= page_get_link,
 	.setattr = reiserfs_setattr,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = reiserfs_listxattr,
-	.removexattr = generic_removexattr,
 	.permission = reiserfs_permission,
 };
 
@@ -1679,10 +1673,7 @@ const struct inode_operations reiserfs_symlink_inode_operations = {
  */
 const struct inode_operations reiserfs_special_inode_operations = {
 	.setattr = reiserfs_setattr,
-	.setxattr = generic_setxattr,
-	.getxattr = generic_getxattr,
 	.listxattr = reiserfs_listxattr,
-	.removexattr = generic_removexattr,
 	.permission = reiserfs_permission,
 	.get_acl = reiserfs_get_acl,
 	.set_acl = reiserfs_set_acl,
diff --git a/fs/squashfs/inode.c b/fs/squashfs/inode.c
index 0927b1e..e9793b1 100644
--- a/fs/squashfs/inode.c
+++ b/fs/squashfs/inode.c
@@ -425,7 +425,6 @@ failed_read:
 
 
 const struct inode_operations squashfs_inode_ops = {
-	.getxattr = generic_getxattr,
 	.listxattr = squashfs_listxattr
 };
 
diff --git a/fs/squashfs/namei.c b/fs/squashfs/namei.c
index 67cad77..40c10d9 100644
--- a/fs/squashfs/namei.c
+++ b/fs/squashfs/namei.c
@@ -247,6 +247,5 @@ failed:
 
 const struct inode_operations squashfs_dir_inode_ops = {
 	.lookup = squashfs_lookup,
-	.getxattr = generic_getxattr,
 	.listxattr = squashfs_listxattr
 };
diff --git a/fs/squashfs/symlink.c b/fs/squashfs/symlink.c
index d688ef4..79b9c31 100644
--- a/fs/squashfs/symlink.c
+++ b/fs/squashfs/symlink.c
@@ -120,7 +120,6 @@ const struct address_space_operations squashfs_symlink_aops = {
 const struct inode_operations squashfs_symlink_inode_ops = {
 	.readlink = generic_readlink,
 	.get_link = page_get_link,
-	.getxattr = generic_getxattr,
 	.listxattr = squashfs_listxattr
 };
 
diff --git a/fs/squashfs/xattr.h b/fs/squashfs/xattr.h
index c83f5d9..afe70f8 100644
--- a/fs/squashfs/xattr.h
+++ b/fs/squashfs/xattr.h
@@ -42,6 +42,5 @@ static inline int squashfs_xattr_lookup(struct super_block *sb,
 	return 0;
 }
 #define squashfs_listxattr NULL
-#define generic_getxattr NULL
 #define squashfs_xattr_handlers NULL
 #endif
diff --git a/fs/ubifs/dir.c b/fs/ubifs/dir.c
index 4b86d3a..1d55aea 100644
--- a/fs/ubifs/dir.c
+++ b/fs/ubifs/dir.c
@@ -1182,10 +1182,7 @@ const struct inode_operations ubifs_dir_inode_operations = {
 	.rename      = ubifs_rename,
 	.setattr     = ubifs_setattr,
 	.getattr     = ubifs_getattr,
-	.setxattr    = generic_setxattr,
-	.getxattr    = generic_getxattr,
 	.listxattr   = ubifs_listxattr,
-	.removexattr = generic_removexattr,
 #ifdef CONFIG_UBIFS_ATIME_SUPPORT
 	.update_time = ubifs_update_time,
 #endif
diff --git a/fs/ubifs/file.c b/fs/ubifs/file.c
index 0831697..ffdc4b2 100644
--- a/fs/ubifs/file.c
+++ b/fs/ubifs/file.c
@@ -1597,10 +1597,7 @@ const struct address_space_operations ubifs_file_address_operations = {
 const struct inode_operations ubifs_file_inode_operations = {
 	.setattr     = ubifs_setattr,
 	.getattr     = ubifs_getattr,
-	.setxattr    = generic_setxattr,
-	.getxattr    = generic_getxattr,
 	.listxattr   = ubifs_listxattr,
-	.removexattr = generic_removexattr,
 #ifdef CONFIG_UBIFS_ATIME_SUPPORT
 	.update_time = ubifs_update_time,
 #endif
@@ -1611,10 +1608,7 @@ const struct inode_operations ubifs_symlink_inode_operations = {
 	.get_link    = simple_get_link,
 	.setattr     = ubifs_setattr,
 	.getattr     = ubifs_getattr,
-	.setxattr    = generic_setxattr,
-	.getxattr    = generic_getxattr,
 	.listxattr   = ubifs_listxattr,
-	.removexattr = generic_removexattr,
 #ifdef CONFIG_UBIFS_ATIME_SUPPORT
 	.update_time = ubifs_update_time,
 #endif
diff --git a/fs/xattr.c b/fs/xattr.c
index 5bda06c..8df6ccf 100644
--- a/fs/xattr.c
+++ b/fs/xattr.c
@@ -734,22 +734,6 @@ SYSCALL_DEFINE2(fremovexattr, int, fd, const char __user *, name)
 }
 
 /*
- * Find the handler for the prefix and dispatch its get() operation.
- */
-ssize_t
-generic_getxattr(struct dentry *dentry, struct inode *inode,
-		 const char *name, void *buffer, size_t size)
-{
-	const struct xattr_handler *handler;
-
-	handler = xattr_resolve_name(inode, &name);
-	if (IS_ERR(handler))
-		return PTR_ERR(handler);
-	return handler->get(handler, dentry, inode,
-			    name, buffer, size);
-}
-
-/*
  * Combine the results of the list() operation from every xattr_handler in the
  * list.
  */
@@ -785,44 +769,7 @@ generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size)
 	}
 	return size;
 }
-
-/*
- * Find the handler for the prefix and dispatch its set() operation.
- */
-int
-generic_setxattr(struct dentry *dentry, struct inode *inode, const char *name,
-		 const void *value, size_t size, int flags)
-{
-	const struct xattr_handler *handler;
-
-	if (size == 0)
-		value = "";  /* empty EA, do not remove */
-	handler = xattr_resolve_name(inode, &name);
-	if (IS_ERR(handler))
-		return PTR_ERR(handler);
-	return handler->set(handler, dentry, inode, name, value, size, flags);
-}
-
-/*
- * Find the handler for the prefix and dispatch its set() operation to remove
- * any associated extended attribute.
- */
-int
-generic_removexattr(struct dentry *dentry, const char *name)
-{
-	const struct xattr_handler *handler;
-
-	handler = xattr_resolve_name(d_inode(dentry), &name);
-	if (IS_ERR(handler))
-		return PTR_ERR(handler);
-	return handler->set(handler, dentry, d_inode(dentry), name, NULL,
-			    0, XATTR_REPLACE);
-}
-
-EXPORT_SYMBOL(generic_getxattr);
 EXPORT_SYMBOL(generic_listxattr);
-EXPORT_SYMBOL(generic_setxattr);
-EXPORT_SYMBOL(generic_removexattr);
 
 /**
  * xattr_full_name  -  Compute full attribute name from suffix
diff --git a/fs/xfs/xfs_iops.c b/fs/xfs/xfs_iops.c
index c5d4eba..2786cfd 100644
--- a/fs/xfs/xfs_iops.c
+++ b/fs/xfs/xfs_iops.c
@@ -1098,9 +1098,6 @@ static const struct inode_operations xfs_inode_operations = {
 	.set_acl		= xfs_set_acl,
 	.getattr		= xfs_vn_getattr,
 	.setattr		= xfs_vn_setattr,
-	.setxattr		= generic_setxattr,
-	.getxattr		= generic_getxattr,
-	.removexattr		= generic_removexattr,
 	.listxattr		= xfs_vn_listxattr,
 	.fiemap			= xfs_vn_fiemap,
 	.update_time		= xfs_vn_update_time,
@@ -1126,9 +1123,6 @@ static const struct inode_operations xfs_dir_inode_operations = {
 	.set_acl		= xfs_set_acl,
 	.getattr		= xfs_vn_getattr,
 	.setattr		= xfs_vn_setattr,
-	.setxattr		= generic_setxattr,
-	.getxattr		= generic_getxattr,
-	.removexattr		= generic_removexattr,
 	.listxattr		= xfs_vn_listxattr,
 	.update_time		= xfs_vn_update_time,
 	.tmpfile		= xfs_vn_tmpfile,
@@ -1154,9 +1148,6 @@ static const struct inode_operations xfs_dir_ci_inode_operations = {
 	.set_acl		= xfs_set_acl,
 	.getattr		= xfs_vn_getattr,
 	.setattr		= xfs_vn_setattr,
-	.setxattr		= generic_setxattr,
-	.getxattr		= generic_getxattr,
-	.removexattr		= generic_removexattr,
 	.listxattr		= xfs_vn_listxattr,
 	.update_time		= xfs_vn_update_time,
 	.tmpfile		= xfs_vn_tmpfile,
@@ -1167,9 +1158,6 @@ static const struct inode_operations xfs_symlink_inode_operations = {
 	.get_link		= xfs_vn_get_link,
 	.getattr		= xfs_vn_getattr,
 	.setattr		= xfs_vn_setattr,
-	.setxattr		= generic_setxattr,
-	.getxattr		= generic_getxattr,
-	.removexattr		= generic_removexattr,
 	.listxattr		= xfs_vn_listxattr,
 	.update_time		= xfs_vn_update_time,
 };
@@ -1179,9 +1167,6 @@ static const struct inode_operations xfs_inline_symlink_inode_operations = {
 	.get_link		= xfs_vn_get_link_inline,
 	.getattr		= xfs_vn_getattr,
 	.setattr		= xfs_vn_setattr,
-	.setxattr		= generic_setxattr,
-	.getxattr		= generic_getxattr,
-	.removexattr		= generic_removexattr,
 	.listxattr		= xfs_vn_listxattr,
 	.update_time		= xfs_vn_update_time,
 };
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 365e212..2241e41 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -1730,12 +1730,7 @@ struct inode_operations {
 			struct inode *, struct dentry *, unsigned int);
 	int (*setattr) (struct dentry *, struct iattr *);
 	int (*getattr) (struct vfsmount *mnt, struct dentry *, struct kstat *);
-	int (*setxattr) (struct dentry *, struct inode *,
-			 const char *, const void *, size_t, int);
-	ssize_t (*getxattr) (struct dentry *, struct inode *,
-			     const char *, void *, size_t);
 	ssize_t (*listxattr) (struct dentry *, char *, size_t);
-	int (*removexattr) (struct dentry *, const char *);
 	int (*fiemap)(struct inode *, struct fiemap_extent_info *, u64 start,
 		      u64 len);
 	int (*update_time)(struct inode *, struct timespec *, int);
diff --git a/include/linux/xattr.h b/include/linux/xattr.h
index 6ae6b2e..e77605a 100644
--- a/include/linux/xattr.h
+++ b/include/linux/xattr.h
@@ -55,11 +55,7 @@ int vfs_setxattr(struct dentry *, const char *, const void *, size_t, int);
 int __vfs_removexattr(struct dentry *, const char *);
 int vfs_removexattr(struct dentry *, const char *);
 
-ssize_t generic_getxattr(struct dentry *dentry, struct inode *inode, const char *name, void *buffer, size_t size);
 ssize_t generic_listxattr(struct dentry *dentry, char *buffer, size_t buffer_size);
-int generic_setxattr(struct dentry *dentry, struct inode *inode,
-		     const char *name, const void *value, size_t size, int flags);
-int generic_removexattr(struct dentry *dentry, const char *name);
 ssize_t vfs_getxattr_alloc(struct dentry *dentry, const char *name,
 			   char **xattr_value, size_t size, gfp_t flags);
 
diff --git a/mm/shmem.c b/mm/shmem.c
index a361449..d205891 100644
--- a/mm/shmem.c
+++ b/mm/shmem.c
@@ -2688,10 +2688,7 @@ static const struct inode_operations shmem_short_symlink_operations = {
 	.readlink	= generic_readlink,
 	.get_link	= simple_get_link,
 #ifdef CONFIG_TMPFS_XATTR
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= shmem_listxattr,
-	.removexattr	= generic_removexattr,
 #endif
 };
 
@@ -2699,10 +2696,7 @@ static const struct inode_operations shmem_symlink_inode_operations = {
 	.readlink	= generic_readlink,
 	.get_link	= shmem_get_link,
 #ifdef CONFIG_TMPFS_XATTR
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= shmem_listxattr,
-	.removexattr	= generic_removexattr,
 #endif
 };
 
@@ -3174,10 +3168,7 @@ static const struct inode_operations shmem_inode_operations = {
 	.getattr	= shmem_getattr,
 	.setattr	= shmem_setattr,
 #ifdef CONFIG_TMPFS_XATTR
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= shmem_listxattr,
-	.removexattr	= generic_removexattr,
 	.set_acl	= simple_set_acl,
 #endif
 };
@@ -3196,10 +3187,7 @@ static const struct inode_operations shmem_dir_inode_operations = {
 	.tmpfile	= shmem_tmpfile,
 #endif
 #ifdef CONFIG_TMPFS_XATTR
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= shmem_listxattr,
-	.removexattr	= generic_removexattr,
 #endif
 #ifdef CONFIG_TMPFS_POSIX_ACL
 	.setattr	= shmem_setattr,
@@ -3209,10 +3197,7 @@ static const struct inode_operations shmem_dir_inode_operations = {
 
 static const struct inode_operations shmem_special_inode_operations = {
 #ifdef CONFIG_TMPFS_XATTR
-	.setxattr	= generic_setxattr,
-	.getxattr	= generic_getxattr,
 	.listxattr	= shmem_listxattr,
-	.removexattr	= generic_removexattr,
 #endif
 #ifdef CONFIG_TMPFS_POSIX_ACL
 	.setattr	= shmem_setattr,
diff --git a/net/socket.c b/net/socket.c
index be5463f..af9a513 100644
--- a/net/socket.c
+++ b/net/socket.c
@@ -519,7 +519,6 @@ static ssize_t sockfs_listxattr(struct dentry *dentry, char *buffer,
 }
 
 static const struct inode_operations sockfs_inode_ops = {
-	.getxattr = generic_getxattr,
 	.listxattr = sockfs_listxattr,
 };
 
-- 
2.5.5

^ permalink raw reply related	[flat|nested] 27+ messages in thread

* Re: [PATCH v3 00/17] Xattr inode operation removal
  2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
                   ` (16 preceding siblings ...)
  2016-05-30  8:57 ` [PATCH v3 17/17] vfs: Remove " Andreas Gruenbacher
@ 2016-05-30  9:54 ` Sedat Dilek
  2016-05-30 10:49   ` Andreas Gruenbacher
  17 siblings, 1 reply; 27+ messages in thread
From: Sedat Dilek @ 2016-05-30  9:54 UTC (permalink / raw)
  To: Andreas Gruenbacher
  Cc: Alexander Viro, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel,
	linux-security-module, David Howells, Serge Hallyn,
	Dmitry Kasatkin, Paul Moore, Stephen Smalley, Eric Paris,
	Casey Schaufler, Oleg Drokin, Andreas Dilger

[-- Attachment #1: Type: text/plain, Size: 8270 bytes --]

On 5/30/16, Andreas Gruenbacher <agruenba@redhat.com> wrote:
> This is version 3 of the xattr inode operation removal patch series. The
> patches are available in git form at:
>
>
> https://git.kernel.org/cgit/linux/kernel/git/agruen/linux.git/log/?h=work.xattr
>
>
> Change since Version 2:
>
>  * Update on top of 4.7-rc1 (changes in setxattr and xattr_handler->set;
> commits
>    59301226 and 3767e255).
>
>  * Commit "evm: Turn evm_update_evmxattr into void function" dropped as it
>    doesn't matter here.
>
>
> The purpose of this series is to remove unnecessary differences between the
> xattr implementations on different filesystems and to simplify things.
> With
> the exception of redirectors like fuse, overlayfs, and ecryptfs, all
> filesystems perform some de-multiplexing based on the xattr name, so it
> makes
> sense to make that the default; filesystems that don't do any
> de-multiplexing
> can easily use a catch-all xattr handler.
>
> The patch series is structured as follows:
>
>  * The initial patches convert the remaining filesystems over to use xattr
>    handlers for implementing their de-multiplexing.
>
>  * Next, a new IOP_XATTR inode operations flag is introduced: the flag is
> set
>    when an inode supports xattrs.  On most filesystems, the IOP_XATTR flag
> is
>    automatically initialized correctly when the inode is allocated based on
>    whether or not the s_xattr field in the inode's superblock is defined.
>    Filesystems that support xattrs on some but not all inodes can clear the
>    IOP_XATTR flag appropriately.
>
>  * The IOP_XATTR flag is then used to get rid of the two remaining places
> where
>    xattr inode operations other than the generic ones are used: bad inodes
> and
>    libfs empty directories.
>
>  * After that, we get rid of the remaining direct accesses to xattr inode
>    operations.
>
>  * Finally, we stop calling the xattr inode operations and remove them.
>
> Note that these patches only remove the getxattr, setxattr, and removexattr
> inode operations. The listxattr inode operation does not do any attribute
> name
> de-multiplexing, and remains unchanged except for checking the new
> IOP_XATTR
> flag as well now.
>
> Note that this patch series still breaks Lustre.  I'm hoping that the
> Lustre
> developers will come up with a patch to switch lustre over to use xattr
> handlers.
>
> Thanks,
> Andreas
>
>
> Andreas Gruenbacher (17):
>   xattr: Remove unnecessary NULL attribute name check
>   jffs2: Remove jffs2_{get,set,remove}xattr macros
>   hfs: Switch to generic xattr handlers
>   kernfs: Switch to generic xattr handlers
>   sockfs: getxattr: Fail with -EOPNOTSUPP for invalid attribute names
>   sockfs: Get rid of getxattr iop
>   ecryptfs: Switch to generic xattr handlers
>   overlayfs: Switch to generic xattr handlers
>   fuse: Switch to generic xattr handlers
>   vfs: Move xattr_resolve_name to the front of fs/xattr.c
>   vfs: Add IOP_XATTR inode operations flag
>   vfs: Use IOP_XATTR flag for bad-inode handling
>   libfs: Use IOP_XATTR flag for empty directory handling
>   xattr: Add __vfs_{get,set,remove}xattr helpers
>   vfs: Check for the IOP_XATTR flag in listxattr
>   xattr: Stop calling {get,set,remove}xattr inode operations
>   vfs: Remove {get,set,remove}xattr inode operations
>
>  Documentation/filesystems/Locking     |  24 +++-
>  Documentation/filesystems/vfs.txt     |  45 ++++--
>  arch/ia64/kernel/perfmon.c            |   4 +-
>  drivers/gpu/drm/drm_drv.c             |   1 +
>  fs/9p/vfs_inode_dotl.c                |   9 --
>  fs/aio.c                              |   2 +-
>  fs/anon_inodes.c                      |   2 +-
>  fs/bad_inode.c                        |  21 +--
>  fs/block_dev.c                        |   2 +-
>  fs/btrfs/inode.c                      |  12 --
>  fs/btrfs/tests/btrfs-tests.c          |   2 +-
>  fs/cachefiles/bind.c                  |   4 +-
>  fs/cachefiles/namei.c                 |   4 +-
>  fs/ceph/dir.c                         |   3 -
>  fs/ceph/inode.c                       |   6 -
>  fs/cifs/cifsfs.c                      |   9 --
>  fs/ecryptfs/ecryptfs_kernel.h         |   2 +
>  fs/ecryptfs/inode.c                   |  67 ++++++---
>  fs/ecryptfs/main.c                    |   1 +
>  fs/ecryptfs/mmap.c                    |  13 +-
>  fs/ext2/file.c                        |   3 -
>  fs/ext2/namei.c                       |   6 -
>  fs/ext2/symlink.c                     |   6 -
>  fs/ext4/file.c                        |   3 -
>  fs/ext4/namei.c                       |   6 -
>  fs/ext4/symlink.c                     |   9 --
>  fs/f2fs/file.c                        |   3 -
>  fs/f2fs/namei.c                       |  12 --
>  fs/fuse/dir.c                         |  49 +++++--
>  fs/fuse/fuse_i.h                      |   2 +
>  fs/fuse/inode.c                       |   1 +
>  fs/gfs2/inode.c                       |   9 --
>  fs/hfs/attr.c                         |  83 +++++++----
>  fs/hfs/hfs_fs.h                       |   6 +-
>  fs/hfs/inode.c                        |   5 +-
>  fs/hfs/super.c                        |   1 +
>  fs/hfsplus/dir.c                      |   3 -
>  fs/hfsplus/inode.c                    |   3 -
>  fs/inode.c                            |   2 +
>  fs/jffs2/dir.c                        |   3 -
>  fs/jffs2/file.c                       |   3 -
>  fs/jffs2/symlink.c                    |   3 -
>  fs/jffs2/xattr.h                      |   6 -
>  fs/jfs/file.c                         |   3 -
>  fs/jfs/namei.c                        |   3 -
>  fs/jfs/symlink.c                      |   6 -
>  fs/kernfs/dir.c                       |   3 -
>  fs/kernfs/inode.c                     | 155 +++++++++++----------
>  fs/kernfs/kernfs-internal.h           |   7 +-
>  fs/kernfs/mount.c                     |   1 +
>  fs/kernfs/symlink.c                   |   3 -
>  fs/libfs.c                            |  25 +---
>  fs/nfs/nfs3proc.c                     |   6 -
>  fs/nfs/nfs4proc.c                     |   6 -
>  fs/nsfs.c                             |   2 +-
>  fs/ocfs2/file.c                       |   3 -
>  fs/ocfs2/namei.c                      |   3 -
>  fs/ocfs2/symlink.c                    |   3 -
>  fs/orangefs/inode.c                   |   3 -
>  fs/orangefs/namei.c                   |   3 -
>  fs/orangefs/symlink.c                 |   1 -
>  fs/overlayfs/copy_up.c                |   4 +-
>  fs/overlayfs/dir.c                    |   3 -
>  fs/overlayfs/inode.c                  |  48 +++++--
>  fs/overlayfs/overlayfs.h              |   7 +-
>  fs/overlayfs/super.c                  |   5 +-
>  fs/pipe.c                             |   2 +-
>  fs/reiserfs/file.c                    |   3 -
>  fs/reiserfs/namei.c                   |   9 --
>  fs/squashfs/inode.c                   |   1 -
>  fs/squashfs/namei.c                   |   1 -
>  fs/squashfs/symlink.c                 |   1 -
>  fs/squashfs/xattr.h                   |   1 -
>  fs/ubifs/dir.c                        |   3 -
>  fs/ubifs/file.c                       |   6 -
>  fs/xattr.c                            | 250
> ++++++++++++++++------------------
>  fs/xfs/xfs_iops.c                     |  15 --
>  include/linux/fs.h                    |   7 +-
>  include/linux/xattr.h                 |   7 +-
>  mm/shmem.c                            |  15 --
>  net/socket.c                          |  59 ++++----
>  security/commoncap.c                  |  25 ++--
>  security/integrity/evm/evm_crypto.c   |   7 +-
>  security/integrity/evm/evm_main.c     |   4 +-
>  security/integrity/ima/ima_appraise.c |  21 ++-
>  security/selinux/hooks.c              |  19 +--
>  security/smack/smack_lsm.c            |  12 +-
>  87 files changed, 538 insertions(+), 693 deletions(-)
>

Hi,

I pulled in agruen/linux.git#work.xattr on top of Linux v4.7-rc1 and noticed...

 92 files changed, 563 insertions(+), 703 deletions(-)

So this is on top of Linux v4.7-rc1+?

I am here on Ubuntu/precise AMD64 realized as a WUBI-installation.
So I use fuse, loop-device and ext4-fs.

Not sure, how to test your patchset.
Can you give some instructions on a testcase/usecase?

Booting into a kernel with your patchset looks fine to me - on the 1st sight.

Hope this is helpful.

Regards,
- Sedat -

[-- Attachment #2: dmesg_4.7.0-rc1-2-iniza-small.txt --]
[-- Type: text/plain, Size: 62388 bytes --]

[    0.000000] Linux version 4.7.0-rc1-2-iniza-small (sedat.dilek@gmail.com@fambox) (gcc version 4.9.2 (Ubuntu 4.9.2-0ubuntu1~12.04) ) #1 SMP Mon May 30 11:36:11 CEST 2016
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-rc1-2-iniza-small root=UUID=001AADA61AAD9964 loop=/ubuntu/disks/root.disk ro intel_pstate=disable
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] Disabled fast string operations
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] x86/fpu: Using 'eager' FPU context switches.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040200000-0x00000000d9c9efff] usable
[    0.000000] BIOS-e820: [mem 0x00000000d9c9f000-0x00000000dae7efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000dae7f000-0x00000000daf9efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000daf9f000-0x00000000daffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000dafff000-0x00000000daffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000db000000-0x00000000df9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011fdfffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.6 present.
[    0.000000] DMI: SAMSUNG ELECTRONICS CO., LTD. 530U3BI/530U4BI/530U4BH/530U3BI/530U4BI/530U4BH, BIOS 13XK 03/28/2013
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x11fe00 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 080000000 mask FC0000000 write-back
[    0.000000]   2 base 0C0000000 mask FE0000000 write-back
[    0.000000]   3 base 0DC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0DB000000 mask FFF000000 uncachable
[    0.000000]   5 base 100000000 mask FE0000000 write-back
[    0.000000]   6 base 11FE00000 mask FFFE00000 uncachable
[    0.000000]   7 base 0FFC00000 mask FFFC00000 write-protect
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xdb000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000f00e0-0x000f00ef] mapped at [ffff8800000f00e0]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
[    0.000000] reserving inaccessible SNB gfx pages
[    0.000000] BRK [0x02ea3000, 0x02ea3fff] PGTABLE
[    0.000000] BRK [0x02ea4000, 0x02ea4fff] PGTABLE
[    0.000000] BRK [0x02ea5000, 0x02ea5fff] PGTABLE
[    0.000000] BRK [0x02ea6000, 0x02ea6fff] PGTABLE
[    0.000000] BRK [0x02ea7000, 0x02ea7fff] PGTABLE
[    0.000000] BRK [0x02ea8000, 0x02ea8fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x378f4000-0x37c71fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F0100 000024 (v02 SECCSD)
[    0.000000] ACPI: XSDT 0x00000000DAFFE170 00008C (v01 SECCSD LH43STAR 00000002 PTEC 00000002)
[    0.000000] ACPI: FACP 0x00000000DAFEF000 00010C (v05 SECCSD LH43STAR 00000002 PTL  00000002)
[    0.000000] ACPI: DSDT 0x00000000DAFF2000 0083AC (v02 SECCSD SNB-CPT  00000000 INTL 20061109)
[    0.000000] ACPI: FACS 0x00000000DAF47000 000040
[    0.000000] ACPI: SLIC 0x00000000DAFFD000 000176 (v01 SECCSD LH43STAR 00000002 PTEC 00000001)
[    0.000000] ACPI: SSDT 0x00000000DAFFB000 001068 (v01 SECCSD PtidDevc 00001000 INTL 20061109)
[    0.000000] ACPI: ASF! 0x00000000DAFF1000 0000A5 (v32 SECCSD LH43STAR 00000002 PTL  00000002)
[    0.000000] ACPI: HPET 0x00000000DAFEE000 000038 (v01 SECCSD LH43STAR 00000002 PTL  00000002)
[    0.000000] ACPI: APIC 0x00000000DAFED000 000098 (v03 SECCSD LH43STAR 00000002 PTL  00000002)
[    0.000000] ACPI: MCFG 0x00000000DAFEC000 00003C (v01 SECCSD LH43STAR 00000002 PTL  00000002)
[    0.000000] ACPI: SSDT 0x00000000DAFEB000 000804 (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
[    0.000000] ACPI: SSDT 0x00000000DAFEA000 000996 (v01 PmRef  CpuPm    00003000 INTL 20061109)
[    0.000000] ACPI: UEFI 0x00000000DAFE9000 00003E (v01 SECCSD LH43STAR 00000002 PTL  00000002)
[    0.000000] ACPI: UEFI 0x00000000DAFE8000 000042 (v01 PTL    COMBUF   00000001 PTL  00000001)
[    0.000000] ACPI: UEFI 0x00000000DAFE7000 00026A (v01 SECCSD LH43STAR 00000002 PTL  00000002)
[    0.000000] ACPI: SSDT 0x00000000DAFE6000 0000D0 (v01 Iffs   IffsAsl  00003000 INTL 20061109)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000011fdfffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x11fdf8000-0x11fdfcfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000011fdfffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009cfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020200000-0x000000003fffffff]
[    0.000000]   node   0: [mem 0x0000000040200000-0x00000000d9c9efff]
[    0.000000]   node   0: [mem 0x00000000dafff000-0x00000000daffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000011fdfffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000011fdfffff]
[    0.000000] On node 0 totalpages: 1021500
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 156 pages reserved
[    0.000000]   DMA zone: 3996 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 13859 pages used for memmap
[    0.000000]   DMA32 zone: 886944 pages, LIFO batch:31
[    0.000000]   Normal zone: 2040 pages used for memmap
[    0.000000]   Normal zone: 130560 pages, LIFO batch:31
[    0.000000] Reserving Intel graphics stolen memory at 0xdba00000-0xdf9fffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 14, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x40000000-0x401fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xd9c9f000-0xdae7efff]
[    0.000000] PM: Registered nosave memory: [mem 0xdae7f000-0xdaf9efff]
[    0.000000] PM: Registered nosave memory: [mem 0xdaf9f000-0xdaffefff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb000000-0xdf9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xdfa00000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffd7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
[    0.000000] e820: [mem 0xdfa00000-0xf7ffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] percpu: Embedded 36 pages/cpu @ffff88011fa00000 s106632 r8192 d32632 u262144
[    0.000000] pcpu-alloc: s106632 r8192 d32632 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1005381
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.7.0-rc1-2-iniza-small root=UUID=001AADA61AAD9964 loop=/ubuntu/disks/root.disk ro intel_pstate=disable
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3916804K/4086000K available (8381K kernel code, 1436K rwdata, 3336K rodata, 1476K init, 14080K bss, 169196K reserved, 0K cma-reserved)
[    0.000000] Running RCU self tests
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU lockdep checking is enabled.
[    0.000000] 	Build-time adjustment of leaf fanout to 64.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=8
[    0.000000] NR_IRQS:16640 nr_irqs:488 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[    0.000000] ... MAX_LOCKDEP_SUBCLASSES:  8
[    0.000000] ... MAX_LOCK_DEPTH:          48
[    0.000000] ... MAX_LOCKDEP_KEYS:        8191
[    0.000000] ... CLASSHASH_SIZE:          4096
[    0.000000] ... MAX_LOCKDEP_ENTRIES:     32768
[    0.000000] ... MAX_LOCKDEP_CHAINS:      65536
[    0.000000] ... CHAINHASH_SIZE:          32768
[    0.000000]  memory used by lock dependency info: 8159 kB
[    0.000000]  per task-struct memory footprint: 1920 bytes
[    0.000000] ------------------------
[    0.000000] | Locking API testsuite:
[    0.000000] ----------------------------------------------------------------------------
[    0.000000]                                  | spin |wlock |rlock |mutex | wsem | rsem |
[    0.000000]   --------------------------------------------------------------------------
[    0.000000]                      A-A deadlock:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]                  A-B-B-A deadlock:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]              A-B-B-C-C-A deadlock:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]              A-B-C-A-B-C deadlock:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]          A-B-B-C-C-D-D-A deadlock:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]          A-B-C-D-B-D-D-A deadlock:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]          A-B-C-D-B-C-D-A deadlock:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]                     double unlock:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]                   initialize held:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]                  bad unlock order:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]   --------------------------------------------------------------------------
[    0.000000]               recursive read-lock:             |  ok  |             |  ok  |
[    0.000000]            recursive read-lock #2:             |  ok  |             |  ok  |
[    0.000000]             mixed read-write-lock:             |  ok  |             |  ok  |
[    0.000000]             mixed write-read-lock:             |  ok  |             |  ok  |
[    0.000000]   --------------------------------------------------------------------------
[    0.000000]      hard-irqs-on + irq-safe-A/12:  ok  |  ok  |  ok  |
[    0.000000]      soft-irqs-on + irq-safe-A/12:  ok  |  ok  |  ok  |
[    0.000000]      hard-irqs-on + irq-safe-A/21:  ok  |  ok  |  ok  |
[    0.000000]      soft-irqs-on + irq-safe-A/21:  ok  |  ok  |  ok  |
[    0.000000]        sirq-safe-A => hirqs-on/12:  ok  |  ok  |  ok  |
[    0.000000]        sirq-safe-A => hirqs-on/21:  ok  |  ok  |  ok  |
[    0.000000]          hard-safe-A + irqs-on/12:  ok  |  ok  |  ok  |
[    0.000000]          soft-safe-A + irqs-on/12:  ok  |  ok  |  ok  |
[    0.000000]          hard-safe-A + irqs-on/21:  ok  |  ok  |  ok  |
[    0.000000]          soft-safe-A + irqs-on/21:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #1/123:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #1/123:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #1/132:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #1/132:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #1/213:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #1/213:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #1/231:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #1/231:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #1/312:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #1/312:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #1/321:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #1/321:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #2/123:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #2/123:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #2/132:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #2/132:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #2/213:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #2/213:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #2/231:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #2/231:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #2/312:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #2/312:  ok  |  ok  |  ok  |
[    0.000000]     hard-safe-A + unsafe-B #2/321:  ok  |  ok  |  ok  |
[    0.000000]     soft-safe-A + unsafe-B #2/321:  ok  |  ok  |  ok  |
[    0.000000]       hard-irq lock-inversion/123:  ok  |  ok  |  ok  |
[    0.000000]       soft-irq lock-inversion/123:  ok  |  ok  |  ok  |
[    0.000000]       hard-irq lock-inversion/132:  ok  |  ok  |  ok  |
[    0.000000]       soft-irq lock-inversion/132:  ok  |  ok  |  ok  |
[    0.000000]       hard-irq lock-inversion/213:  ok  |  ok  |  ok  |
[    0.000000]       soft-irq lock-inversion/213:  ok  |  ok  |  ok  |
[    0.000000]       hard-irq lock-inversion/231:  ok  |  ok  |  ok  |
[    0.000000]       soft-irq lock-inversion/231:  ok  |  ok  |  ok  |
[    0.000000]       hard-irq lock-inversion/312:  ok  |  ok  |  ok  |
[    0.000000]       soft-irq lock-inversion/312:  ok  |  ok  |  ok  |
[    0.000000]       hard-irq lock-inversion/321:  ok  |  ok  |  ok  |
[    0.000000]       soft-irq lock-inversion/321:  ok  |  ok  |  ok  |
[    0.000000]       hard-irq read-recursion/123:  ok  |
[    0.000000]       soft-irq read-recursion/123:  ok  |
[    0.000000]       hard-irq read-recursion/132:  ok  |
[    0.000000]       soft-irq read-recursion/132:  ok  |
[    0.000000]       hard-irq read-recursion/213:  ok  |
[    0.000000]       soft-irq read-recursion/213:  ok  |
[    0.000000]       hard-irq read-recursion/231:  ok  |
[    0.000000]       soft-irq read-recursion/231:  ok  |
[    0.000000]       hard-irq read-recursion/312:  ok  |
[    0.000000]       soft-irq read-recursion/312:  ok  |
[    0.000000]       hard-irq read-recursion/321:  ok  |
[    0.000000]       soft-irq read-recursion/321:  ok  |
[    0.000000]   --------------------------------------------------------------------------
[    0.000000]   | Wound/wait tests |
[    0.000000]   ---------------------
[    0.000000]                   ww api failures:  ok  |  ok  |  ok  |
[    0.000000]                ww contexts mixing:  ok  |  ok  |
[    0.000000]              finishing ww context:  ok  |  ok  |  ok  |  ok  |
[    0.000000]                locking mismatches:  ok  |  ok  |  ok  |
[    0.000000]                  EDEADLK handling:  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |  ok  |
[    0.000000]            spinlock nest unlocked:  ok  |
[    0.000000]   -----------------------------------------------------
[    0.000000]                                  |block | try  |context|
[    0.000000]   -----------------------------------------------------
[    0.000000]                           context:  ok  |  ok  |  ok  |
[    0.000000]                               try:  ok  |  ok  |  ok  |
[    0.000000]                             block:  ok  |  ok  |  ok  |
[    0.000000]                          spinlock:  ok  |  ok  |  ok  |
[    0.000000] -------------------------------------------------------
[    0.000000] Good, all 253 testcases passed! |
[    0.000000] ---------------------------------
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1596.489 MHz processor
[    0.000083] Calibrating delay loop (skipped), value calculated using timer frequency.. 3192.97 BogoMIPS (lpj=6385956)
[    0.000096] pid_max: default: 32768 minimum: 301
[    0.000137] ACPI: Core revision 20160422
[    0.000423] Security Framework initialized
[    0.000430] Yama: becoming mindful.
[    0.000464] AppArmor: AppArmor initialized
[    0.000905] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.001989] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.002466] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.002482] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.003831] Disabled fast string operations
[    0.003841] CPU: Physical Processor ID: 0
[    0.003846] CPU: Processor Core ID: 0
[    0.003856] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.003862] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.003871] mce: CPU supports 7 MCE banks
[    0.003903] CPU0: Thermal monitoring enabled (TM1)
[    0.003927] process: using mwait in idle threads
[    0.003936] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.003942] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.004632] Freeing SMP alternatives memory: 28K (ffffffff820da000 - ffffffff820e1000)
[    0.018100] ftrace: allocating 30306 entries in 119 pages
[    0.035301] smpboot: Max logical packages: 4
[    0.035312] smpboot: APIC(0) Converting physical 0 to logical package 0
[    0.035400] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.036042] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.075738] TSC deadline timer enabled
[    0.075744] smpboot: CPU0: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz (family: 0x6, model: 0x2a, stepping: 0x7)
[    0.075760] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, full-width counters, Intel PMU driver.
[    0.075805] ... version:                3
[    0.075811] ... bit width:              48
[    0.075816] ... generic registers:      4
[    0.075821] ... value mask:             0000ffffffffffff
[    0.075827] ... max period:             0000ffffffffffff
[    0.075833] ... fixed-purpose events:   3
[    0.075838] ... event mask:             000000070000000f
[    0.077487] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.078382] x86: Booting SMP configuration:
[    0.078389] .... node  #0, CPUs:      #1
[    0.078731] Disabled fast string operations
[    0.158819]  #2<6>[    0.159129] Disabled fast string operations
[    0.239161]  #3
[    0.239161] Disabled fast string operations
[    0.318405] x86: Booted up 1 node, 4 CPUs
[    0.318423] smpboot: Total of 4 processors activated (12787.30 BogoMIPS)
[    0.335006] devtmpfs: initialized
[    0.335355] x86/mm: Memory block size: 128MB
[    0.342291] evm: security.selinux
[    0.342298] evm: security.SMACK64
[    0.342303] evm: security.capability
[    0.354506] PM: Registering ACPI NVS region [mem 0xdae7f000-0xdaf9efff] (1179648 bytes)
[    0.354899] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.382816] NET: Registered protocol family 16
[    0.394405] cpuidle: using governor ladder
[    0.406436] cpuidle: using governor menu
[    0.406580] ACPI: bus type PCI registered
[    0.406888] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.406900] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.406915] PCI: Using configuration type 1 for base access
[    0.406966] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.426932] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.466927] ACPI: Added _OSI(Module Device)
[    0.466936] ACPI: Added _OSI(Processor Device)
[    0.466942] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.466949] ACPI: Added _OSI(Processor Aggregator Device)
[    0.484655] ACPI: Executed 1 blocks of module-level executable AML code
[    0.494795] ACPI: 5 ACPI AML tables successfully acquired and loaded
[    0.494804] 
[    0.515104] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.517238] ACPI: Dynamic OEM Table Load:
[    0.517269] ACPI: SSDT 0xFFFF8800D58F2000 000688 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
[    0.520330] ACPI: Dynamic OEM Table Load:
[    0.520359] ACPI: SSDT 0xFFFF8800D58F7400 000303 (v01 PmRef  ApIst    00003000 INTL 20061109)
[    0.523192] ACPI: Dynamic OEM Table Load:
[    0.523220] ACPI: SSDT 0xFFFF8800D5838000 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
[    0.527791] ACPI: Interpreter enabled
[    0.527867] ACPI: (supports S0 S1 S3 S4 S5)
[    0.527873] ACPI: Using IOAPIC for interrupt routing
[    0.527962] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.556872] ACPI: Power Resource [FN00] (off)
[    0.557403] ACPI: Power Resource [FN01] (off)
[    0.557826] ACPI: Power Resource [FN02] (off)
[    0.558248] ACPI: Power Resource [FN03] (off)
[    0.558670] ACPI: Power Resource [FN04] (off)
[    0.561784] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.561798] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.562605] \_SB_.PCI0 (33DB4D5B-1FF7-401C-9657-7441C03DD766): _OSC invalid UUID
[    0.562607] _OSC request data: 1 1f 0
[    0.562615] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.563745] PCI host bridge to bus 0000:00
[    0.563754] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.563761] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.563769] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.563779] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff window]
[    0.563789] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.563799] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.563888] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
[    0.564366] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
[    0.564388] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit]
[    0.564402] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.564411] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.564937] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.564979] pci 0000:00:16.0: reg 0x10: [mem 0xf0705000-0xf070500f 64bit]
[    0.565137] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.565543] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[    0.565578] pci 0000:00:1a.0: reg 0x10: [mem 0xf070a000-0xf070a3ff]
[    0.565757] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.566041] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.566239] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.566277] pci 0000:00:1b.0: reg 0x10: [mem 0xf0700000-0xf0703fff 64bit]
[    0.566462] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.566678] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.566889] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.567064] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.567278] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.567474] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
[    0.567648] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.567859] pci 0000:00:1c.3: System wakeup disabled by ACPI
[    0.568049] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.568229] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.568439] pci 0000:00:1c.4: System wakeup disabled by ACPI
[    0.568638] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[    0.568673] pci 0000:00:1d.0: reg 0x10: [mem 0xf0709000-0xf07093ff]
[    0.568852] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.569099] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.569292] pci 0000:00:1f.0: [8086:1c49] type 00 class 0x060100
[    0.569820] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
[    0.569857] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
[    0.569875] pci 0000:00:1f.2: reg 0x14: [io  0x3094-0x3097]
[    0.569893] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
[    0.569911] pci 0000:00:1f.2: reg 0x1c: [io  0x3090-0x3093]
[    0.569930] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
[    0.569948] pci 0000:00:1f.2: reg 0x24: [mem 0xf0708000-0xf07087ff]
[    0.570059] pci 0000:00:1f.2: PME# supported from D3hot
[    0.570424] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.570458] pci 0000:00:1f.3: reg 0x10: [mem 0xf0704000-0xf07040ff 64bit]
[    0.570508] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.571293] pci 0000:01:00.0: [8086:0091] type 00 class 0x028000
[    0.571700] pci 0000:01:00.0: reg 0x10: [mem 0xf0600000-0xf0601fff 64bit]
[    0.573535] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.573984] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.579034] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.579051] pci 0000:00:1c.0:   bridge window [mem 0xf0600000-0xf06fffff]
[    0.579281] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[    0.579376] pci 0000:02:00.0: reg 0x10: [io  0x2000-0x20ff]
[    0.579517] pci 0000:02:00.0: reg 0x18: [mem 0xf0404000-0xf0404fff 64bit pref]
[    0.579604] pci 0000:02:00.0: reg 0x20: [mem 0xf0400000-0xf0403fff 64bit pref]
[    0.580076] pci 0000:02:00.0: supports D1 D2
[    0.580079] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.580290] pci 0000:02:00.0: System wakeup disabled by ACPI
[    0.586960] pci 0000:00:1c.3: PCI bridge to [bus 02]
[    0.586972] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
[    0.586988] pci 0000:00:1c.3:   bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
[    0.587191] pci 0000:03:00.0: [1b21:1042] type 00 class 0x0c0330
[    0.587242] pci 0000:03:00.0: reg 0x10: [mem 0xf0500000-0xf0507fff 64bit]
[    0.587529] pci 0000:03:00.0: PME# supported from D3hot D3cold
[    0.587635] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.587884] pci 0000:00:1c.4: PCI bridge to [bus 03]
[    0.587900] pci 0000:00:1c.4:   bridge window [mem 0xf0500000-0xf05fffff]
[    0.590981] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.591216] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.591451] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.591681] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.591909] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[    0.592141] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.592374] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.592602] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 11 12 14 15) *9
[    0.593980] ACPI: Enabled 4 GPEs in block 00 to 3F
[    0.594202] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.594221] ACPI : EC: EC started
[    0.631779] ACPI : EC: 0 stale EC events cleared
[    0.632540] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.632549] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.632566] vgaarb: loaded
[    0.632572] vgaarb: bridge control possible 0000:00:02.0
[    0.633224] SCSI subsystem initialized
[    0.633400] libata version 3.00 loaded.
[    0.633497] ACPI: bus type USB registered
[    0.633579] usbcore: registered new interface driver usbfs
[    0.633630] usbcore: registered new interface driver hub
[    0.633717] usbcore: registered new device driver usb
[    0.634158] PCI: Using ACPI for IRQ routing
[    0.637890] PCI: pci_cache_line_size set to 64 bytes
[    0.638025] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[    0.638034] e820: reserve RAM buffer [mem 0xd9c9f000-0xdbffffff]
[    0.638037] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
[    0.638040] e820: reserve RAM buffer [mem 0x11fe00000-0x11fffffff]
[    0.638837] NetLabel: Initializing
[    0.638844] NetLabel:  domain hash size = 128
[    0.638849] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.638910] NetLabel:  unlabeled traffic allowed by default
[    0.639253] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.639270] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.641358] clocksource: Switched to clocksource hpet
[    0.697577] VFS: Disk quotas dquot_6.6.0
[    0.709434] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.721860] AppArmor: AppArmor Filesystem Enabled
[    0.722109] pnp: PnP ACPI init
[    0.722846] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.722857] system 00:00: [io  0x1000-0x100f] has been reserved
[    0.722866] system 00:00: [io  0x5000-0x5003] has been reserved
[    0.722874] system 00:00: [io  0xffff] has been reserved
[    0.722883] system 00:00: [io  0x0400-0x0453] could not be reserved
[    0.722891] system 00:00: [io  0x0458-0x047f] has been reserved
[    0.722900] system 00:00: [io  0x0500-0x057f] has been reserved
[    0.722908] system 00:00: [io  0x0a00-0x0a0f] has been reserved
[    0.722916] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.722925] system 00:00: [io  0x5000-0x500f] could not be reserved
[    0.722966] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.723075] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.723278] system 00:02: [io  0x0454-0x0457] has been reserved
[    0.723292] system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.723413] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.723570] pnp 00:04: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
[    0.724132] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.724142] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.724151] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.724159] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.724168] system 00:05: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.724177] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.724185] system 00:05: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.724194] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.724203] system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
[    0.724212] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.724225] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.725281] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.725376] pnp: PnP ACPI: found 7 devices
[    0.737314] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.737394] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.737409] pci 0000:00:1c.0:   bridge window [mem 0xf0600000-0xf06fffff]
[    0.737429] pci 0000:00:1c.3: PCI bridge to [bus 02]
[    0.737438] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
[    0.737456] pci 0000:00:1c.3:   bridge window [mem 0xf0400000-0xf04fffff 64bit pref]
[    0.737475] pci 0000:00:1c.4: PCI bridge to [bus 03]
[    0.737488] pci 0000:00:1c.4:   bridge window [mem 0xf0500000-0xf05fffff]
[    0.737510] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.737512] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.737515] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.737517] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfeafffff window]
[    0.737519] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff window]
[    0.737521] pci_bus 0000:01: resource 1 [mem 0xf0600000-0xf06fffff]
[    0.737524] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.737526] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf04fffff 64bit pref]
[    0.737529] pci_bus 0000:03: resource 1 [mem 0xf0500000-0xf05fffff]
[    0.797404] NET: Registered protocol family 2
[    0.797985] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.798236] TCP bind hash table entries: 32768 (order: 9, 2097152 bytes)
[    0.800615] TCP: Hash tables configured (established 32768 bind 32768)
[    0.800742] UDP hash table entries: 2048 (order: 6, 327680 bytes)
[    0.801085] UDP-Lite hash table entries: 2048 (order: 6, 327680 bytes)
[    0.837388] NET: Registered protocol family 1
[    0.837459] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.839556] PCI: CLS 64 bytes, default 64
[    0.839882] Trying to unpack rootfs image as initramfs...
[    0.925123] Freeing initrd memory: 3576K (ffff8800378f4000 - ffff880037c72000)
[    0.925139] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.925147] software IO TLB [mem 0xd5c9f000-0xd9c9f000] (64MB) mapped at [ffff8800d5c9f000-ffff8800d9c9efff]
[    0.925233] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[    0.925243] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[    0.925249] RAPL PMU: hw unit of domain package 2^-16 Joules
[    0.925255] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[    0.925719] Scanning for low memory corruption every 60 seconds
[    0.946309] futex hash table entries: 2048 (order: 6, 262144 bytes)
[    0.957390] audit: initializing netlink subsys (disabled)
[    0.957502] audit: type=2000 audit(1464608746.944:1): initialized
[    0.959087] Initialise system trusted keyrings
[    0.959535] workingset: timestamp_bits=38 max_order=20 bucket_order=0
[    1.197498] fuse init (API version 7.24)
[    1.223567] Key type asymmetric registered
[    1.223590] Asymmetric key parser 'x509' registered
[    1.233449] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[    1.233607] io scheduler noop registered
[    1.233616] io scheduler deadline registered (default)
[    1.261389] io scheduler cfq registered
[    1.261411] start plist test
[    1.263805] end plist test
[    1.265182] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.265209] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.265468] intel_idle: MWAIT substates: 0x21120
[    1.265471] intel_idle: v0.4.1 model 0x2A
[    1.266534] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.267014] ACPI: AC Adapter [ADP1] (on-line)
[    1.267312] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    1.267375] ACPI: Lid Switch [LID0]
[    1.267558] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    1.267610] ACPI: Power Button [PWRB]
[    1.267794] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    1.267807] ACPI: Power Button [PWRF]
[    1.272207] thermal LNXTHERM:00: registered as thermal_zone0
[    1.272217] ACPI: Thermal Zone [TZ00] (66 C)
[    1.273227] thermal LNXTHERM:01: registered as thermal_zone1
[    1.273235] ACPI: Thermal Zone [TZ01] (30 C)
[    1.273404] GHES: HEST is not enabled!
[    1.273837] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.285635] ACPI: Battery Slot [BAT1] (battery present)
[    1.286769] Linux agpgart interface v0.103
[    1.299387] brd: module loaded
[    1.305863] loop: module loaded
[    1.311922] ahci 0000:00:1f.2: version 3.0
[    1.312516] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    1.322776] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1b impl SATA mode
[    1.322791] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pio slum part ems sxs apst 
[    1.348332] scsi host0: ahci
[    1.349016] scsi host1: ahci
[    1.349525] scsi host2: ahci
[    1.349996] scsi host3: ahci
[    1.350415] scsi host4: ahci
[    1.350817] scsi host5: ahci
[    1.351058] ata1: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708100 irq 25
[    1.351070] ata2: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708180 irq 25
[    1.351079] ata3: DUMMY
[    1.351085] ata4: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708280 irq 25
[    1.351095] ata5: SATA max UDMA/133 abar m2048@0xf0708000 port 0xf0708300 irq 25
[    1.351104] ata6: DUMMY
[    1.352894] libphy: Fixed MDIO Bus: probed
[    1.353362] tun: Universal TUN/TAP device driver, 1.6
[    1.353369] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.353613] PPP generic driver version 2.4.2
[    1.353774] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.353781] ehci-pci: EHCI PCI platform driver
[    1.354316] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    1.354520] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    1.354611] ehci-pci 0000:00:1a.0: debug port 2
[    1.358582] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    1.358655] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf070a000
[    1.369341] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    1.369716] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.369724] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.369734] usb usb1: Product: EHCI Host Controller
[    1.369740] usb usb1: Manufacturer: Linux 4.7.0-rc1-2-iniza-small ehci_hcd
[    1.369747] usb usb1: SerialNumber: 0000:00:1a.0
[    1.370791] hub 1-0:1.0: USB hub found
[    1.370851] hub 1-0:1.0: 2 ports detected
[    1.372428] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    1.372455] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    1.372485] ehci-pci 0000:00:1d.0: debug port 2
[    1.376403] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    1.376443] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf0709000
[    1.385330] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.385494] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    1.385502] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.385511] usb usb2: Product: EHCI Host Controller
[    1.385517] usb usb2: Manufacturer: Linux 4.7.0-rc1-2-iniza-small ehci_hcd
[    1.385524] usb usb2: SerialNumber: 0000:00:1d.0
[    1.386117] hub 2-0:1.0: USB hub found
[    1.386150] hub 2-0:1.0: 2 ports detected
[    1.386695] ehci-platform: EHCI generic platform driver
[    1.386747] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.386764] ohci-pci: OHCI PCI platform driver
[    1.386808] ohci-platform: OHCI generic platform driver
[    1.386841] uhci_hcd: USB Universal Host Controller Interface driver
[    1.387105] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    1.387138] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 3
[    1.391625] xhci_hcd 0000:03:00.0: hcc params 0x0200f180 hci version 0x96 quirks 0x00080000
[    1.392211] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    1.392219] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.392228] usb usb3: Product: xHCI Host Controller
[    1.392234] usb usb3: Manufacturer: Linux 4.7.0-rc1-2-iniza-small xhci-hcd
[    1.392241] usb usb3: SerialNumber: 0000:03:00.0
[    1.392813] hub 3-0:1.0: USB hub found
[    1.392892] hub 3-0:1.0: 2 ports detected
[    1.393413] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    1.393434] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 4
[    1.393541] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.393656] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    1.393664] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.393673] usb usb4: Product: xHCI Host Controller
[    1.393679] usb usb4: Manufacturer: Linux 4.7.0-rc1-2-iniza-small xhci-hcd
[    1.393686] usb usb4: SerialNumber: 0000:03:00.0
[    1.394320] hub 4-0:1.0: USB hub found
[    1.394375] hub 4-0:1.0: 2 ports detected
[    1.395080] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:EPAD] at 0x60,0x64 irq 1,12
[    1.401187] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.401244] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.402133] mousedev: PS/2 mouse device common for all mice
[    1.403452] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    1.403501] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    1.409916] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    1.429445] device-mapper: uevent: version 1.0.3
[    1.441709] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
[    1.441765] ledtrig-cpu: registered to indicate activity on CPUs
[    1.517486] NET: Registered protocol family 10
[    1.530163] NET: Registered protocol family 17
[    1.530194] Key type dns_resolver registered
[    1.531130] microcode: CPU0 sig=0x206a7, pf=0x10, revision=0x28
[    1.531159] microcode: CPU1 sig=0x206a7, pf=0x10, revision=0x28
[    1.531211] microcode: CPU2 sig=0x206a7, pf=0x10, revision=0x28
[    1.531263] microcode: CPU3 sig=0x206a7, pf=0x10, revision=0x28
[    1.531518] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    1.532398] registered taskstats version 1
[    1.532408] Loading compiled-in X.509 certificates
[    1.539465] Loaded X.509 cert 'Build time autogenerated kernel key: d861534734a1854c045ffb7a95ace7fffd94d654'
[    1.544282] Key type trusted registered
[    1.552307] Key type encrypted registered
[    1.552320] AppArmor: AppArmor sha1 policy hashing enabled
[    1.552327] evm: HMAC attrs: 0x1
[    1.553413] rtc_cmos 00:01: setting system clock to 2016-05-30 11:45:48 UTC (1464608748)
[    1.553605] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.553614] EDD information not available.
[    1.661873] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.663333] ata1.00: ATA-8: Hitachi HTS545050A7E380, GG2OA6C0, max UDMA/133
[    1.663343] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.681455] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    1.696536] ata1.00: configured for UDMA/133
[    1.697306] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    1.697703] scsi 0:0:0:0: Direct-Access     ATA      Hitachi HTS54505 A6C0 PQ: 0 ANSI: 5
[    1.722516] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    1.722531] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    1.722772] sd 0:0:0:0: [sda] Write Protect is off
[    1.722783] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.722876] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.722956] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    1.767064]  sda: sda1 sda2 sda3
[    1.768671] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.813676] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    1.813685] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.814467] hub 1-1:1.0: USB hub found
[    1.814550] hub 1-1:1.0: 6 ports detected
[    1.829675] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    1.829683] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.830174] hub 2-1:1.0: USB hub found
[    1.830297] hub 2-1:1.0: 6 ports detected
[    1.925521] tsc: Refined TSC clocksource calibration: 1596.373 MHz
[    1.925536] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1702c2a0637, max_idle_ns: 440795222505 ns
[    2.031747] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.032352] ata2.00: ATA-8: SanDisk iSSD P4 16GB, SSD 9.14, max UDMA/133
[    2.032359] ata2.00: 31277232 sectors, multi 1: LBA48 
[    2.032860] ata2.00: configured for UDMA/133
[    2.033372] scsi 1:0:0:0: Direct-Access     ATA      SanDisk iSSD P4  9.14 PQ: 0 ANSI: 5
[    2.058028] sd 1:0:0:0: [sdb] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[    2.058153] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    2.058534] sd 1:0:0:0: [sdb] Write Protect is off
[    2.058545] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    2.058693] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.059886]  sdb: sdb1 sdb2
[    2.060952] sd 1:0:0:0: [sdb] Attached SCSI disk
[    2.085418] usb 1-1.4: new high-speed USB device number 3 using ehci-pci
[    2.101444] usb 2-1.4: new low-speed USB device number 3 using ehci-pci
[    2.199911] usb 2-1.4: New USB device found, idVendor=046d, idProduct=c00e
[    2.199941] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.199950] usb 2-1.4: Product: USB-PS/2 Optical Mouse
[    2.199955] usb 2-1.4: Manufacturer: Logitech
[    2.273396] usb 2-1.5: new full-speed USB device number 4 using ehci-pci
[    2.338161] usb 1-1.4: New USB device found, idVendor=2232, idProduct=1018
[    2.338173] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.338182] usb 1-1.4: Product: WebCam SC-13HDL11431N
[    2.338188] usb 1-1.4: Manufacturer: 123
[    2.370049] ata4: SATA link down (SStatus 0 SControl 300)
[    2.370563] usb 2-1.5: New USB device found, idVendor=8086, idProduct=0189
[    2.370573] usb 2-1.5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.682316] ata5: SATA link down (SStatus 0 SControl 300)
[    2.684000] Freeing unused kernel memory: 1476K (ffffffff81f69000 - ffffffff820da000)
[    2.684011] Write protecting the kernel read-only data: 14336k
[    2.685520] Freeing unused kernel memory: 1844K (ffff880001833000 - ffff880001a00000)
[    2.688082] Freeing unused kernel memory: 760K (ffff880001d42000 - ffff880001e00000)
[    2.725766] udevd[171]: starting version 175
[    2.925693] clocksource: Switched to clocksource tsc
[    3.014118] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    3.014151] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
[    3.016129] r8169 0000:02:00.0 eth0: RTL8168evl/8111evl at 0xffffc900009ae000, e8:03:9a:36:17:a9, XID 0c900800 IRQ 31
[    3.016153] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[    3.070200] usbcore: registered new interface driver usbhid
[    3.070215] usbhid: USB HID core driver
[    3.132470] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4/2-1.4:1.0/0003:046D:C00E.0001/input/input5
[    3.132933] hid-generic 0003:046D:C00E.0001: input: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.0-1.4/input0
[    3.857715] EXT4-fs (loop0): mounted filesystem with ordered data mode. Opts: (null)
[    4.121185] usb 1-1.2: new high-speed USB device number 4 using ehci-pci
[    4.216305] usb 1-1.2: New USB device found, idVendor=12d1, idProduct=1446
[    4.216340] usb 1-1.2: New USB device strings: Mfr=3, Product=2, SerialNumber=0
[    4.216349] usb 1-1.2: Product: HUAWEI Mobile
[    4.216355] usb 1-1.2: Manufacturer: HUAWEI Technology
[    4.685074] random: nonblocking pool is initialized
[    5.852928] init: ureadahead main process (447) terminated with status 5
[    9.893670] Adding 262140k swap on /host/ubuntu/disks/swap.disk.  Priority:-1 extents:1 across:262140k FS
[   10.185894] EXT4-fs (loop0): re-mounted. Opts: errors=remount-ro
[   10.332305] udevd[674]: starting version 175
[   11.518744] lp: driver loaded but no devices found
[   13.717710] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20160422/utaddress-255)
[   13.717725] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   13.717736] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20160422/utaddress-255)
[   13.717745] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   13.717750] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20160422/utaddress-255)
[   13.717758] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   13.717763] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20160422/utaddress-255)
[   13.717771] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   13.717774] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   13.736244] wmi: Mapper loaded
[   13.975491] [drm] Initialized drm 1.1.0 20060810
[   14.001311] samsung_laptop: detected SABI interface: SwSmi@
[   14.559749] Bluetooth: Core ver 2.21
[   14.559795] NET: Registered protocol family 31
[   14.559798] Bluetooth: HCI device and connection manager initialized
[   14.559873] Bluetooth: HCI socket layer initialized
[   14.559880] Bluetooth: L2CAP socket layer initialized
[   14.559944] Bluetooth: SCO socket layer initialized
[   15.318817] psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x450f00)
[   15.333928] psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x17, 0x0c.
[   15.349625] psmouse serio1: elantech: Elan sample query result 03, 3f, 86
[   15.427438] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input6
[   15.475541] usbcore: registered new interface driver btusb
[   15.616324] Intel(R) Wireless WiFi driver for Linux
[   15.616330] Copyright(c) 2003- 2015 Intel Corporation
[   15.616780] iwlwifi 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
[   15.644106] usb-storage 1-1.2:1.0: USB Mass Storage device detected
[   15.644833] scsi host6: usb-storage 1-1.2:1.0
[   15.645326] usb-storage 1-1.2:1.1: USB Mass Storage device detected
[   15.645803] scsi host7: usb-storage 1-1.2:1.1
[   15.646265] usbcore: registered new interface driver usb-storage
[   15.680952] Linux video capture interface: v2.00
[   16.256204] iwlwifi 0000:01:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
[   16.646964] scsi 6:0:0:0: CD-ROM            HUAWEI   Mass Storage     2.31 PQ: 0 ANSI: 2
[   16.647734] scsi 7:0:0:0: Direct-Access     HUAWEI   SD Storage       2.31 PQ: 0 ANSI: 2
[   16.651400] sd 7:0:0:0: Attached scsi generic sg2 type 0
[   16.655773] sr 6:0:0:0: [sr0] scsi-1 drive
[   16.655778] cdrom: Uniform CD-ROM driver Revision: 3.20
[   16.661576] sd 7:0:0:0: [sdc] Attached SCSI removable disk
[   16.670094] sr 6:0:0:0: Attached scsi CD-ROM sr0
[   16.670506] sr 6:0:0:0: Attached scsi generic sg3 type 5
[   17.245084] audit: type=1400 audit(1464601564.190:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=1081 comm="apparmor_parser"
[   17.245095] audit: type=1400 audit(1464601564.190:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1081 comm="apparmor_parser"
[   17.245102] audit: type=1400 audit(1464601564.190:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=1081 comm="apparmor_parser"
[   17.245618] audit: type=1400 audit(1464601564.190:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1081 comm="apparmor_parser"
[   17.245626] audit: type=1400 audit(1464601564.190:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1081 comm="apparmor_parser"
[   17.245901] audit: type=1400 audit(1464601564.190:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1081 comm="apparmor_parser"
[   17.247238] audit: type=1400 audit(1464601564.190:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1080 comm="apparmor_parser"
[   17.247249] audit: type=1400 audit(1464601564.190:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1080 comm="apparmor_parser"
[   17.247257] audit: type=1400 audit(1464601564.190:10): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1080 comm="apparmor_parser"
[   17.247859] audit: type=1400 audit(1464601564.190:11): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1080 comm="apparmor_parser"
[   17.999120] usb 1-1.2: USB disconnect, device number 4
[   18.224428] ppdev: user-space parallel port driver
[   18.232542] Bluetooth: RFCOMM TTY layer initialized
[   18.232571] Bluetooth: RFCOMM socket layer initialized
[   18.232590] Bluetooth: RFCOMM ver 1.11
[   18.278033] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   18.278039] Bluetooth: BNEP filters: protocol multicast
[   18.278053] Bluetooth: BNEP socket layer initialized
[   18.425583] init: failsafe main process (1161) killed by TERM signal
[   18.854424] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VC: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   18.854431] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   18.854433] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[   18.854435] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[   18.854437] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[   18.854442] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x19
[   18.854445] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
[   19.055361] uvcvideo: Found UVC 1.00 device WebCam SC-13HDL11431N (2232:1018)
[   19.075256] input: WebCam SC-13HDL11431N as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input9
[   19.075776] usbcore: registered new interface driver uvcvideo
[   19.075781] USB Video Class driver (1.1.1)
[   19.131132] [drm] Memory usable by graphics device = 2048M
[   19.131203] [drm] Replacing VGA console driver
[   19.138275] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   19.138280] [drm] Driver supports precise vblank timestamp query.
[   19.142743] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   19.143085] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUG disabled
[   19.143092] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[   19.143097] iwlwifi 0000:01:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
[   19.143103] iwlwifi 0000:01:00.0: Detected Intel(R) Centrino(R) Advanced-N 6230 AGN, REV=0xB0
[   19.145547] iwlwifi 0000:01:00.0: L1 Enabled - LTR Disabled
[   19.165407] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   19.166821] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input10
[   19.298570] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[   19.298587] [drm] Initialized i915 1.6.0 20160425 for 0000:00:02.0 on minor 0
[   19.299942] fbcon: inteldrmfb (fb0) is primary device
[   19.304966] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[   19.341914] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[   19.351914] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[   19.353567] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[   20.474790] [drm:intel_cpu_fifo_underrun_irq_handler [i915]] *ERROR* CPU pipe A FIFO underrun
[   20.476065] [drm:intel_set_pch_fifo_underrun_reporting [i915]] *ERROR* uncleared pch fifo underrun on pch transcoder A
[   20.476098] [drm:intel_pch_fifo_underrun_irq_handler [i915]] *ERROR* PCH transcoder A FIFO underrun
[   20.491483] Console: switching to colour frame buffer device 170x48
[   20.624625] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[   22.035928] usb 1-1.2: new high-speed USB device number 5 using ehci-pci
[   22.130840] usb 1-1.2: New USB device found, idVendor=12d1, idProduct=1436
[   22.130854] usb 1-1.2: New USB device strings: Mfr=4, Product=3, SerialNumber=0
[   22.130861] usb 1-1.2: Product: HUAWEI Mobile
[   22.130867] usb 1-1.2: Manufacturer: HUAWEI Technology
[   22.134155] usb-storage 1-1.2:1.0: USB Mass Storage device detected
[   22.135108] usb-storage 1-1.2:1.1: USB Mass Storage device detected
[   22.135586] usb-storage 1-1.2:1.2: USB Mass Storage device detected
[   22.136139] usb-storage 1-1.2:1.3: USB Mass Storage device detected
[   22.136662] usb-storage 1-1.2:1.4: USB Mass Storage device detected
[   22.137146] usb-storage 1-1.2:1.5: USB Mass Storage device detected
[   22.137605] scsi host6: usb-storage 1-1.2:1.5
[   22.138280] usb-storage 1-1.2:1.6: USB Mass Storage device detected
[   22.138732] scsi host7: usb-storage 1-1.2:1.6
[   22.210948] usbcore: registered new interface driver usbserial
[   22.251656] cdc_ether 1-1.2:1.1 wwan0: register 'cdc_ether' at usb-0000:00:1a.0-1.2, Mobile Broadband Network Device, 02:50:f3:00:00:00
[   22.252816] usbcore: registered new interface driver cdc_ether
[   22.320301] usbcore: registered new interface driver option
[   22.321085] usbserial: USB Serial support registered for GSM modem (1-port)
[   22.321315] option 1-1.2:1.0: GSM modem (1-port) converter detected
[   22.328222] usb 1-1.2: GSM modem (1-port) converter now attached to ttyUSB0
[   22.328632] option 1-1.2:1.3: GSM modem (1-port) converter detected
[   22.329345] usb 1-1.2: GSM modem (1-port) converter now attached to ttyUSB1
[   22.329449] option 1-1.2:1.4: GSM modem (1-port) converter detected
[   22.330060] usb 1-1.2: GSM modem (1-port) converter now attached to ttyUSB2
[   23.138362] scsi 7:0:0:0: Direct-Access     HUAWEI   SD Storage       2.31 PQ: 0 ANSI: 2
[   23.138476] scsi 6:0:0:0: CD-ROM            HUAWEI   Mass Storage     2.31 PQ: 0 ANSI: 2
[   23.147959] sd 7:0:0:0: Attached scsi generic sg2 type 0
[   23.153277] sd 7:0:0:0: [sdc] Attached SCSI removable disk
[   23.154060] sr 6:0:0:0: [sr0] scsi-1 drive
[   23.155088] sr 6:0:0:0: Attached scsi CD-ROM sr0
[   23.155556] sr 6:0:0:0: Attached scsi generic sg3 type 5
[   24.253803] r8169 0000:02:00.0 eth0: link down
[   24.253891] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   70.447864] PPP BSD Compression module registered
[   70.463461] PPP Deflate Compression module registered
[   71.772726] usb 2-1.5: USB disconnect, device number 4

[-- Attachment #3: config-4.7.0-rc1-2-iniza-small --]
[-- Type: application/octet-stream, Size: 136109 bytes --]

#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 4.7.0-rc1 Kernel Configuration
#
CONFIG_64BIT=y
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_OUTPUT_FORMAT="elf64-x86-64"
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_MMU=y
CONFIG_ARCH_MMAP_RND_BITS_MIN=28
CONFIG_ARCH_MMAP_RND_BITS_MAX=32
CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8
CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16
CONFIG_NEED_DMA_MAP_STATE=y
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
CONFIG_ZONE_DMA32=y
CONFIG_AUDIT_ARCH=y
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_HAVE_INTEL_TXT=y
CONFIG_X86_64_SMP=y
CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11"
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_DEBUG_RODATA=y
CONFIG_PGTABLE_LEVELS=4
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_EXTABLE_SORT=y

#
# General setup
#
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_CROSS_COMPILE=""
# CONFIG_COMPILE_TEST is not set
CONFIG_LOCALVERSION=""
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_HAVE_KERNEL_GZIP=y
CONFIG_HAVE_KERNEL_BZIP2=y
CONFIG_HAVE_KERNEL_LZMA=y
CONFIG_HAVE_KERNEL_XZ=y
CONFIG_HAVE_KERNEL_LZO=y
CONFIG_HAVE_KERNEL_LZ4=y
# CONFIG_KERNEL_GZIP is not set
# CONFIG_KERNEL_BZIP2 is not set
# CONFIG_KERNEL_LZMA is not set
CONFIG_KERNEL_XZ=y
# CONFIG_KERNEL_LZO is not set
# CONFIG_KERNEL_LZ4 is not set
CONFIG_DEFAULT_HOSTNAME="(none)"
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
CONFIG_POSIX_MQUEUE_SYSCTL=y
CONFIG_CROSS_MEMORY_ATTACH=y
CONFIG_FHANDLE=y
CONFIG_USELIB=y
CONFIG_AUDIT=y
CONFIG_HAVE_ARCH_AUDITSYSCALL=y
CONFIG_AUDITSYSCALL=y
CONFIG_AUDIT_WATCH=y
CONFIG_AUDIT_TREE=y

#
# IRQ subsystem
#
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_IRQ_SHOW=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_IRQ_DOMAIN=y
CONFIG_IRQ_DOMAIN_HIERARCHY=y
CONFIG_GENERIC_MSI_IRQ=y
CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
# CONFIG_IRQ_DOMAIN_DEBUG is not set
CONFIG_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_ARCH_CLOCKSOURCE_DATA=y
CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
CONFIG_GENERIC_CMOS_UPDATE=y

#
# Timers subsystem
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ_COMMON=y
# CONFIG_HZ_PERIODIC is not set
CONFIG_NO_HZ_IDLE=y
# CONFIG_NO_HZ_FULL is not set
# CONFIG_NO_HZ is not set
CONFIG_HIGH_RES_TIMERS=y

#
# CPU/Task time and stats accounting
#
CONFIG_VIRT_CPU_ACCOUNTING=y
# CONFIG_TICK_CPU_ACCOUNTING is not set
CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
# CONFIG_IRQ_TIME_ACCOUNTING is not set
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_BSD_PROCESS_ACCT_V3=y
CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y

#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
# CONFIG_RCU_EXPERT is not set
CONFIG_SRCU=y
# CONFIG_TASKS_RCU is not set
CONFIG_RCU_STALL_COMMON=y
CONFIG_CONTEXT_TRACKING=y
# CONFIG_CONTEXT_TRACKING_FORCE is not set
# CONFIG_TREE_RCU_TRACE is not set
# CONFIG_RCU_EXPEDITE_BOOT is not set
CONFIG_BUILD_BIN2C=y
CONFIG_IKCONFIG=m
# CONFIG_IKCONFIG_PROC is not set
CONFIG_LOG_BUF_SHIFT=18
CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
CONFIG_NMI_LOG_BUF_SHIFT=13
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y
CONFIG_ARCH_SUPPORTS_INT128=y
# CONFIG_NUMA_BALANCING is not set
CONFIG_CGROUPS=y
CONFIG_PAGE_COUNTER=y
CONFIG_MEMCG=y
CONFIG_MEMCG_SWAP=y
# CONFIG_MEMCG_SWAP_ENABLED is not set
CONFIG_BLK_CGROUP=y
# CONFIG_DEBUG_BLK_CGROUP is not set
CONFIG_CGROUP_WRITEBACK=y
CONFIG_CGROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
CONFIG_CFS_BANDWIDTH=y
CONFIG_RT_GROUP_SCHED=y
# CONFIG_CGROUP_PIDS is not set
CONFIG_CGROUP_FREEZER=y
CONFIG_CGROUP_HUGETLB=y
CONFIG_CPUSETS=y
CONFIG_PROC_PID_CPUSET=y
CONFIG_CGROUP_DEVICE=y
CONFIG_CGROUP_CPUACCT=y
CONFIG_CGROUP_PERF=y
# CONFIG_CGROUP_DEBUG is not set
CONFIG_CHECKPOINT_RESTORE=y
CONFIG_NAMESPACES=y
CONFIG_UTS_NS=y
CONFIG_IPC_NS=y
# CONFIG_USER_NS is not set
CONFIG_PID_NS=y
CONFIG_NET_NS=y
CONFIG_SCHED_AUTOGROUP=y
# CONFIG_SYSFS_DEPRECATED is not set
CONFIG_RELAY=y
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_RD_GZIP=y
CONFIG_RD_BZIP2=y
CONFIG_RD_LZMA=y
CONFIG_RD_XZ=y
CONFIG_RD_LZO=y
CONFIG_RD_LZ4=y
CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_SYSCTL=y
CONFIG_ANON_INODES=y
CONFIG_HAVE_UID16=y
CONFIG_SYSCTL_EXCEPTION_TRACE=y
CONFIG_HAVE_PCSPKR_PLATFORM=y
CONFIG_BPF=y
CONFIG_EXPERT=y
CONFIG_UID16=y
CONFIG_MULTIUSER=y
CONFIG_SGETMASK_SYSCALL=y
CONFIG_SYSFS_SYSCALL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y
CONFIG_KALLSYMS_BASE_RELATIVE=y
CONFIG_PRINTK=y
CONFIG_PRINTK_NMI=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_PCSPKR_PLATFORM=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
# CONFIG_BPF_SYSCALL is not set
CONFIG_SHMEM=y
CONFIG_AIO=y
CONFIG_ADVISE_SYSCALLS=y
# CONFIG_USERFAULTFD is not set
CONFIG_PCI_QUIRKS=y
CONFIG_MEMBARRIER=y
# CONFIG_EMBEDDED is not set
CONFIG_HAVE_PERF_EVENTS=y

#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
CONFIG_VM_EVENT_COUNTERS=y
# CONFIG_COMPAT_BRK is not set
CONFIG_SLAB=y
# CONFIG_SLUB is not set
# CONFIG_SLOB is not set
# CONFIG_SLAB_FREELIST_RANDOM is not set
CONFIG_SYSTEM_DATA_VERIFICATION=y
CONFIG_PROFILING=y
CONFIG_TRACEPOINTS=y
CONFIG_KEXEC_CORE=y
# CONFIG_OPROFILE is not set
CONFIG_HAVE_OPROFILE=y
CONFIG_OPROFILE_NMI_TIMER=y
CONFIG_KPROBES=y
CONFIG_JUMP_LABEL=y
# CONFIG_STATIC_KEYS_SELFTEST is not set
CONFIG_OPTPROBES=y
CONFIG_KPROBES_ON_FTRACE=y
CONFIG_UPROBES=y
# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_ARCH_USE_BUILTIN_BSWAP=y
CONFIG_KRETPROBES=y
CONFIG_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_IOREMAP_PROT=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_OPTPROBES=y
CONFIG_HAVE_KPROBES_ON_FTRACE=y
CONFIG_HAVE_NMI=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
CONFIG_HAVE_DMA_CONTIGUOUS=y
CONFIG_GENERIC_SMP_IDLE_THREAD=y
CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
CONFIG_HAVE_DMA_API_DEBUG=y
CONFIG_HAVE_HW_BREAKPOINT=y
CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
CONFIG_HAVE_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_PERF_EVENTS_NMI=y
CONFIG_HAVE_PERF_REGS=y
CONFIG_HAVE_PERF_USER_STACK_DUMP=y
CONFIG_HAVE_ARCH_JUMP_LABEL=y
CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
CONFIG_HAVE_CMPXCHG_LOCAL=y
CONFIG_HAVE_CMPXCHG_DOUBLE=y
CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
CONFIG_SECCOMP_FILTER=y
CONFIG_HAVE_CC_STACKPROTECTOR=y
# CONFIG_CC_STACKPROTECTOR is not set
CONFIG_CC_STACKPROTECTOR_NONE=y
# CONFIG_CC_STACKPROTECTOR_REGULAR is not set
# CONFIG_CC_STACKPROTECTOR_STRONG is not set
CONFIG_HAVE_CONTEXT_TRACKING=y
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
CONFIG_HAVE_ARCH_HUGE_VMAP=y
CONFIG_HAVE_ARCH_SOFT_DIRTY=y
CONFIG_MODULES_USE_ELF_RELA=y
CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y
CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
CONFIG_HAVE_EXIT_THREAD=y
CONFIG_ARCH_MMAP_RND_BITS=28
CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8
CONFIG_HAVE_COPY_THREAD_TLS=y
CONFIG_HAVE_STACK_VALIDATION=y
# CONFIG_HAVE_ARCH_HASH is not set
CONFIG_OLD_SIGSUSPEND3=y
CONFIG_COMPAT_OLD_SIGACTION=y
# CONFIG_CPU_NO_EFFICIENT_FFS is not set

#
# GCOV-based kernel profiling
#
# CONFIG_GCOV_KERNEL is not set
CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
CONFIG_SLABINFO=y
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULES=y
# CONFIG_MODULE_FORCE_LOAD is not set
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
CONFIG_MODVERSIONS=y
CONFIG_MODULE_SRCVERSION_ALL=y
CONFIG_MODULE_SIG=y
# CONFIG_MODULE_SIG_FORCE is not set
CONFIG_MODULE_SIG_ALL=y
# CONFIG_MODULE_SIG_SHA1 is not set
# CONFIG_MODULE_SIG_SHA224 is not set
# CONFIG_MODULE_SIG_SHA256 is not set
# CONFIG_MODULE_SIG_SHA384 is not set
CONFIG_MODULE_SIG_SHA512=y
CONFIG_MODULE_SIG_HASH="sha512"
# CONFIG_MODULE_COMPRESS is not set
CONFIG_MODULES_TREE_LOOKUP=y
CONFIG_BLOCK=y
CONFIG_BLK_DEV_BSG=y
CONFIG_BLK_DEV_BSGLIB=y
CONFIG_BLK_DEV_INTEGRITY=y
CONFIG_BLK_DEV_THROTTLING=y
# CONFIG_BLK_CMDLINE_PARSER is not set

#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
CONFIG_ACORN_PARTITION=y
# CONFIG_ACORN_PARTITION_CUMANA is not set
# CONFIG_ACORN_PARTITION_EESOX is not set
CONFIG_ACORN_PARTITION_ICS=y
# CONFIG_ACORN_PARTITION_ADFS is not set
# CONFIG_ACORN_PARTITION_POWERTEC is not set
CONFIG_ACORN_PARTITION_RISCIX=y
# CONFIG_AIX_PARTITION is not set
CONFIG_OSF_PARTITION=y
CONFIG_AMIGA_PARTITION=y
CONFIG_ATARI_PARTITION=y
CONFIG_MAC_PARTITION=y
CONFIG_MSDOS_PARTITION=y
CONFIG_BSD_DISKLABEL=y
CONFIG_MINIX_SUBPARTITION=y
CONFIG_SOLARIS_X86_PARTITION=y
CONFIG_UNIXWARE_DISKLABEL=y
CONFIG_LDM_PARTITION=y
# CONFIG_LDM_DEBUG is not set
CONFIG_SGI_PARTITION=y
CONFIG_ULTRIX_PARTITION=y
CONFIG_SUN_PARTITION=y
CONFIG_KARMA_PARTITION=y
CONFIG_EFI_PARTITION=y
CONFIG_SYSV68_PARTITION=y
# CONFIG_CMDLINE_PARTITION is not set
CONFIG_BLOCK_COMPAT=y

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
CONFIG_CFQ_GROUP_IOSCHED=y
CONFIG_DEFAULT_DEADLINE=y
# CONFIG_DEFAULT_CFQ is not set
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="deadline"
CONFIG_PREEMPT_NOTIFIERS=y
CONFIG_ASN1=y
CONFIG_UNINLINE_SPIN_UNLOCK=y
CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
CONFIG_RWSEM_SPIN_ON_OWNER=y
CONFIG_LOCK_SPIN_ON_OWNER=y
CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y
CONFIG_QUEUED_SPINLOCKS=y
CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
CONFIG_QUEUED_RWLOCKS=y
CONFIG_FREEZER=y

#
# Processor type and features
#
CONFIG_ZONE_DMA=y
CONFIG_SMP=y
CONFIG_X86_FEATURE_NAMES=y
CONFIG_X86_FAST_FEATURE_TESTS=y
CONFIG_X86_X2APIC=y
CONFIG_X86_MPPARSE=y
# CONFIG_GOLDFISH is not set
CONFIG_X86_EXTENDED_PLATFORM=y
CONFIG_X86_NUMACHIP=y
# CONFIG_X86_VSMP is not set
# CONFIG_X86_UV is not set
# CONFIG_X86_GOLDFISH is not set
# CONFIG_X86_INTEL_MID is not set
# CONFIG_X86_INTEL_LPSS is not set
# CONFIG_X86_AMD_PLATFORM_DEVICE is not set
# CONFIG_IOSF_MBI is not set
CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
CONFIG_SCHED_OMIT_FRAME_POINTER=y
CONFIG_HYPERVISOR_GUEST=y
CONFIG_PARAVIRT=y
# CONFIG_PARAVIRT_DEBUG is not set
CONFIG_PARAVIRT_SPINLOCKS=y
# CONFIG_QUEUED_LOCK_STAT is not set
CONFIG_XEN=y
CONFIG_XEN_DOM0=y
CONFIG_XEN_PVHVM=y
CONFIG_XEN_512GB=y
CONFIG_XEN_SAVE_RESTORE=y
# CONFIG_XEN_DEBUG_FS is not set
# CONFIG_XEN_PVH is not set
CONFIG_KVM_GUEST=y
CONFIG_KVM_DEBUG_FS=y
# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
CONFIG_PARAVIRT_CLOCK=y
CONFIG_NO_BOOTMEM=y
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
# CONFIG_MCORE2 is not set
# CONFIG_MATOM is not set
CONFIG_GENERIC_CPU=y
CONFIG_X86_INTERNODE_CACHE_SHIFT=6
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_TSC=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=64
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_PROCESSOR_SELECT=y
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_AMD=y
CONFIG_CPU_SUP_CENTAUR=y
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
CONFIG_DMI=y
CONFIG_GART_IOMMU=y
CONFIG_CALGARY_IOMMU=y
CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y
CONFIG_SWIOTLB=y
CONFIG_IOMMU_HELPER=y
# CONFIG_MAXSMP is not set
CONFIG_NR_CPUS=256
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
CONFIG_PREEMPT_COUNT=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
CONFIG_X86_MCE=y
CONFIG_X86_MCE_INTEL=y
CONFIG_X86_MCE_AMD=y
CONFIG_X86_MCE_THRESHOLD=y
# CONFIG_X86_MCE_INJECT is not set
CONFIG_X86_THERMAL_VECTOR=y

#
# Performance monitoring
#
CONFIG_PERF_EVENTS_INTEL_UNCORE=y
CONFIG_PERF_EVENTS_INTEL_RAPL=y
CONFIG_PERF_EVENTS_INTEL_CSTATE=y
# CONFIG_PERF_EVENTS_AMD_POWER is not set
# CONFIG_VM86 is not set
CONFIG_X86_16BIT=y
CONFIG_X86_ESPFIX64=y
CONFIG_X86_VSYSCALL_EMULATION=y
# CONFIG_I8K is not set
CONFIG_MICROCODE=y
CONFIG_MICROCODE_INTEL=y
CONFIG_MICROCODE_AMD=y
CONFIG_MICROCODE_OLD_INTERFACE=y
CONFIG_X86_MSR=m
# CONFIG_X86_CPUID is not set
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
CONFIG_X86_DIRECT_GBPAGES=y
CONFIG_NUMA=y
CONFIG_AMD_NUMA=y
CONFIG_X86_64_ACPI_NUMA=y
CONFIG_NODES_SPAN_OTHER_NODES=y
# CONFIG_NUMA_EMU is not set
CONFIG_NODES_SHIFT=6
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_ARCH_MEMORY_PROBE=y
CONFIG_ARCH_PROC_KCORE_TEXT=y
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_SPARSEMEM_MANUAL=y
CONFIG_SPARSEMEM=y
CONFIG_NEED_MULTIPLE_NODES=y
CONFIG_HAVE_MEMORY_PRESENT=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y
CONFIG_SPARSEMEM_VMEMMAP=y
CONFIG_HAVE_MEMBLOCK=y
CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
CONFIG_ARCH_DISCARD_MEMBLOCK=y
CONFIG_MEMORY_ISOLATION=y
# CONFIG_MOVABLE_NODE is not set
CONFIG_HAVE_BOOTMEM_INFO_NODE=y
CONFIG_MEMORY_HOTPLUG=y
CONFIG_MEMORY_HOTPLUG_SPARSE=y
# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set
CONFIG_MEMORY_HOTREMOVE=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
CONFIG_COMPACTION=y
CONFIG_MIGRATION=y
CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_BOUNCE=y
CONFIG_VIRT_TO_BUS=y
CONFIG_MMU_NOTIFIER=y
CONFIG_KSM=y
CONFIG_DEFAULT_MMAP_MIN_ADDR=65536
CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
CONFIG_MEMORY_FAILURE=y
# CONFIG_HWPOISON_INJECT is not set
CONFIG_TRANSPARENT_HUGEPAGE=y
# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set
CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y
CONFIG_CLEANCACHE=y
CONFIG_FRONTSWAP=y
# CONFIG_CMA is not set
# CONFIG_MEM_SOFT_DIRTY is not set
# CONFIG_ZSWAP is not set
# CONFIG_ZPOOL is not set
# CONFIG_ZBUD is not set
CONFIG_ZSMALLOC=y
# CONFIG_PGTABLE_MAPPING is not set
# CONFIG_ZSMALLOC_STAT is not set
CONFIG_GENERIC_EARLY_IOREMAP=y
CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y
# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
# CONFIG_IDLE_PAGE_TRACKING is not set
# CONFIG_ZONE_DEVICE is not set
CONFIG_FRAME_VECTOR=y
CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
CONFIG_ARCH_HAS_PKEYS=y
# CONFIG_X86_PMEM_LEGACY is not set
CONFIG_X86_CHECK_BIOS_CORRUPTION=y
CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
CONFIG_X86_RESERVE_LOW=64
CONFIG_MTRR=y
CONFIG_MTRR_SANITIZER=y
CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1
CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
CONFIG_X86_PAT=y
CONFIG_ARCH_USES_PG_UNCACHED=y
CONFIG_ARCH_RANDOM=y
CONFIG_X86_SMAP=y
# CONFIG_X86_INTEL_MPX is not set
CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y
CONFIG_EFI=y
CONFIG_EFI_STUB=y
# CONFIG_EFI_MIXED is not set
CONFIG_SECCOMP=y
# CONFIG_HZ_100 is not set
CONFIG_HZ_250=y
# CONFIG_HZ_300 is not set
# CONFIG_HZ_1000 is not set
CONFIG_HZ=250
CONFIG_SCHED_HRTICK=y
CONFIG_KEXEC=y
# CONFIG_KEXEC_FILE is not set
CONFIG_CRASH_DUMP=y
CONFIG_KEXEC_JUMP=y
CONFIG_PHYSICAL_START=0x1000000
CONFIG_RELOCATABLE=y
# CONFIG_RANDOMIZE_BASE is not set
CONFIG_PHYSICAL_ALIGN=0x1000000
CONFIG_HOTPLUG_CPU=y
# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
# CONFIG_COMPAT_VDSO is not set
# CONFIG_LEGACY_VSYSCALL_NATIVE is not set
CONFIG_LEGACY_VSYSCALL_EMULATE=y
# CONFIG_LEGACY_VSYSCALL_NONE is not set
# CONFIG_CMDLINE_BOOL is not set
CONFIG_MODIFY_LDT_SYSCALL=y
CONFIG_HAVE_LIVEPATCH=y
# CONFIG_LIVEPATCH is not set
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
CONFIG_USE_PERCPU_NUMA_NODE_ID=y

#
# Power management and ACPI options
#
CONFIG_ARCH_HIBERNATION_HEADER=y
CONFIG_SUSPEND=y
CONFIG_SUSPEND_FREEZER=y
# CONFIG_SUSPEND_SKIP_SYNC is not set
CONFIG_HIBERNATE_CALLBACKS=y
CONFIG_HIBERNATION=y
CONFIG_PM_STD_PARTITION=""
CONFIG_PM_SLEEP=y
CONFIG_PM_SLEEP_SMP=y
# CONFIG_PM_AUTOSLEEP is not set
# CONFIG_PM_WAKELOCKS is not set
CONFIG_PM=y
# CONFIG_PM_DEBUG is not set
# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
CONFIG_ACPI=y
CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y
CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y
CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y
# CONFIG_ACPI_DEBUGGER is not set
CONFIG_ACPI_SLEEP=y
# CONFIG_ACPI_PROCFS_POWER is not set
CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y
# CONFIG_ACPI_EC_DEBUGFS is not set
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=y
CONFIG_ACPI_DOCK=y
CONFIG_ACPI_CPU_FREQ_PSS=y
CONFIG_ACPI_PROCESSOR_IDLE=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_HOTPLUG_CPU=y
# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_NUMA=y
CONFIG_ACPI_CUSTOM_DSDT_FILE=""
# CONFIG_ACPI_CUSTOM_DSDT is not set
CONFIG_ACPI_TABLE_UPGRADE=y
# CONFIG_ACPI_DEBUG is not set
# CONFIG_ACPI_PCI_SLOT is not set
CONFIG_X86_PM_TIMER=y
CONFIG_ACPI_CONTAINER=y
# CONFIG_ACPI_HOTPLUG_MEMORY is not set
CONFIG_ACPI_HOTPLUG_IOAPIC=y
# CONFIG_ACPI_SBS is not set
CONFIG_ACPI_HED=y
# CONFIG_ACPI_CUSTOM_METHOD is not set
CONFIG_ACPI_BGRT=y
# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set
# CONFIG_ACPI_NFIT is not set
CONFIG_HAVE_ACPI_APEI=y
CONFIG_HAVE_ACPI_APEI_NMI=y
CONFIG_ACPI_APEI=y
CONFIG_ACPI_APEI_GHES=y
CONFIG_ACPI_APEI_PCIEAER=y
CONFIG_ACPI_APEI_MEMORY_FAILURE=y
# CONFIG_ACPI_APEI_EINJ is not set
# CONFIG_ACPI_APEI_ERST_DEBUG is not set
# CONFIG_ACPI_EXTLOG is not set
# CONFIG_PMIC_OPREGION is not set
CONFIG_SFI=y

#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_GOV_ATTR_SET=y
CONFIG_CPU_FREQ_GOV_COMMON=y
CONFIG_CPU_FREQ_STAT=m
CONFIG_CPU_FREQ_STAT_DETAILS=y
CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=y
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y

#
# CPU frequency scaling drivers
#
CONFIG_X86_INTEL_PSTATE=y
CONFIG_X86_PCC_CPUFREQ=y
CONFIG_X86_ACPI_CPUFREQ=m
CONFIG_X86_ACPI_CPUFREQ_CPB=y
CONFIG_X86_POWERNOW_K8=m
# CONFIG_X86_AMD_FREQ_SENSITIVITY is not set
CONFIG_X86_SPEEDSTEP_CENTRINO=y
# CONFIG_X86_P4_CLOCKMOD is not set

#
# shared options
#
# CONFIG_X86_SPEEDSTEP_LIB is not set

#
# CPU Idle
#
CONFIG_CPU_IDLE=y
CONFIG_CPU_IDLE_GOV_LADDER=y
CONFIG_CPU_IDLE_GOV_MENU=y
# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
CONFIG_INTEL_IDLE=y

#
# Memory power savings
#
# CONFIG_I7300_IDLE is not set

#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
CONFIG_PCI_XEN=y
CONFIG_PCI_DOMAINS=y
# CONFIG_PCI_CNB20LE_QUIRK is not set
CONFIG_PCIEPORTBUS=y
CONFIG_HOTPLUG_PCI_PCIE=y
CONFIG_PCIEAER=y
# CONFIG_PCIE_ECRC is not set
# CONFIG_PCIEAER_INJECT is not set
CONFIG_PCIEASPM=y
CONFIG_PCIEASPM_DEBUG=y
CONFIG_PCIEASPM_DEFAULT=y
# CONFIG_PCIEASPM_POWERSAVE is not set
# CONFIG_PCIEASPM_PERFORMANCE is not set
CONFIG_PCIE_PME=y
# CONFIG_PCIE_DPC is not set
CONFIG_PCI_BUS_ADDR_T_64BIT=y
CONFIG_PCI_MSI=y
CONFIG_PCI_MSI_IRQ_DOMAIN=y
# CONFIG_PCI_DEBUG is not set
CONFIG_PCI_REALLOC_ENABLE_AUTO=y
# CONFIG_PCI_STUB is not set
# CONFIG_XEN_PCIDEV_FRONTEND is not set
CONFIG_HT_IRQ=y
CONFIG_PCI_ATS=y
CONFIG_PCI_IOV=y
CONFIG_PCI_PRI=y
CONFIG_PCI_PASID=y
CONFIG_PCI_LABEL=y
CONFIG_HOTPLUG_PCI=y
# CONFIG_HOTPLUG_PCI_ACPI is not set
CONFIG_HOTPLUG_PCI_CPCI=y
# CONFIG_HOTPLUG_PCI_CPCI_ZT5550 is not set
# CONFIG_HOTPLUG_PCI_CPCI_GENERIC is not set
# CONFIG_HOTPLUG_PCI_SHPC is not set

#
# PCI host controller drivers
#
# CONFIG_PCIE_DW_PLAT is not set
CONFIG_ISA_DMA_API=y
CONFIG_AMD_NB=y
# CONFIG_PCCARD is not set
CONFIG_RAPIDIO=y
CONFIG_RAPIDIO_TSI721=y
CONFIG_RAPIDIO_DISC_TIMEOUT=30
# CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS is not set
CONFIG_RAPIDIO_DMA_ENGINE=y
# CONFIG_RAPIDIO_DEBUG is not set
# CONFIG_RAPIDIO_ENUM_BASIC is not set
# CONFIG_RAPIDIO_MPORT_CDEV is not set

#
# RapidIO Switch drivers
#
CONFIG_RAPIDIO_TSI57X=y
CONFIG_RAPIDIO_CPS_XX=y
CONFIG_RAPIDIO_TSI568=y
CONFIG_RAPIDIO_CPS_GEN2=y
# CONFIG_X86_SYSFB is not set

#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
CONFIG_COMPAT_BINFMT_ELF=y
CONFIG_ELFCORE=y
# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
CONFIG_BINFMT_SCRIPT=y
# CONFIG_HAVE_AOUT is not set
CONFIG_BINFMT_MISC=m
CONFIG_COREDUMP=y
CONFIG_IA32_EMULATION=y
# CONFIG_IA32_AOUT is not set
CONFIG_X86_X32=y
CONFIG_COMPAT=y
CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
CONFIG_SYSVIPC_COMPAT=y
CONFIG_KEYS_COMPAT=y
CONFIG_X86_DEV_DMA_OPS=y
CONFIG_PMC_ATOM=y
# CONFIG_VMD is not set
CONFIG_NET=y
CONFIG_NET_INGRESS=y

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_DIAG is not set
CONFIG_UNIX=y
# CONFIG_UNIX_DIAG is not set
# CONFIG_XFRM_USER is not set
# CONFIG_NET_KEY is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_IP_FIB_TRIE_STATS=y
CONFIG_IP_MULTIPLE_TABLES=y
CONFIG_IP_ROUTE_MULTIPATH=y
CONFIG_IP_ROUTE_VERBOSE=y
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
# CONFIG_IP_PNP_BOOTP is not set
# CONFIG_IP_PNP_RARP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE_DEMUX is not set
# CONFIG_NET_IP_TUNNEL is not set
CONFIG_IP_MROUTE=y
# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set
CONFIG_IP_PIMSM_V1=y
CONFIG_IP_PIMSM_V2=y
CONFIG_SYN_COOKIES=y
# CONFIG_NET_UDP_TUNNEL is not set
# CONFIG_NET_FOU is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_XFRM_TUNNEL is not set
# CONFIG_INET_TUNNEL is not set
# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
# CONFIG_INET_XFRM_MODE_TUNNEL is not set
# CONFIG_INET_XFRM_MODE_BEET is not set
# CONFIG_INET_DIAG is not set
CONFIG_TCP_CONG_ADVANCED=y
# CONFIG_TCP_CONG_BIC is not set
CONFIG_TCP_CONG_CUBIC=y
# CONFIG_TCP_CONG_WESTWOOD is not set
# CONFIG_TCP_CONG_HTCP is not set
# CONFIG_TCP_CONG_HSTCP is not set
# CONFIG_TCP_CONG_HYBLA is not set
# CONFIG_TCP_CONG_VEGAS is not set
# CONFIG_TCP_CONG_SCALABLE is not set
# CONFIG_TCP_CONG_LP is not set
# CONFIG_TCP_CONG_VENO is not set
# CONFIG_TCP_CONG_YEAH is not set
# CONFIG_TCP_CONG_ILLINOIS is not set
# CONFIG_TCP_CONG_DCTCP is not set
# CONFIG_TCP_CONG_CDG is not set
CONFIG_DEFAULT_CUBIC=y
# CONFIG_DEFAULT_RENO is not set
CONFIG_DEFAULT_TCP_CONG="cubic"
CONFIG_TCP_MD5SIG=y
CONFIG_IPV6=y
CONFIG_IPV6_ROUTER_PREF=y
CONFIG_IPV6_ROUTE_INFO=y
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
# CONFIG_INET6_AH is not set
# CONFIG_INET6_ESP is not set
# CONFIG_INET6_IPCOMP is not set
# CONFIG_IPV6_MIP6 is not set
# CONFIG_IPV6_ILA is not set
# CONFIG_INET6_XFRM_TUNNEL is not set
# CONFIG_INET6_TUNNEL is not set
# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set
# CONFIG_INET6_XFRM_MODE_TUNNEL is not set
# CONFIG_INET6_XFRM_MODE_BEET is not set
# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
# CONFIG_IPV6_SIT is not set
# CONFIG_IPV6_TUNNEL is not set
CONFIG_IPV6_MULTIPLE_TABLES=y
CONFIG_IPV6_SUBTREES=y
CONFIG_IPV6_MROUTE=y
CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
CONFIG_IPV6_PIMSM_V2=y
CONFIG_NETLABEL=y
CONFIG_NETWORK_SECMARK=y
# CONFIG_NET_PTP_CLASSIFY is not set
# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set
CONFIG_NETFILTER_ADVANCED=y

#
# Core Netfilter Configuration
#
CONFIG_NETFILTER_INGRESS=y
# CONFIG_NETFILTER_NETLINK_ACCT is not set
# CONFIG_NETFILTER_NETLINK_QUEUE is not set
# CONFIG_NETFILTER_NETLINK_LOG is not set
# CONFIG_NF_CONNTRACK is not set
# CONFIG_NF_TABLES is not set
# CONFIG_NETFILTER_XTABLES is not set
# CONFIG_IP_SET is not set
# CONFIG_IP_VS is not set

#
# IP: Netfilter Configuration
#
# CONFIG_NF_DEFRAG_IPV4 is not set
# CONFIG_NF_DUP_IPV4 is not set
# CONFIG_NF_LOG_ARP is not set
# CONFIG_NF_LOG_IPV4 is not set
# CONFIG_NF_REJECT_IPV4 is not set
# CONFIG_IP_NF_IPTABLES is not set
# CONFIG_IP_NF_ARPTABLES is not set

#
# IPv6: Netfilter Configuration
#
# CONFIG_NF_DEFRAG_IPV6 is not set
# CONFIG_NF_DUP_IPV6 is not set
# CONFIG_NF_REJECT_IPV6 is not set
# CONFIG_NF_LOG_IPV6 is not set
# CONFIG_IP6_NF_IPTABLES is not set
# CONFIG_IP_DCCP is not set
# CONFIG_IP_SCTP is not set
# CONFIG_RDS is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_L2TP is not set
# CONFIG_BRIDGE is not set
CONFIG_HAVE_NET_DSA=y
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_PHONET is not set
# CONFIG_6LOWPAN is not set
# CONFIG_IEEE802154 is not set
CONFIG_NET_SCHED=y

#
# Queueing/Scheduling
#
# CONFIG_NET_SCH_CBQ is not set
CONFIG_NET_SCH_HTB=m
# CONFIG_NET_SCH_HFSC is not set
# CONFIG_NET_SCH_PRIO is not set
# CONFIG_NET_SCH_MULTIQ is not set
# CONFIG_NET_SCH_RED is not set
# CONFIG_NET_SCH_SFB is not set
# CONFIG_NET_SCH_SFQ is not set
# CONFIG_NET_SCH_TEQL is not set
# CONFIG_NET_SCH_TBF is not set
# CONFIG_NET_SCH_GRED is not set
# CONFIG_NET_SCH_DSMARK is not set
# CONFIG_NET_SCH_NETEM is not set
# CONFIG_NET_SCH_DRR is not set
# CONFIG_NET_SCH_MQPRIO is not set
# CONFIG_NET_SCH_CHOKE is not set
# CONFIG_NET_SCH_QFQ is not set
CONFIG_NET_SCH_CODEL=m
CONFIG_NET_SCH_FQ_CODEL=m
# CONFIG_NET_SCH_FQ is not set
# CONFIG_NET_SCH_HHF is not set
# CONFIG_NET_SCH_PIE is not set
# CONFIG_NET_SCH_INGRESS is not set
# CONFIG_NET_SCH_PLUG is not set

#
# Classification
#
CONFIG_NET_CLS=y
# CONFIG_NET_CLS_BASIC is not set
# CONFIG_NET_CLS_TCINDEX is not set
# CONFIG_NET_CLS_ROUTE4 is not set
# CONFIG_NET_CLS_FW is not set
# CONFIG_NET_CLS_U32 is not set
# CONFIG_NET_CLS_RSVP is not set
# CONFIG_NET_CLS_RSVP6 is not set
# CONFIG_NET_CLS_FLOW is not set
# CONFIG_NET_CLS_CGROUP is not set
# CONFIG_NET_CLS_BPF is not set
# CONFIG_NET_CLS_FLOWER is not set
CONFIG_NET_EMATCH=y
CONFIG_NET_EMATCH_STACK=32
# CONFIG_NET_EMATCH_CMP is not set
# CONFIG_NET_EMATCH_NBYTE is not set
# CONFIG_NET_EMATCH_U32 is not set
# CONFIG_NET_EMATCH_META is not set
# CONFIG_NET_EMATCH_TEXT is not set
CONFIG_NET_CLS_ACT=y
# CONFIG_NET_ACT_POLICE is not set
# CONFIG_NET_ACT_GACT is not set
# CONFIG_NET_ACT_MIRRED is not set
# CONFIG_NET_ACT_NAT is not set
# CONFIG_NET_ACT_PEDIT is not set
# CONFIG_NET_ACT_SIMP is not set
# CONFIG_NET_ACT_SKBEDIT is not set
# CONFIG_NET_ACT_CSUM is not set
# CONFIG_NET_ACT_VLAN is not set
# CONFIG_NET_ACT_BPF is not set
# CONFIG_NET_ACT_IFE is not set
CONFIG_NET_SCH_FIFO=y
CONFIG_DCB=y
CONFIG_DNS_RESOLVER=y
# CONFIG_BATMAN_ADV is not set
# CONFIG_OPENVSWITCH is not set
# CONFIG_VSOCKETS is not set
# CONFIG_NETLINK_DIAG is not set
# CONFIG_MPLS is not set
# CONFIG_HSR is not set
# CONFIG_NET_SWITCHDEV is not set
# CONFIG_NET_L3_MASTER_DEV is not set
CONFIG_RPS=y
CONFIG_RFS_ACCEL=y
CONFIG_XPS=y
# CONFIG_SOCK_CGROUP_DATA is not set
# CONFIG_CGROUP_NET_PRIO is not set
# CONFIG_CGROUP_NET_CLASSID is not set
CONFIG_NET_RX_BUSY_POLL=y
CONFIG_BQL=y
CONFIG_BPF_JIT=y
CONFIG_NET_FLOW_LIMIT=y

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_NET_TCPPROBE is not set
# CONFIG_NET_DROP_MONITOR is not set
CONFIG_HAMRADIO=y

#
# Packet Radio protocols
#
# CONFIG_AX25 is not set
# CONFIG_CAN is not set
# CONFIG_IRDA is not set
CONFIG_BT=m
CONFIG_BT_BREDR=y
CONFIG_BT_RFCOMM=m
CONFIG_BT_RFCOMM_TTY=y
CONFIG_BT_BNEP=m
CONFIG_BT_BNEP_MC_FILTER=y
CONFIG_BT_BNEP_PROTO_FILTER=y
# CONFIG_BT_HIDP is not set
CONFIG_BT_HS=y
CONFIG_BT_LE=y
# CONFIG_BT_LEDS is not set
# CONFIG_BT_SELFTEST is not set
CONFIG_BT_DEBUGFS=y

#
# Bluetooth device drivers
#
CONFIG_BT_INTEL=m
CONFIG_BT_BCM=m
CONFIG_BT_RTL=m
CONFIG_BT_HCIBTUSB=m
CONFIG_BT_HCIBTUSB_BCM=y
CONFIG_BT_HCIBTUSB_RTL=y
# CONFIG_BT_HCIBTSDIO is not set
# CONFIG_BT_HCIUART is not set
# CONFIG_BT_HCIBCM203X is not set
# CONFIG_BT_HCIBFUSB is not set
# CONFIG_BT_HCIVHCI is not set
# CONFIG_BT_MRVL is not set
# CONFIG_BT_ATH3K is not set
# CONFIG_AF_RXRPC is not set
# CONFIG_AF_KCM is not set
CONFIG_FIB_RULES=y
CONFIG_WIRELESS=y
CONFIG_CFG80211=m
CONFIG_NL80211_TESTMODE=y
# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
# CONFIG_CFG80211_CERTIFICATION_ONUS is not set
CONFIG_CFG80211_DEFAULT_PS=y
CONFIG_CFG80211_DEBUGFS=y
# CONFIG_CFG80211_INTERNAL_REGDB is not set
CONFIG_CFG80211_CRDA_SUPPORT=y
# CONFIG_CFG80211_WEXT is not set
# CONFIG_LIB80211 is not set
CONFIG_MAC80211=m
CONFIG_MAC80211_HAS_RC=y
CONFIG_MAC80211_RC_MINSTREL=y
CONFIG_MAC80211_RC_MINSTREL_HT=y
# CONFIG_MAC80211_RC_MINSTREL_VHT is not set
CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
CONFIG_MAC80211_MESH=y
CONFIG_MAC80211_LEDS=y
CONFIG_MAC80211_DEBUGFS=y
# CONFIG_MAC80211_MESSAGE_TRACING is not set
# CONFIG_MAC80211_DEBUG_MENU is not set
CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
# CONFIG_WIMAX is not set
CONFIG_RFKILL=y
CONFIG_RFKILL_LEDS=y
CONFIG_RFKILL_INPUT=y
# CONFIG_RFKILL_REGULATOR is not set
# CONFIG_RFKILL_GPIO is not set
# CONFIG_NET_9P is not set
# CONFIG_CAIF is not set
# CONFIG_CEPH_LIB is not set
# CONFIG_NFC is not set
# CONFIG_LWTUNNEL is not set
# CONFIG_DST_CACHE is not set
# CONFIG_NET_DEVLINK is not set
CONFIG_MAY_USE_DEVLINK=y
CONFIG_HAVE_EBPF_JIT=y

#
# Device Drivers
#

#
# Generic Driver Options
#
CONFIG_UEVENT_HELPER=y
CONFIG_UEVENT_HELPER_PATH=""
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
# CONFIG_STANDALONE is not set
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
CONFIG_FIRMWARE_IN_KERNEL=y
CONFIG_EXTRA_FIRMWARE=""
# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set
CONFIG_ALLOW_DEV_COREDUMP=y
# CONFIG_DEBUG_DRIVER is not set
# CONFIG_DEBUG_DEVRES is not set
CONFIG_SYS_HYPERVISOR=y
# CONFIG_GENERIC_CPU_DEVICES is not set
CONFIG_GENERIC_CPU_AUTOPROBE=y
CONFIG_REGMAP=y
CONFIG_REGMAP_I2C=y
CONFIG_REGMAP_SPI=y
CONFIG_REGMAP_IRQ=y
CONFIG_DMA_SHARED_BUFFER=y
# CONFIG_FENCE_TRACE is not set

#
# Bus devices
#
CONFIG_CONNECTOR=y
CONFIG_PROC_EVENTS=y
# CONFIG_MTD is not set
# CONFIG_OF is not set
CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
CONFIG_PARPORT=m
CONFIG_PARPORT_PC=m
# CONFIG_PARPORT_SERIAL is not set
CONFIG_PARPORT_PC_FIFO=y
# CONFIG_PARPORT_PC_SUPERIO is not set
# CONFIG_PARPORT_GSC is not set
# CONFIG_PARPORT_AX88796 is not set
CONFIG_PARPORT_1284=y
CONFIG_PNP=y
# CONFIG_PNP_DEBUG_MESSAGES is not set

#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
# CONFIG_BLK_DEV_NULL_BLK is not set
# CONFIG_BLK_DEV_FD is not set
# CONFIG_PARIDE is not set
# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
# CONFIG_ZRAM is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
# CONFIG_BLK_DEV_DRBD is not set
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_SKD is not set
# CONFIG_BLK_DEV_SX8 is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=65536
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_XEN_BLKDEV_FRONTEND=y
# CONFIG_XEN_BLKDEV_BACKEND is not set
CONFIG_VIRTIO_BLK=y
# CONFIG_BLK_DEV_HD is not set
# CONFIG_BLK_DEV_RBD is not set
# CONFIG_BLK_DEV_RSXX is not set
# CONFIG_BLK_DEV_NVME is not set

#
# Misc devices
#
# CONFIG_SENSORS_LIS3LV02D is not set
# CONFIG_AD525X_DPOT is not set
# CONFIG_DUMMY_IRQ is not set
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
# CONFIG_SGI_IOC4 is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_ICS932S401 is not set
# CONFIG_ENCLOSURE_SERVICES is not set
# CONFIG_HP_ILO is not set
# CONFIG_APDS9802ALS is not set
# CONFIG_ISL29003 is not set
# CONFIG_ISL29020 is not set
# CONFIG_SENSORS_TSL2550 is not set
# CONFIG_SENSORS_BH1780 is not set
# CONFIG_SENSORS_BH1770 is not set
# CONFIG_SENSORS_APDS990X is not set
# CONFIG_HMC6352 is not set
# CONFIG_DS1682 is not set
# CONFIG_TI_DAC7512 is not set
# CONFIG_BMP085_I2C is not set
# CONFIG_BMP085_SPI is not set
# CONFIG_USB_SWITCH_FSA9480 is not set
# CONFIG_LATTICE_ECP3_CONFIG is not set
# CONFIG_SRAM is not set
# CONFIG_PANEL is not set
# CONFIG_C2PORT is not set

#
# EEPROM support
#
# CONFIG_EEPROM_AT24 is not set
# CONFIG_EEPROM_AT25 is not set
# CONFIG_EEPROM_LEGACY is not set
# CONFIG_EEPROM_MAX6875 is not set
# CONFIG_EEPROM_93CX6 is not set
# CONFIG_EEPROM_93XX46 is not set
# CONFIG_CB710_CORE is not set

#
# Texas Instruments shared transport line discipline
#
# CONFIG_TI_ST is not set
# CONFIG_SENSORS_LIS3_I2C is not set

#
# Altera FPGA firmware download module
#
# CONFIG_ALTERA_STAPL is not set
CONFIG_INTEL_MEI=y
CONFIG_INTEL_MEI_ME=y
# CONFIG_INTEL_MEI_TXE is not set
# CONFIG_VMWARE_VMCI is not set

#
# Intel MIC Bus Driver
#
# CONFIG_INTEL_MIC_BUS is not set

#
# SCIF Bus Driver
#
# CONFIG_SCIF_BUS is not set

#
# VOP Bus Driver
#
# CONFIG_VOP_BUS is not set

#
# Intel MIC Host Driver
#

#
# Intel MIC Card Driver
#

#
# SCIF Driver
#

#
# Intel MIC Coprocessor State Management (COSM) Drivers
#

#
# VOP Driver
#
# CONFIG_GENWQE is not set
# CONFIG_ECHO is not set
# CONFIG_CXL_BASE is not set
# CONFIG_CXL_KERNEL_API is not set
# CONFIG_CXL_EEH is not set
CONFIG_HAVE_IDE=y
# CONFIG_IDE is not set

#
# SCSI device support
#
CONFIG_SCSI_MOD=y
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
# CONFIG_SCSI_NETLINK is not set
# CONFIG_SCSI_MQ_DEFAULT is not set
CONFIG_SCSI_PROC_FS=y

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=y
# CONFIG_BLK_DEV_SR_VENDOR is not set
CONFIG_CHR_DEV_SG=y
# CONFIG_CHR_DEV_SCH is not set
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y
CONFIG_SCSI_SCAN_ASYNC=y

#
# SCSI Transports
#
CONFIG_SCSI_SPI_ATTRS=y
# CONFIG_SCSI_FC_ATTRS is not set
# CONFIG_SCSI_ISCSI_ATTRS is not set
# CONFIG_SCSI_SAS_ATTRS is not set
# CONFIG_SCSI_SAS_LIBSAS is not set
# CONFIG_SCSI_SRP_ATTRS is not set
CONFIG_SCSI_LOWLEVEL=y
# CONFIG_ISCSI_TCP is not set
# CONFIG_ISCSI_BOOT_SYSFS is not set
# CONFIG_SCSI_CXGB3_ISCSI is not set
# CONFIG_SCSI_CXGB4_ISCSI is not set
# CONFIG_SCSI_BNX2_ISCSI is not set
# CONFIG_BE2ISCSI is not set
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_HPSA is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_3W_SAS is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_AIC94XX is not set
# CONFIG_SCSI_MVSAS is not set
# CONFIG_SCSI_MVUMI is not set
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_ARCMSR is not set
# CONFIG_SCSI_ESAS2R is not set
CONFIG_MEGARAID_NEWGEN=y
# CONFIG_MEGARAID_MM is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_MEGARAID_SAS is not set
# CONFIG_SCSI_MPT3SAS is not set
# CONFIG_SCSI_MPT2SAS is not set
# CONFIG_SCSI_UFSHCD is not set
# CONFIG_SCSI_HPTIOP is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_VMWARE_PVSCSI is not set
# CONFIG_XEN_SCSI_FRONTEND is not set
# CONFIG_SCSI_SNIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_ISCI is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_PPA is not set
# CONFIG_SCSI_IMM is not set
# CONFIG_SCSI_STEX is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_QLA_ISCSI is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_AM53C974 is not set
# CONFIG_SCSI_WD719X is not set
# CONFIG_SCSI_DEBUG is not set
# CONFIG_SCSI_PMCRAID is not set
# CONFIG_SCSI_PM8001 is not set
# CONFIG_SCSI_VIRTIO is not set
# CONFIG_SCSI_DH is not set
# CONFIG_SCSI_OSD_INITIATOR is not set
CONFIG_ATA=y
# CONFIG_ATA_NONSTANDARD is not set
CONFIG_ATA_VERBOSE_ERROR=y
CONFIG_ATA_ACPI=y
# CONFIG_SATA_ZPODD is not set
CONFIG_SATA_PMP=y

#
# Controllers with non-SFF native interface
#
CONFIG_SATA_AHCI=y
# CONFIG_SATA_AHCI_PLATFORM is not set
# CONFIG_SATA_INIC162X is not set
# CONFIG_SATA_ACARD_AHCI is not set
# CONFIG_SATA_SIL24 is not set
CONFIG_ATA_SFF=y

#
# SFF controllers with custom DMA interface
#
# CONFIG_PDC_ADMA is not set
# CONFIG_SATA_QSTOR is not set
# CONFIG_SATA_SX4 is not set
CONFIG_ATA_BMDMA=y

#
# SATA SFF controllers with BMDMA
#
CONFIG_ATA_PIIX=y
# CONFIG_SATA_DWC is not set
# CONFIG_SATA_MV is not set
# CONFIG_SATA_NV is not set
# CONFIG_SATA_PROMISE is not set
# CONFIG_SATA_SIL is not set
# CONFIG_SATA_SIS is not set
# CONFIG_SATA_SVW is not set
# CONFIG_SATA_ULI is not set
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set

#
# PATA SFF controllers with BMDMA
#
# CONFIG_PATA_ALI is not set
# CONFIG_PATA_AMD is not set
# CONFIG_PATA_ARTOP is not set
# CONFIG_PATA_ATIIXP is not set
# CONFIG_PATA_ATP867X is not set
# CONFIG_PATA_CMD64X is not set
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
# CONFIG_PATA_HPT366 is not set
# CONFIG_PATA_HPT37X is not set
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT8213 is not set
# CONFIG_PATA_IT821X is not set
# CONFIG_PATA_JMICRON is not set
# CONFIG_PATA_MARVELL is not set
# CONFIG_PATA_NETCELL is not set
# CONFIG_PATA_NINJA32 is not set
# CONFIG_PATA_NS87415 is not set
# CONFIG_PATA_OLDPIIX is not set
# CONFIG_PATA_OPTIDMA is not set
# CONFIG_PATA_PDC2027X is not set
# CONFIG_PATA_PDC_OLD is not set
# CONFIG_PATA_RADISYS is not set
# CONFIG_PATA_RDC is not set
# CONFIG_PATA_SCH is not set
# CONFIG_PATA_SERVERWORKS is not set
# CONFIG_PATA_SIL680 is not set
CONFIG_PATA_SIS=y
# CONFIG_PATA_TOSHIBA is not set
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_VIA is not set
# CONFIG_PATA_WINBOND is not set

#
# PIO-only SFF controllers
#
# CONFIG_PATA_CMD640_PCI is not set
# CONFIG_PATA_MPIIX is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_PLATFORM is not set
# CONFIG_PATA_RZ1000 is not set

#
# Generic fallback / legacy drivers
#
CONFIG_PATA_ACPI=y
CONFIG_ATA_GENERIC=y
# CONFIG_PATA_LEGACY is not set
CONFIG_MD=y
CONFIG_BLK_DEV_MD=y
CONFIG_MD_AUTODETECT=y
# CONFIG_MD_LINEAR is not set
# CONFIG_MD_RAID0 is not set
# CONFIG_MD_RAID1 is not set
# CONFIG_MD_RAID10 is not set
# CONFIG_MD_RAID456 is not set
# CONFIG_MD_MULTIPATH is not set
# CONFIG_MD_FAULTY is not set
# CONFIG_BCACHE is not set
CONFIG_BLK_DEV_DM_BUILTIN=y
CONFIG_BLK_DEV_DM=y
# CONFIG_DM_MQ_DEFAULT is not set
# CONFIG_DM_DEBUG is not set
# CONFIG_DM_CRYPT is not set
# CONFIG_DM_SNAPSHOT is not set
# CONFIG_DM_THIN_PROVISIONING is not set
# CONFIG_DM_CACHE is not set
# CONFIG_DM_ERA is not set
# CONFIG_DM_MIRROR is not set
# CONFIG_DM_RAID is not set
# CONFIG_DM_ZERO is not set
# CONFIG_DM_MULTIPATH is not set
# CONFIG_DM_DELAY is not set
CONFIG_DM_UEVENT=y
# CONFIG_DM_FLAKEY is not set
# CONFIG_DM_VERITY is not set
# CONFIG_DM_SWITCH is not set
# CONFIG_DM_LOG_WRITES is not set
# CONFIG_TARGET_CORE is not set
CONFIG_FUSION=y
# CONFIG_FUSION_SPI is not set
# CONFIG_FUSION_SAS is not set
CONFIG_FUSION_MAX_SGE=128
CONFIG_FUSION_LOGGING=y

#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
# CONFIG_FIREWIRE_NOSY is not set
CONFIG_MACINTOSH_DRIVERS=y
CONFIG_MAC_EMUMOUSEBTN=m
CONFIG_NETDEVICES=y
CONFIG_MII=m
CONFIG_NET_CORE=y
# CONFIG_BONDING is not set
# CONFIG_DUMMY is not set
# CONFIG_EQUALIZER is not set
CONFIG_NET_FC=y
# CONFIG_IFB is not set
# CONFIG_NET_TEAM is not set
# CONFIG_MACVLAN is not set
# CONFIG_IPVLAN is not set
# CONFIG_VXLAN is not set
# CONFIG_MACSEC is not set
# CONFIG_NETCONSOLE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set
# CONFIG_RIONET is not set
CONFIG_TUN=y
# CONFIG_TUN_VNET_CROSS_LE is not set
# CONFIG_VETH is not set
CONFIG_VIRTIO_NET=y
# CONFIG_NLMON is not set
# CONFIG_ARCNET is not set

#
# CAIF transport drivers
#
# CONFIG_VHOST_NET is not set
# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set

#
# Distributed Switch Architecture drivers
#
CONFIG_ETHERNET=y
CONFIG_NET_VENDOR_3COM=y
# CONFIG_VORTEX is not set
# CONFIG_TYPHOON is not set
CONFIG_NET_VENDOR_ADAPTEC=y
# CONFIG_ADAPTEC_STARFIRE is not set
CONFIG_NET_VENDOR_AGERE=y
# CONFIG_ET131X is not set
CONFIG_NET_VENDOR_ALTEON=y
# CONFIG_ACENIC is not set
# CONFIG_ALTERA_TSE is not set
CONFIG_NET_VENDOR_AMD=y
# CONFIG_AMD8111_ETH is not set
# CONFIG_PCNET32 is not set
CONFIG_NET_VENDOR_ARC=y
CONFIG_NET_VENDOR_ATHEROS=y
# CONFIG_ATL2 is not set
# CONFIG_ATL1 is not set
# CONFIG_ATL1E is not set
# CONFIG_ATL1C is not set
# CONFIG_ALX is not set
# CONFIG_NET_VENDOR_AURORA is not set
CONFIG_NET_CADENCE=y
# CONFIG_MACB is not set
CONFIG_NET_VENDOR_BROADCOM=y
# CONFIG_B44 is not set
# CONFIG_BCMGENET is not set
# CONFIG_BNX2 is not set
# CONFIG_CNIC is not set
# CONFIG_TIGON3 is not set
# CONFIG_BNX2X is not set
# CONFIG_BNXT is not set
CONFIG_NET_VENDOR_BROCADE=y
# CONFIG_BNA is not set
CONFIG_NET_VENDOR_CAVIUM=y
# CONFIG_THUNDER_NIC_PF is not set
# CONFIG_THUNDER_NIC_VF is not set
# CONFIG_THUNDER_NIC_BGX is not set
# CONFIG_LIQUIDIO is not set
CONFIG_NET_VENDOR_CHELSIO=y
# CONFIG_CHELSIO_T1 is not set
# CONFIG_CHELSIO_T3 is not set
# CONFIG_CHELSIO_T4 is not set
# CONFIG_CHELSIO_T4VF is not set
CONFIG_NET_VENDOR_CISCO=y
# CONFIG_ENIC is not set
# CONFIG_CX_ECAT is not set
# CONFIG_DNET is not set
CONFIG_NET_VENDOR_DEC=y
CONFIG_NET_TULIP=y
# CONFIG_DE2104X is not set
# CONFIG_TULIP is not set
# CONFIG_DE4X5 is not set
# CONFIG_WINBOND_840 is not set
# CONFIG_DM9102 is not set
# CONFIG_ULI526X is not set
CONFIG_NET_VENDOR_DLINK=y
# CONFIG_DL2K is not set
# CONFIG_SUNDANCE is not set
CONFIG_NET_VENDOR_EMULEX=y
# CONFIG_BE2NET is not set
CONFIG_NET_VENDOR_EZCHIP=y
CONFIG_NET_VENDOR_EXAR=y
# CONFIG_S2IO is not set
# CONFIG_VXGE is not set
CONFIG_NET_VENDOR_HP=y
# CONFIG_HP100 is not set
CONFIG_NET_VENDOR_INTEL=y
# CONFIG_E100 is not set
# CONFIG_E1000 is not set
# CONFIG_E1000E is not set
# CONFIG_IGB is not set
# CONFIG_IGBVF is not set
# CONFIG_IXGB is not set
# CONFIG_IXGBE is not set
# CONFIG_IXGBEVF is not set
# CONFIG_I40E is not set
# CONFIG_I40EVF is not set
# CONFIG_FM10K is not set
CONFIG_NET_VENDOR_I825XX=y
# CONFIG_JME is not set
CONFIG_NET_VENDOR_MARVELL=y
# CONFIG_MVMDIO is not set
# CONFIG_MVNETA_BM is not set
# CONFIG_SKGE is not set
# CONFIG_SKY2 is not set
CONFIG_NET_VENDOR_MELLANOX=y
# CONFIG_MLX4_EN is not set
# CONFIG_MLX4_CORE is not set
# CONFIG_MLX5_CORE is not set
# CONFIG_MLXSW_CORE is not set
CONFIG_NET_VENDOR_MICREL=y
# CONFIG_KS8842 is not set
# CONFIG_KS8851 is not set
# CONFIG_KS8851_MLL is not set
# CONFIG_KSZ884X_PCI is not set
CONFIG_NET_VENDOR_MICROCHIP=y
# CONFIG_ENC28J60 is not set
# CONFIG_ENCX24J600 is not set
CONFIG_NET_VENDOR_MYRI=y
# CONFIG_MYRI10GE is not set
# CONFIG_FEALNX is not set
CONFIG_NET_VENDOR_NATSEMI=y
# CONFIG_NATSEMI is not set
# CONFIG_NS83820 is not set
CONFIG_NET_VENDOR_NETRONOME=y
# CONFIG_NFP_NETVF is not set
CONFIG_NET_VENDOR_8390=y
# CONFIG_NE2K_PCI is not set
CONFIG_NET_VENDOR_NVIDIA=y
# CONFIG_FORCEDETH is not set
CONFIG_NET_VENDOR_OKI=y
# CONFIG_ETHOC is not set
CONFIG_NET_PACKET_ENGINE=y
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
CONFIG_NET_VENDOR_QLOGIC=y
# CONFIG_QLA3XXX is not set
# CONFIG_QLCNIC is not set
# CONFIG_QLGE is not set
# CONFIG_NETXEN_NIC is not set
# CONFIG_QED is not set
CONFIG_NET_VENDOR_QUALCOMM=y
CONFIG_NET_VENDOR_REALTEK=y
# CONFIG_ATP is not set
# CONFIG_8139CP is not set
# CONFIG_8139TOO is not set
CONFIG_R8169=m
CONFIG_NET_VENDOR_RENESAS=y
CONFIG_NET_VENDOR_RDC=y
# CONFIG_R6040 is not set
CONFIG_NET_VENDOR_ROCKER=y
CONFIG_NET_VENDOR_SAMSUNG=y
# CONFIG_SXGBE_ETH is not set
CONFIG_NET_VENDOR_SEEQ=y
CONFIG_NET_VENDOR_SILAN=y
# CONFIG_SC92031 is not set
CONFIG_NET_VENDOR_SIS=y
# CONFIG_SIS900 is not set
# CONFIG_SIS190 is not set
# CONFIG_SFC is not set
CONFIG_NET_VENDOR_SMSC=y
# CONFIG_EPIC100 is not set
# CONFIG_SMSC911X is not set
# CONFIG_SMSC9420 is not set
CONFIG_NET_VENDOR_STMICRO=y
# CONFIG_STMMAC_ETH is not set
CONFIG_NET_VENDOR_SUN=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
# CONFIG_NIU is not set
CONFIG_NET_VENDOR_SYNOPSYS=y
CONFIG_NET_VENDOR_TEHUTI=y
# CONFIG_TEHUTI is not set
CONFIG_NET_VENDOR_TI=y
# CONFIG_TI_CPSW_ALE is not set
# CONFIG_TLAN is not set
CONFIG_NET_VENDOR_VIA=y
# CONFIG_VIA_RHINE is not set
# CONFIG_VIA_VELOCITY is not set
CONFIG_NET_VENDOR_WIZNET=y
# CONFIG_WIZNET_W5100 is not set
# CONFIG_WIZNET_W5300 is not set
CONFIG_FDDI=y
# CONFIG_DEFXX is not set
# CONFIG_SKFP is not set
# CONFIG_HIPPI is not set
# CONFIG_NET_SB1000 is not set
CONFIG_PHYLIB=y

#
# MII PHY device drivers
#
# CONFIG_AQUANTIA_PHY is not set
CONFIG_AT803X_PHY=y
CONFIG_AMD_PHY=y
CONFIG_MARVELL_PHY=y
CONFIG_DAVICOM_PHY=y
CONFIG_QSEMI_PHY=y
CONFIG_LXT_PHY=y
CONFIG_CICADA_PHY=y
CONFIG_VITESSE_PHY=y
# CONFIG_TERANETICS_PHY is not set
CONFIG_SMSC_PHY=y
CONFIG_BCM_NET_PHYLIB=y
CONFIG_BROADCOM_PHY=y
# CONFIG_BCM7XXX_PHY is not set
CONFIG_BCM87XX_PHY=y
CONFIG_ICPLUS_PHY=y
CONFIG_REALTEK_PHY=y
CONFIG_NATIONAL_PHY=y
CONFIG_STE10XP=y
CONFIG_LSI_ET1011C_PHY=y
CONFIG_MICREL_PHY=y
# CONFIG_DP83848_PHY is not set
# CONFIG_DP83867_PHY is not set
# CONFIG_MICROCHIP_PHY is not set
CONFIG_FIXED_PHY=y
CONFIG_MDIO_BITBANG=y
CONFIG_MDIO_GPIO=y
# CONFIG_MDIO_OCTEON is not set
# CONFIG_MDIO_THUNDER is not set
# CONFIG_MDIO_BCM_UNIMAC is not set
# CONFIG_MICREL_KS8995MA is not set
# CONFIG_PLIP is not set
CONFIG_PPP=y
CONFIG_PPP_BSDCOMP=m
CONFIG_PPP_DEFLATE=m
CONFIG_PPP_FILTER=y
CONFIG_PPP_MPPE=m
CONFIG_PPP_MULTILINK=y
# CONFIG_PPPOE is not set
CONFIG_PPP_ASYNC=m
CONFIG_PPP_SYNC_TTY=m
# CONFIG_SLIP is not set
CONFIG_SLHC=y
CONFIG_USB_NET_DRIVERS=y
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_RTL8152 is not set
# CONFIG_USB_LAN78XX is not set
CONFIG_USB_USBNET=m
# CONFIG_USB_NET_AX8817X is not set
# CONFIG_USB_NET_AX88179_178A is not set
CONFIG_USB_NET_CDCETHER=m
# CONFIG_USB_NET_CDC_EEM is not set
# CONFIG_USB_NET_CDC_NCM is not set
# CONFIG_USB_NET_HUAWEI_CDC_NCM is not set
# CONFIG_USB_NET_CDC_MBIM is not set
# CONFIG_USB_NET_DM9601 is not set
# CONFIG_USB_NET_SR9700 is not set
# CONFIG_USB_NET_SR9800 is not set
# CONFIG_USB_NET_SMSC75XX is not set
# CONFIG_USB_NET_SMSC95XX is not set
# CONFIG_USB_NET_GL620A is not set
# CONFIG_USB_NET_NET1080 is not set
# CONFIG_USB_NET_PLUSB is not set
# CONFIG_USB_NET_MCS7830 is not set
# CONFIG_USB_NET_RNDIS_HOST is not set
# CONFIG_USB_NET_CDC_SUBSET is not set
# CONFIG_USB_NET_ZAURUS is not set
# CONFIG_USB_NET_CX82310_ETH is not set
# CONFIG_USB_NET_KALMIA is not set
# CONFIG_USB_NET_QMI_WWAN is not set
# CONFIG_USB_HSO is not set
# CONFIG_USB_NET_INT51X1 is not set
# CONFIG_USB_IPHETH is not set
# CONFIG_USB_SIERRA_NET is not set
# CONFIG_USB_VL600 is not set
# CONFIG_USB_NET_CH9200 is not set
CONFIG_WLAN=y
CONFIG_WLAN_VENDOR_ADMTEK=y
# CONFIG_ADM8211 is not set
CONFIG_WLAN_VENDOR_ATH=y
# CONFIG_ATH_DEBUG is not set
# CONFIG_ATH5K is not set
# CONFIG_ATH5K_PCI is not set
# CONFIG_ATH9K is not set
# CONFIG_ATH9K_HTC is not set
# CONFIG_CARL9170 is not set
# CONFIG_ATH6KL is not set
# CONFIG_AR5523 is not set
# CONFIG_WIL6210 is not set
# CONFIG_ATH10K is not set
# CONFIG_WCN36XX is not set
CONFIG_WLAN_VENDOR_ATMEL=y
# CONFIG_ATMEL is not set
# CONFIG_AT76C50X_USB is not set
CONFIG_WLAN_VENDOR_BROADCOM=y
# CONFIG_B43 is not set
# CONFIG_B43LEGACY is not set
# CONFIG_BRCMSMAC is not set
# CONFIG_BRCMFMAC is not set
CONFIG_WLAN_VENDOR_CISCO=y
# CONFIG_AIRO is not set
CONFIG_WLAN_VENDOR_INTEL=y
# CONFIG_IPW2100 is not set
# CONFIG_IPW2200 is not set
# CONFIG_IWL4965 is not set
# CONFIG_IWL3945 is not set
CONFIG_IWLWIFI=m
CONFIG_IWLWIFI_LEDS=y
CONFIG_IWLDVM=m
# CONFIG_IWLMVM is not set
CONFIG_IWLWIFI_OPMODE_MODULAR=y

#
# Debugging Options
#
# CONFIG_IWLWIFI_DEBUG is not set
CONFIG_IWLWIFI_DEBUGFS=y
CONFIG_IWLWIFI_DEVICE_TRACING=y
CONFIG_WLAN_VENDOR_INTERSIL=y
# CONFIG_HOSTAP is not set
# CONFIG_HERMES is not set
# CONFIG_P54_COMMON is not set
# CONFIG_PRISM54 is not set
CONFIG_WLAN_VENDOR_MARVELL=y
# CONFIG_LIBERTAS is not set
# CONFIG_LIBERTAS_THINFIRM is not set
# CONFIG_MWIFIEX is not set
# CONFIG_MWL8K is not set
CONFIG_WLAN_VENDOR_MEDIATEK=y
# CONFIG_MT7601U is not set
CONFIG_WLAN_VENDOR_RALINK=y
# CONFIG_RT2X00 is not set
CONFIG_WLAN_VENDOR_REALTEK=y
# CONFIG_RTL8180 is not set
# CONFIG_RTL8187 is not set
# CONFIG_RTL_CARDS is not set
# CONFIG_RTL8XXXU is not set
CONFIG_WLAN_VENDOR_RSI=y
# CONFIG_RSI_91X is not set
CONFIG_WLAN_VENDOR_ST=y
# CONFIG_CW1200 is not set
CONFIG_WLAN_VENDOR_TI=y
# CONFIG_WL1251 is not set
# CONFIG_WL12XX is not set
# CONFIG_WL18XX is not set
# CONFIG_WLCORE is not set
CONFIG_WLAN_VENDOR_ZYDAS=y
# CONFIG_USB_ZD1201 is not set
# CONFIG_ZD1211RW is not set
# CONFIG_MAC80211_HWSIM is not set
# CONFIG_USB_NET_RNDIS_WLAN is not set

#
# Enable WiMAX (Networking options) to see the WiMAX drivers
#
CONFIG_WAN=y
# CONFIG_HDLC is not set
# CONFIG_DLCI is not set
# CONFIG_SBNI is not set
CONFIG_XEN_NETDEV_FRONTEND=y
# CONFIG_XEN_NETDEV_BACKEND is not set
# CONFIG_VMXNET3 is not set
# CONFIG_FUJITSU_ES is not set
CONFIG_ISDN=y
# CONFIG_ISDN_I4L is not set
# CONFIG_ISDN_CAPI is not set
# CONFIG_ISDN_DRV_GIGASET is not set
# CONFIG_HYSDN is not set
# CONFIG_MISDN is not set
# CONFIG_NVM is not set

#
# Input device support
#
CONFIG_INPUT=y
CONFIG_INPUT_LEDS=y
# CONFIG_INPUT_FF_MEMLESS is not set
# CONFIG_INPUT_POLLDEV is not set
CONFIG_INPUT_SPARSEKMAP=m
# CONFIG_INPUT_MATRIXKMAP is not set

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_JOYDEV=m
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
# CONFIG_KEYBOARD_ADP5520 is not set
# CONFIG_KEYBOARD_ADP5588 is not set
# CONFIG_KEYBOARD_ADP5589 is not set
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_QT1070 is not set
# CONFIG_KEYBOARD_QT2160 is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_GPIO is not set
# CONFIG_KEYBOARD_GPIO_POLLED is not set
# CONFIG_KEYBOARD_TCA6416 is not set
# CONFIG_KEYBOARD_TCA8418 is not set
# CONFIG_KEYBOARD_MATRIX is not set
# CONFIG_KEYBOARD_LM8323 is not set
# CONFIG_KEYBOARD_LM8333 is not set
# CONFIG_KEYBOARD_MAX7359 is not set
# CONFIG_KEYBOARD_MCS is not set
# CONFIG_KEYBOARD_MPR121 is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_OPENCORES is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_XTKBD is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=m
CONFIG_MOUSE_PS2_ALPS=y
CONFIG_MOUSE_PS2_BYD=y
CONFIG_MOUSE_PS2_LOGIPS2PP=y
CONFIG_MOUSE_PS2_SYNAPTICS=y
CONFIG_MOUSE_PS2_CYPRESS=y
CONFIG_MOUSE_PS2_LIFEBOOK=y
CONFIG_MOUSE_PS2_TRACKPOINT=y
CONFIG_MOUSE_PS2_ELANTECH=y
CONFIG_MOUSE_PS2_SENTELIC=y
CONFIG_MOUSE_PS2_TOUCHKIT=y
CONFIG_MOUSE_PS2_FOCALTECH=y
# CONFIG_MOUSE_PS2_VMMOUSE is not set
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_APPLETOUCH is not set
# CONFIG_MOUSE_BCM5974 is not set
# CONFIG_MOUSE_CYAPA is not set
# CONFIG_MOUSE_ELAN_I2C is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_MOUSE_GPIO is not set
# CONFIG_MOUSE_SYNAPTICS_I2C is not set
# CONFIG_MOUSE_SYNAPTICS_USB is not set
CONFIG_INPUT_JOYSTICK=y
# CONFIG_JOYSTICK_ANALOG is not set
# CONFIG_JOYSTICK_A3D is not set
# CONFIG_JOYSTICK_ADI is not set
# CONFIG_JOYSTICK_COBRA is not set
# CONFIG_JOYSTICK_GF2K is not set
# CONFIG_JOYSTICK_GRIP is not set
# CONFIG_JOYSTICK_GRIP_MP is not set
# CONFIG_JOYSTICK_GUILLEMOT is not set
# CONFIG_JOYSTICK_INTERACT is not set
# CONFIG_JOYSTICK_SIDEWINDER is not set
# CONFIG_JOYSTICK_TMDC is not set
# CONFIG_JOYSTICK_IFORCE is not set
# CONFIG_JOYSTICK_WARRIOR is not set
# CONFIG_JOYSTICK_MAGELLAN is not set
# CONFIG_JOYSTICK_SPACEORB is not set
# CONFIG_JOYSTICK_SPACEBALL is not set
# CONFIG_JOYSTICK_STINGER is not set
# CONFIG_JOYSTICK_TWIDJOY is not set
# CONFIG_JOYSTICK_ZHENHUA is not set
# CONFIG_JOYSTICK_DB9 is not set
# CONFIG_JOYSTICK_GAMECON is not set
# CONFIG_JOYSTICK_TURBOGRAFX is not set
# CONFIG_JOYSTICK_AS5011 is not set
# CONFIG_JOYSTICK_JOYDUMP is not set
# CONFIG_JOYSTICK_XPAD is not set
# CONFIG_JOYSTICK_WALKERA0701 is not set
CONFIG_INPUT_TABLET=y
# CONFIG_TABLET_USB_ACECAD is not set
# CONFIG_TABLET_USB_AIPTEK is not set
# CONFIG_TABLET_USB_GTCO is not set
# CONFIG_TABLET_USB_HANWANG is not set
# CONFIG_TABLET_USB_KBTAB is not set
# CONFIG_TABLET_SERIAL_WACOM4 is not set
CONFIG_INPUT_TOUCHSCREEN=y
CONFIG_TOUCHSCREEN_PROPERTIES=y
# CONFIG_TOUCHSCREEN_88PM860X is not set
# CONFIG_TOUCHSCREEN_ADS7846 is not set
# CONFIG_TOUCHSCREEN_AD7877 is not set
# CONFIG_TOUCHSCREEN_AD7879 is not set
# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
# CONFIG_TOUCHSCREEN_AUO_PIXCIR is not set
# CONFIG_TOUCHSCREEN_BU21013 is not set
# CONFIG_TOUCHSCREEN_CY8CTMG110 is not set
# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
# CONFIG_TOUCHSCREEN_CYTTSP4_CORE is not set
# CONFIG_TOUCHSCREEN_DA9034 is not set
# CONFIG_TOUCHSCREEN_DA9052 is not set
# CONFIG_TOUCHSCREEN_DYNAPRO is not set
# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
# CONFIG_TOUCHSCREEN_EETI is not set
# CONFIG_TOUCHSCREEN_EGALAX_SERIAL is not set
# CONFIG_TOUCHSCREEN_FT6236 is not set
# CONFIG_TOUCHSCREEN_FUJITSU is not set
# CONFIG_TOUCHSCREEN_GOODIX is not set
# CONFIG_TOUCHSCREEN_ILI210X is not set
# CONFIG_TOUCHSCREEN_GUNZE is not set
# CONFIG_TOUCHSCREEN_ELAN is not set
# CONFIG_TOUCHSCREEN_ELO is not set
# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
# CONFIG_TOUCHSCREEN_WACOM_I2C is not set
# CONFIG_TOUCHSCREEN_MAX11801 is not set
# CONFIG_TOUCHSCREEN_MCS5000 is not set
# CONFIG_TOUCHSCREEN_MMS114 is not set
# CONFIG_TOUCHSCREEN_MELFAS_MIP4 is not set
# CONFIG_TOUCHSCREEN_MTOUCH is not set
# CONFIG_TOUCHSCREEN_INEXIO is not set
# CONFIG_TOUCHSCREEN_MK712 is not set
# CONFIG_TOUCHSCREEN_PENMOUNT is not set
# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
# CONFIG_TOUCHSCREEN_PIXCIR is not set
# CONFIG_TOUCHSCREEN_WDT87XX_I2C is not set
# CONFIG_TOUCHSCREEN_WM831X is not set
# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
# CONFIG_TOUCHSCREEN_TSC2004 is not set
# CONFIG_TOUCHSCREEN_TSC2005 is not set
# CONFIG_TOUCHSCREEN_TSC2007 is not set
# CONFIG_TOUCHSCREEN_PCAP is not set
# CONFIG_TOUCHSCREEN_ST1232 is not set
# CONFIG_TOUCHSCREEN_SUR40 is not set
# CONFIG_TOUCHSCREEN_SX8654 is not set
# CONFIG_TOUCHSCREEN_TPS6507X is not set
# CONFIG_TOUCHSCREEN_ZFORCE is not set
# CONFIG_TOUCHSCREEN_ROHM_BU21023 is not set
CONFIG_INPUT_MISC=y
# CONFIG_INPUT_88PM860X_ONKEY is not set
# CONFIG_INPUT_AD714X is not set
# CONFIG_INPUT_BMA150 is not set
# CONFIG_INPUT_E3X0_BUTTON is not set
# CONFIG_INPUT_PCSPKR is not set
# CONFIG_INPUT_MAX77693_HAPTIC is not set
# CONFIG_INPUT_MAX8925_ONKEY is not set
# CONFIG_INPUT_MAX8997_HAPTIC is not set
# CONFIG_INPUT_MMA8450 is not set
# CONFIG_INPUT_MPU3050 is not set
# CONFIG_INPUT_APANEL is not set
# CONFIG_INPUT_GP2A is not set
# CONFIG_INPUT_GPIO_BEEPER is not set
# CONFIG_INPUT_GPIO_TILT_POLLED is not set
# CONFIG_INPUT_ATLAS_BTNS is not set
# CONFIG_INPUT_ATI_REMOTE2 is not set
# CONFIG_INPUT_KEYSPAN_REMOTE is not set
# CONFIG_INPUT_KXTJ9 is not set
# CONFIG_INPUT_POWERMATE is not set
# CONFIG_INPUT_YEALINK is not set
# CONFIG_INPUT_CM109 is not set
# CONFIG_INPUT_REGULATOR_HAPTIC is not set
# CONFIG_INPUT_TWL6040_VIBRA is not set
CONFIG_INPUT_UINPUT=y
# CONFIG_INPUT_PALMAS_PWRBUTTON is not set
# CONFIG_INPUT_PCF8574 is not set
# CONFIG_INPUT_PWM_BEEPER is not set
# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
# CONFIG_INPUT_DA9052_ONKEY is not set
# CONFIG_INPUT_DA9055_ONKEY is not set
# CONFIG_INPUT_WM831X_ON is not set
# CONFIG_INPUT_PCAP is not set
# CONFIG_INPUT_ADXL34X is not set
# CONFIG_INPUT_IMS_PCU is not set
# CONFIG_INPUT_CMA3000 is not set
# CONFIG_INPUT_XEN_KBDDEV_FRONTEND is not set
# CONFIG_INPUT_IDEAPAD_SLIDEBAR is not set
# CONFIG_INPUT_DRV260X_HAPTICS is not set
# CONFIG_INPUT_DRV2665_HAPTICS is not set
# CONFIG_INPUT_DRV2667_HAPTICS is not set
# CONFIG_RMI4_CORE is not set

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y
CONFIG_SERIO_I8042=y
# CONFIG_SERIO_SERPORT is not set
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PARKBD is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
CONFIG_SERIO_RAW=m
# CONFIG_SERIO_ALTERA_PS2 is not set
# CONFIG_SERIO_PS2MULT is not set
# CONFIG_SERIO_ARC_PS2 is not set
# CONFIG_USERIO is not set
# CONFIG_GAMEPORT is not set

#
# Character devices
#
CONFIG_TTY=y
CONFIG_VT=y
CONFIG_CONSOLE_TRANSLATIONS=y
CONFIG_VT_CONSOLE=y
CONFIG_VT_CONSOLE_SLEEP=y
CONFIG_HW_CONSOLE=y
CONFIG_VT_HW_CONSOLE_BINDING=y
CONFIG_UNIX98_PTYS=y
CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=0
CONFIG_SERIAL_NONSTANDARD=y
# CONFIG_ROCKETPORT is not set
# CONFIG_CYCLADES is not set
# CONFIG_MOXA_INTELLIO is not set
# CONFIG_MOXA_SMARTIO is not set
# CONFIG_SYNCLINK is not set
# CONFIG_SYNCLINKMP is not set
# CONFIG_SYNCLINK_GT is not set
# CONFIG_NOZOMI is not set
# CONFIG_ISI is not set
# CONFIG_N_HDLC is not set
# CONFIG_N_GSM is not set
# CONFIG_TRACE_SINK is not set
CONFIG_DEVMEM=y
# CONFIG_DEVKMEM is not set

#
# Serial drivers
#
CONFIG_SERIAL_EARLYCON=y
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_DEPRECATED_OPTIONS=y
CONFIG_SERIAL_8250_PNP=y
# CONFIG_SERIAL_8250_FINTEK is not set
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_SERIAL_8250_DMA=y
CONFIG_SERIAL_8250_PCI=y
CONFIG_SERIAL_8250_NR_UARTS=48
CONFIG_SERIAL_8250_RUNTIME_UARTS=32
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_MANY_PORTS=y
CONFIG_SERIAL_8250_SHARE_IRQ=y
# CONFIG_SERIAL_8250_DETECT_IRQ is not set
CONFIG_SERIAL_8250_RSA=y
# CONFIG_SERIAL_8250_FSL is not set
# CONFIG_SERIAL_8250_DW is not set
# CONFIG_SERIAL_8250_RT288X is not set
# CONFIG_SERIAL_8250_MID is not set
# CONFIG_SERIAL_8250_MOXA is not set

#
# Non-8250 serial port support
#
CONFIG_SERIAL_KGDB_NMI=y
# CONFIG_SERIAL_MAX3100 is not set
CONFIG_SERIAL_MAX310X=y
# CONFIG_SERIAL_UARTLITE is not set
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
CONFIG_CONSOLE_POLL=y
# CONFIG_SERIAL_JSM is not set
CONFIG_SERIAL_SCCNXP=y
CONFIG_SERIAL_SCCNXP_CONSOLE=y
# CONFIG_SERIAL_SC16IS7XX is not set
# CONFIG_SERIAL_ALTERA_JTAGUART is not set
# CONFIG_SERIAL_ALTERA_UART is not set
# CONFIG_SERIAL_IFX6X60 is not set
# CONFIG_SERIAL_ARC is not set
# CONFIG_SERIAL_RP2 is not set
# CONFIG_SERIAL_FSL_LPUART is not set
CONFIG_TTY_PRINTK=y
CONFIG_PRINTER=m
# CONFIG_LP_CONSOLE is not set
CONFIG_PPDEV=m
CONFIG_HVC_DRIVER=y
CONFIG_HVC_IRQ=y
CONFIG_HVC_XEN=y
CONFIG_HVC_XEN_FRONTEND=y
# CONFIG_VIRTIO_CONSOLE is not set
# CONFIG_IPMI_HANDLER is not set
CONFIG_HW_RANDOM=y
# CONFIG_HW_RANDOM_TIMERIOMEM is not set
# CONFIG_HW_RANDOM_INTEL is not set
# CONFIG_HW_RANDOM_AMD is not set
# CONFIG_HW_RANDOM_VIA is not set
# CONFIG_HW_RANDOM_VIRTIO is not set
# CONFIG_HW_RANDOM_TPM is not set
# CONFIG_NVRAM is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_MWAVE is not set
# CONFIG_RAW_DRIVER is not set
CONFIG_HPET=y
CONFIG_HPET_MMAP=y
CONFIG_HPET_MMAP_DEFAULT=y
# CONFIG_HANGCHECK_TIMER is not set
CONFIG_TCG_TPM=y
# CONFIG_TCG_TIS is not set
# CONFIG_TCG_TIS_I2C_ATMEL is not set
# CONFIG_TCG_TIS_I2C_INFINEON is not set
# CONFIG_TCG_TIS_I2C_NUVOTON is not set
# CONFIG_TCG_NSC is not set
# CONFIG_TCG_ATMEL is not set
# CONFIG_TCG_INFINEON is not set
# CONFIG_TCG_XEN is not set
# CONFIG_TCG_CRB is not set
# CONFIG_TCG_TIS_ST33ZP24 is not set
# CONFIG_TELCLOCK is not set
CONFIG_DEVPORT=y
# CONFIG_XILLYBUS is not set

#
# I2C support
#
CONFIG_I2C=y
CONFIG_ACPI_I2C_OPREGION=y
CONFIG_I2C_BOARDINFO=y
CONFIG_I2C_COMPAT=y
# CONFIG_I2C_CHARDEV is not set
CONFIG_I2C_MUX=m

#
# Multiplexer I2C Chip support
#
# CONFIG_I2C_MUX_GPIO is not set
# CONFIG_I2C_MUX_PCA9541 is not set
# CONFIG_I2C_MUX_PCA954x is not set
# CONFIG_I2C_MUX_REG is not set
CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_ALGOBIT=m

#
# I2C Hardware Bus support
#

#
# PC SMBus host controller drivers
#
# CONFIG_I2C_ALI1535 is not set
# CONFIG_I2C_ALI1563 is not set
# CONFIG_I2C_ALI15X3 is not set
# CONFIG_I2C_AMD756 is not set
# CONFIG_I2C_AMD8111 is not set
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_ISCH is not set
# CONFIG_I2C_ISMT is not set
# CONFIG_I2C_PIIX4 is not set
# CONFIG_I2C_NFORCE2 is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set

#
# ACPI drivers
#
# CONFIG_I2C_SCMI is not set

#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
# CONFIG_I2C_CBUS_GPIO is not set
# CONFIG_I2C_DESIGNWARE_PCI is not set
# CONFIG_I2C_GPIO is not set
# CONFIG_I2C_OCORES is not set
# CONFIG_I2C_PCA_PLATFORM is not set
# CONFIG_I2C_PXA_PCI is not set
# CONFIG_I2C_SIMTEC is not set
# CONFIG_I2C_XILINX is not set

#
# External I2C/SMBus adapter drivers
#
# CONFIG_I2C_DIOLAN_U2C is not set
# CONFIG_I2C_PARPORT is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
# CONFIG_I2C_TAOS_EVM is not set
# CONFIG_I2C_TINY_USB is not set

#
# Other I2C/SMBus bus drivers
#
# CONFIG_I2C_STUB is not set
# CONFIG_I2C_SLAVE is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
CONFIG_SPI=y
# CONFIG_SPI_DEBUG is not set
CONFIG_SPI_MASTER=y

#
# SPI Master Controller Drivers
#
# CONFIG_SPI_ALTERA is not set
# CONFIG_SPI_AXI_SPI_ENGINE is not set
# CONFIG_SPI_BITBANG is not set
# CONFIG_SPI_BUTTERFLY is not set
# CONFIG_SPI_CADENCE is not set
# CONFIG_SPI_DESIGNWARE is not set
# CONFIG_SPI_GPIO is not set
# CONFIG_SPI_LM70_LLP is not set
# CONFIG_SPI_OC_TINY is not set
# CONFIG_SPI_PXA2XX is not set
# CONFIG_SPI_PXA2XX_PCI is not set
# CONFIG_SPI_ROCKCHIP is not set
# CONFIG_SPI_SC18IS602 is not set
# CONFIG_SPI_XCOMM is not set
# CONFIG_SPI_XILINX is not set
# CONFIG_SPI_ZYNQMP_GQSPI is not set

#
# SPI Protocol Masters
#
# CONFIG_SPI_SPIDEV is not set
# CONFIG_SPI_LOOPBACK_TEST is not set
# CONFIG_SPI_TLE62X0 is not set
# CONFIG_SPMI is not set
# CONFIG_HSI is not set

#
# PPS support
#
# CONFIG_PPS is not set

#
# PPS generators support
#

#
# PTP clock support
#
# CONFIG_PTP_1588_CLOCK is not set

#
# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
#
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
CONFIG_GPIOLIB=y
CONFIG_GPIO_DEVRES=y
CONFIG_GPIO_ACPI=y
CONFIG_GPIOLIB_IRQCHIP=y
# CONFIG_DEBUG_GPIO is not set
# CONFIG_GPIO_SYSFS is not set

#
# Memory mapped GPIO drivers
#
# CONFIG_GPIO_AMDPT is not set
# CONFIG_GPIO_DWAPB is not set
# CONFIG_GPIO_GENERIC_PLATFORM is not set
# CONFIG_GPIO_ICH is not set
# CONFIG_GPIO_LYNXPOINT is not set
# CONFIG_GPIO_VX855 is not set
# CONFIG_GPIO_ZX is not set

#
# Port-mapped I/O GPIO drivers
#
# CONFIG_GPIO_F7188X is not set
# CONFIG_GPIO_IT87 is not set
# CONFIG_GPIO_SCH is not set
# CONFIG_GPIO_SCH311X is not set

#
# I2C GPIO expanders
#
# CONFIG_GPIO_ADP5588 is not set
# CONFIG_GPIO_MAX7300 is not set
# CONFIG_GPIO_MAX732X is not set
# CONFIG_GPIO_PCA953X is not set
# CONFIG_GPIO_PCF857X is not set
CONFIG_GPIO_SX150X=y
# CONFIG_GPIO_TPIC2810 is not set

#
# MFD GPIO expanders
#
# CONFIG_GPIO_ADP5520 is not set
# CONFIG_GPIO_DA9052 is not set
# CONFIG_GPIO_DA9055 is not set
# CONFIG_GPIO_PALMAS is not set
CONFIG_GPIO_RC5T583=y
CONFIG_GPIO_TPS6586X=y
CONFIG_GPIO_TPS65910=y
# CONFIG_GPIO_TPS65912 is not set
# CONFIG_GPIO_TWL6040 is not set
# CONFIG_GPIO_WM831X is not set
# CONFIG_GPIO_WM8350 is not set
# CONFIG_GPIO_WM8994 is not set

#
# PCI GPIO expanders
#
# CONFIG_GPIO_AMD8111 is not set
# CONFIG_GPIO_BT8XX is not set
# CONFIG_GPIO_INTEL_MID is not set
# CONFIG_GPIO_ML_IOH is not set
# CONFIG_GPIO_RDC321X is not set

#
# SPI GPIO expanders
#
# CONFIG_GPIO_MAX7301 is not set
# CONFIG_GPIO_MC33880 is not set
# CONFIG_GPIO_PISOSR is not set

#
# SPI or I2C GPIO expanders
#
# CONFIG_GPIO_MCP23S08 is not set

#
# USB GPIO expanders
#
# CONFIG_W1 is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
# CONFIG_PDA_POWER is not set
# CONFIG_MAX8925_POWER is not set
# CONFIG_WM831X_BACKUP is not set
# CONFIG_WM831X_POWER is not set
# CONFIG_WM8350_POWER is not set
# CONFIG_TEST_POWER is not set
# CONFIG_BATTERY_88PM860X is not set
# CONFIG_BATTERY_DS2780 is not set
# CONFIG_BATTERY_DS2781 is not set
# CONFIG_BATTERY_DS2782 is not set
# CONFIG_BATTERY_SBS is not set
# CONFIG_BATTERY_BQ27XXX is not set
# CONFIG_BATTERY_DA9030 is not set
# CONFIG_BATTERY_DA9052 is not set
# CONFIG_BATTERY_MAX17040 is not set
# CONFIG_BATTERY_MAX17042 is not set
# CONFIG_CHARGER_MAX8903 is not set
# CONFIG_CHARGER_LP8727 is not set
# CONFIG_CHARGER_GPIO is not set
CONFIG_CHARGER_MANAGER=y
# CONFIG_CHARGER_MAX77693 is not set
# CONFIG_CHARGER_BQ2415X is not set
# CONFIG_CHARGER_BQ24190 is not set
# CONFIG_CHARGER_BQ24257 is not set
# CONFIG_CHARGER_BQ24735 is not set
# CONFIG_CHARGER_BQ25890 is not set
# CONFIG_CHARGER_SMB347 is not set
# CONFIG_CHARGER_TPS65090 is not set
# CONFIG_BATTERY_GAUGE_LTC2941 is not set
# CONFIG_CHARGER_RT9455 is not set
# CONFIG_POWER_RESET is not set
CONFIG_POWER_AVS=y
CONFIG_HWMON=y
# CONFIG_HWMON_VID is not set
# CONFIG_HWMON_DEBUG_CHIP is not set

#
# Native drivers
#
# CONFIG_SENSORS_ABITUGURU is not set
# CONFIG_SENSORS_ABITUGURU3 is not set
# CONFIG_SENSORS_AD7314 is not set
# CONFIG_SENSORS_AD7414 is not set
# CONFIG_SENSORS_AD7418 is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1029 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ADT7310 is not set
# CONFIG_SENSORS_ADT7410 is not set
# CONFIG_SENSORS_ADT7411 is not set
# CONFIG_SENSORS_ADT7462 is not set
# CONFIG_SENSORS_ADT7470 is not set
# CONFIG_SENSORS_ADT7475 is not set
# CONFIG_SENSORS_ASC7621 is not set
# CONFIG_SENSORS_K8TEMP is not set
# CONFIG_SENSORS_K10TEMP is not set
# CONFIG_SENSORS_FAM15H_POWER is not set
# CONFIG_SENSORS_APPLESMC is not set
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_DS620 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_DELL_SMM is not set
# CONFIG_SENSORS_DA9052_ADC is not set
# CONFIG_SENSORS_DA9055 is not set
# CONFIG_SENSORS_I5K_AMB is not set
# CONFIG_SENSORS_F71805F is not set
# CONFIG_SENSORS_F71882FG is not set
# CONFIG_SENSORS_F75375S is not set
# CONFIG_SENSORS_FSCHMD is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_G760A is not set
# CONFIG_SENSORS_G762 is not set
# CONFIG_SENSORS_GPIO_FAN is not set
# CONFIG_SENSORS_HIH6130 is not set
# CONFIG_SENSORS_I5500 is not set
# CONFIG_SENSORS_CORETEMP is not set
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_JC42 is not set
# CONFIG_SENSORS_POWR1220 is not set
# CONFIG_SENSORS_LINEAGE is not set
# CONFIG_SENSORS_LTC2945 is not set
# CONFIG_SENSORS_LTC2990 is not set
# CONFIG_SENSORS_LTC4151 is not set
# CONFIG_SENSORS_LTC4215 is not set
# CONFIG_SENSORS_LTC4222 is not set
# CONFIG_SENSORS_LTC4245 is not set
# CONFIG_SENSORS_LTC4260 is not set
# CONFIG_SENSORS_LTC4261 is not set
# CONFIG_SENSORS_MAX1111 is not set
# CONFIG_SENSORS_MAX16065 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_MAX1668 is not set
# CONFIG_SENSORS_MAX197 is not set
# CONFIG_SENSORS_MAX31722 is not set
# CONFIG_SENSORS_MAX6639 is not set
# CONFIG_SENSORS_MAX6642 is not set
# CONFIG_SENSORS_MAX6650 is not set
# CONFIG_SENSORS_MAX6697 is not set
# CONFIG_SENSORS_MAX31790 is not set
# CONFIG_SENSORS_MCP3021 is not set
# CONFIG_SENSORS_ADCXX is not set
# CONFIG_SENSORS_LM63 is not set
# CONFIG_SENSORS_LM70 is not set
# CONFIG_SENSORS_LM73 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_LM93 is not set
# CONFIG_SENSORS_LM95234 is not set
# CONFIG_SENSORS_LM95241 is not set
# CONFIG_SENSORS_LM95245 is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_PC87427 is not set
# CONFIG_SENSORS_NTC_THERMISTOR is not set
# CONFIG_SENSORS_NCT6683 is not set
# CONFIG_SENSORS_NCT6775 is not set
# CONFIG_SENSORS_NCT7802 is not set
# CONFIG_SENSORS_NCT7904 is not set
# CONFIG_SENSORS_PCF8591 is not set
# CONFIG_PMBUS is not set
# CONFIG_SENSORS_SHT15 is not set
# CONFIG_SENSORS_SHT21 is not set
# CONFIG_SENSORS_SHTC1 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_DME1737 is not set
# CONFIG_SENSORS_EMC1403 is not set
# CONFIG_SENSORS_EMC2103 is not set
# CONFIG_SENSORS_EMC6W201 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_SMSC47M192 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_SCH56XX_COMMON is not set
# CONFIG_SENSORS_SCH5627 is not set
# CONFIG_SENSORS_SCH5636 is not set
# CONFIG_SENSORS_SMM665 is not set
# CONFIG_SENSORS_ADC128D818 is not set
# CONFIG_SENSORS_ADS1015 is not set
# CONFIG_SENSORS_ADS7828 is not set
# CONFIG_SENSORS_ADS7871 is not set
# CONFIG_SENSORS_AMC6821 is not set
# CONFIG_SENSORS_INA209 is not set
# CONFIG_SENSORS_INA2XX is not set
# CONFIG_SENSORS_TC74 is not set
# CONFIG_SENSORS_THMC50 is not set
# CONFIG_SENSORS_TMP102 is not set
# CONFIG_SENSORS_TMP103 is not set
# CONFIG_SENSORS_TMP401 is not set
# CONFIG_SENSORS_TMP421 is not set
# CONFIG_SENSORS_VIA_CPUTEMP is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_VT1211 is not set
# CONFIG_SENSORS_VT8231 is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83791D is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83793 is not set
# CONFIG_SENSORS_W83795 is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83L786NG is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_SENSORS_WM831X is not set
# CONFIG_SENSORS_WM8350 is not set

#
# ACPI drivers
#
# CONFIG_SENSORS_ACPI_POWER is not set
# CONFIG_SENSORS_ATK0110 is not set
CONFIG_THERMAL=y
CONFIG_THERMAL_HWMON=y
# CONFIG_THERMAL_WRITABLE_TRIPS is not set
CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set
# CONFIG_THERMAL_GOV_FAIR_SHARE is not set
CONFIG_THERMAL_GOV_STEP_WISE=y
# CONFIG_THERMAL_GOV_BANG_BANG is not set
CONFIG_THERMAL_GOV_USER_SPACE=y
# CONFIG_THERMAL_GOV_POWER_ALLOCATOR is not set
# CONFIG_THERMAL_EMULATION is not set
# CONFIG_INTEL_POWERCLAMP is not set
# CONFIG_X86_PKG_TEMP_THERMAL is not set
# CONFIG_INTEL_SOC_DTS_THERMAL is not set

#
# ACPI INT340X thermal drivers
#
# CONFIG_INT340X_THERMAL is not set
# CONFIG_INTEL_PCH_THERMAL is not set
CONFIG_WATCHDOG=y
CONFIG_WATCHDOG_CORE=y
# CONFIG_WATCHDOG_NOWAYOUT is not set
# CONFIG_WATCHDOG_SYSFS is not set

#
# Watchdog Device Drivers
#
# CONFIG_SOFT_WATCHDOG is not set
# CONFIG_DA9052_WATCHDOG is not set
# CONFIG_DA9055_WATCHDOG is not set
# CONFIG_WM831X_WATCHDOG is not set
# CONFIG_WM8350_WATCHDOG is not set
# CONFIG_XILINX_WATCHDOG is not set
# CONFIG_ZIIRAVE_WATCHDOG is not set
# CONFIG_CADENCE_WATCHDOG is not set
# CONFIG_DW_WATCHDOG is not set
# CONFIG_MAX63XX_WATCHDOG is not set
# CONFIG_ACQUIRE_WDT is not set
# CONFIG_ADVANTECH_WDT is not set
# CONFIG_ALIM1535_WDT is not set
# CONFIG_ALIM7101_WDT is not set
# CONFIG_F71808E_WDT is not set
# CONFIG_SP5100_TCO is not set
# CONFIG_SBC_FITPC2_WATCHDOG is not set
# CONFIG_EUROTECH_WDT is not set
# CONFIG_IB700_WDT is not set
# CONFIG_IBMASR is not set
# CONFIG_WAFER_WDT is not set
# CONFIG_I6300ESB_WDT is not set
# CONFIG_IE6XX_WDT is not set
# CONFIG_ITCO_WDT is not set
# CONFIG_IT8712F_WDT is not set
# CONFIG_IT87_WDT is not set
# CONFIG_HP_WATCHDOG is not set
# CONFIG_SC1200_WDT is not set
# CONFIG_PC87413_WDT is not set
# CONFIG_NV_TCO is not set
# CONFIG_60XX_WDT is not set
# CONFIG_CPU5_WDT is not set
# CONFIG_SMSC_SCH311X_WDT is not set
# CONFIG_SMSC37B787_WDT is not set
# CONFIG_VIA_WDT is not set
# CONFIG_W83627HF_WDT is not set
# CONFIG_W83877F_WDT is not set
# CONFIG_W83977F_WDT is not set
# CONFIG_MACHZ_WDT is not set
# CONFIG_SBC_EPX_C3_WATCHDOG is not set
# CONFIG_INTEL_MEI_WDT is not set
# CONFIG_NI903X_WDT is not set
# CONFIG_MEN_A21_WDT is not set
# CONFIG_XEN_WDT is not set

#
# PCI-based Watchdog Cards
#
# CONFIG_PCIPCWATCHDOG is not set
# CONFIG_WDTPCI is not set

#
# USB-based Watchdog Cards
#
# CONFIG_USBPCWATCHDOG is not set
CONFIG_SSB_POSSIBLE=y

#
# Sonics Silicon Backplane
#
# CONFIG_SSB is not set
CONFIG_BCMA_POSSIBLE=y

#
# Broadcom specific AMBA
#
# CONFIG_BCMA is not set

#
# Multifunction device drivers
#
CONFIG_MFD_CORE=y
# CONFIG_MFD_AS3711 is not set
CONFIG_PMIC_ADP5520=y
CONFIG_MFD_AAT2870_CORE=y
# CONFIG_MFD_BCM590XX is not set
# CONFIG_MFD_AXP20X_I2C is not set
# CONFIG_MFD_CROS_EC is not set
CONFIG_PMIC_DA903X=y
CONFIG_PMIC_DA9052=y
CONFIG_MFD_DA9052_SPI=y
CONFIG_MFD_DA9052_I2C=y
CONFIG_MFD_DA9055=y
# CONFIG_MFD_DA9062 is not set
# CONFIG_MFD_DA9063 is not set
# CONFIG_MFD_DA9150 is not set
# CONFIG_MFD_DLN2 is not set
# CONFIG_MFD_MC13XXX_SPI is not set
# CONFIG_MFD_MC13XXX_I2C is not set
# CONFIG_HTC_PASIC3 is not set
CONFIG_HTC_I2CPLD=y
CONFIG_LPC_ICH=m
# CONFIG_LPC_SCH is not set
# CONFIG_INTEL_SOC_PMIC is not set
# CONFIG_MFD_INTEL_LPSS_ACPI is not set
# CONFIG_MFD_INTEL_LPSS_PCI is not set
# CONFIG_MFD_JANZ_CMODIO is not set
# CONFIG_MFD_KEMPLD is not set
# CONFIG_MFD_88PM800 is not set
# CONFIG_MFD_88PM805 is not set
CONFIG_MFD_88PM860X=y
# CONFIG_MFD_MAX14577 is not set
CONFIG_MFD_MAX77693=y
# CONFIG_MFD_MAX77843 is not set
# CONFIG_MFD_MAX8907 is not set
CONFIG_MFD_MAX8925=y
CONFIG_MFD_MAX8997=y
CONFIG_MFD_MAX8998=y
# CONFIG_MFD_MT6397 is not set
# CONFIG_MFD_MENF21BMC is not set
CONFIG_EZX_PCAP=y
# CONFIG_MFD_VIPERBOARD is not set
# CONFIG_MFD_RETU is not set
# CONFIG_MFD_PCF50633 is not set
# CONFIG_MFD_RDC321X is not set
# CONFIG_MFD_RTSX_PCI is not set
# CONFIG_MFD_RT5033 is not set
# CONFIG_MFD_RTSX_USB is not set
CONFIG_MFD_RC5T583=y
# CONFIG_MFD_RN5T618 is not set
CONFIG_MFD_SEC_CORE=y
# CONFIG_MFD_SI476X_CORE is not set
# CONFIG_MFD_SM501 is not set
# CONFIG_MFD_SKY81452 is not set
CONFIG_MFD_SMSC=y
CONFIG_ABX500_CORE=y
CONFIG_AB3100_CORE=y
# CONFIG_AB3100_OTP is not set
# CONFIG_MFD_SYSCON is not set
# CONFIG_MFD_TI_AM335X_TSCADC is not set
# CONFIG_MFD_LP3943 is not set
CONFIG_MFD_LP8788=y
CONFIG_MFD_PALMAS=y
# CONFIG_TPS6105X is not set
# CONFIG_TPS65010 is not set
# CONFIG_TPS6507X is not set
# CONFIG_MFD_TPS65086 is not set
CONFIG_MFD_TPS65090=y
# CONFIG_MFD_TPS65217 is not set
# CONFIG_MFD_TPS65218 is not set
CONFIG_MFD_TPS6586X=y
CONFIG_MFD_TPS65910=y
CONFIG_MFD_TPS65912=y
CONFIG_MFD_TPS65912_I2C=y
CONFIG_MFD_TPS65912_SPI=y
# CONFIG_MFD_TPS80031 is not set
# CONFIG_TWL4030_CORE is not set
CONFIG_TWL6040_CORE=y
# CONFIG_MFD_WL1273_CORE is not set
# CONFIG_MFD_LM3533 is not set
# CONFIG_MFD_TMIO is not set
# CONFIG_MFD_VX855 is not set
# CONFIG_MFD_ARIZONA_I2C is not set
# CONFIG_MFD_ARIZONA_SPI is not set
CONFIG_MFD_WM8400=y
CONFIG_MFD_WM831X=y
CONFIG_MFD_WM831X_I2C=y
CONFIG_MFD_WM831X_SPI=y
CONFIG_MFD_WM8350=y
CONFIG_MFD_WM8350_I2C=y
CONFIG_MFD_WM8994=y
CONFIG_REGULATOR=y
# CONFIG_REGULATOR_DEBUG is not set
# CONFIG_REGULATOR_FIXED_VOLTAGE is not set
# CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set
# CONFIG_REGULATOR_USERSPACE_CONSUMER is not set
CONFIG_REGULATOR_88PM8607=y
# CONFIG_REGULATOR_ACT8865 is not set
# CONFIG_REGULATOR_AD5398 is not set
# CONFIG_REGULATOR_AAT2870 is not set
# CONFIG_REGULATOR_AB3100 is not set
# CONFIG_REGULATOR_DA903X is not set
# CONFIG_REGULATOR_DA9052 is not set
# CONFIG_REGULATOR_DA9055 is not set
# CONFIG_REGULATOR_DA9210 is not set
# CONFIG_REGULATOR_DA9211 is not set
# CONFIG_REGULATOR_FAN53555 is not set
# CONFIG_REGULATOR_GPIO is not set
# CONFIG_REGULATOR_ISL9305 is not set
# CONFIG_REGULATOR_ISL6271A is not set
# CONFIG_REGULATOR_LP3971 is not set
# CONFIG_REGULATOR_LP3972 is not set
CONFIG_REGULATOR_LP872X=y
# CONFIG_REGULATOR_LP8755 is not set
CONFIG_REGULATOR_LP8788=y
# CONFIG_REGULATOR_LTC3589 is not set
# CONFIG_REGULATOR_MAX1586 is not set
# CONFIG_REGULATOR_MAX8649 is not set
# CONFIG_REGULATOR_MAX8660 is not set
# CONFIG_REGULATOR_MAX8925 is not set
# CONFIG_REGULATOR_MAX8952 is not set
# CONFIG_REGULATOR_MAX8997 is not set
# CONFIG_REGULATOR_MAX8998 is not set
# CONFIG_REGULATOR_MAX77693 is not set
# CONFIG_REGULATOR_MT6311 is not set
# CONFIG_REGULATOR_PALMAS is not set
# CONFIG_REGULATOR_PCAP is not set
# CONFIG_REGULATOR_PFUZE100 is not set
# CONFIG_REGULATOR_PV88060 is not set
# CONFIG_REGULATOR_PV88080 is not set
# CONFIG_REGULATOR_PV88090 is not set
# CONFIG_REGULATOR_PWM is not set
# CONFIG_REGULATOR_RC5T583 is not set
# CONFIG_REGULATOR_S2MPA01 is not set
# CONFIG_REGULATOR_S2MPS11 is not set
# CONFIG_REGULATOR_S5M8767 is not set
# CONFIG_REGULATOR_TPS51632 is not set
# CONFIG_REGULATOR_TPS62360 is not set
# CONFIG_REGULATOR_TPS65023 is not set
# CONFIG_REGULATOR_TPS6507X is not set
# CONFIG_REGULATOR_TPS65090 is not set
# CONFIG_REGULATOR_TPS6524X is not set
# CONFIG_REGULATOR_TPS6586X is not set
# CONFIG_REGULATOR_TPS65910 is not set
# CONFIG_REGULATOR_TPS65912 is not set
# CONFIG_REGULATOR_WM831X is not set
# CONFIG_REGULATOR_WM8350 is not set
# CONFIG_REGULATOR_WM8400 is not set
# CONFIG_REGULATOR_WM8994 is not set
CONFIG_MEDIA_SUPPORT=m

#
# Multimedia core support
#
CONFIG_MEDIA_CAMERA_SUPPORT=y
CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
CONFIG_MEDIA_RADIO_SUPPORT=y
# CONFIG_MEDIA_SDR_SUPPORT is not set
CONFIG_MEDIA_RC_SUPPORT=y
# CONFIG_MEDIA_CONTROLLER is not set
CONFIG_VIDEO_DEV=m
CONFIG_VIDEO_V4L2=m
# CONFIG_VIDEO_ADV_DEBUG is not set
# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
CONFIG_VIDEOBUF2_CORE=m
CONFIG_VIDEOBUF2_MEMOPS=m
CONFIG_VIDEOBUF2_VMALLOC=m
CONFIG_DVB_CORE=m
CONFIG_DVB_NET=y
# CONFIG_TTPCI_EEPROM is not set
CONFIG_DVB_MAX_ADAPTERS=8
CONFIG_DVB_DYNAMIC_MINORS=y

#
# Media drivers
#
CONFIG_RC_CORE=m
# CONFIG_RC_MAP is not set
CONFIG_RC_DECODERS=y
# CONFIG_LIRC is not set
# CONFIG_IR_NEC_DECODER is not set
# CONFIG_IR_RC5_DECODER is not set
# CONFIG_IR_RC6_DECODER is not set
# CONFIG_IR_JVC_DECODER is not set
# CONFIG_IR_SONY_DECODER is not set
# CONFIG_IR_SANYO_DECODER is not set
# CONFIG_IR_SHARP_DECODER is not set
# CONFIG_IR_MCE_KBD_DECODER is not set
# CONFIG_IR_XMP_DECODER is not set
CONFIG_RC_DEVICES=y
# CONFIG_RC_ATI_REMOTE is not set
# CONFIG_IR_ENE is not set
# CONFIG_IR_HIX5HD2 is not set
# CONFIG_IR_IMON is not set
# CONFIG_IR_MCEUSB is not set
# CONFIG_IR_ITE_CIR is not set
# CONFIG_IR_FINTEK is not set
# CONFIG_IR_NUVOTON is not set
# CONFIG_IR_REDRAT3 is not set
# CONFIG_IR_STREAMZAP is not set
# CONFIG_IR_WINBOND_CIR is not set
# CONFIG_IR_IGORPLUGUSB is not set
# CONFIG_IR_IGUANA is not set
# CONFIG_IR_TTUSBIR is not set
# CONFIG_RC_LOOPBACK is not set
# CONFIG_IR_GPIO_CIR is not set
CONFIG_MEDIA_USB_SUPPORT=y

#
# Webcam devices
#
CONFIG_USB_VIDEO_CLASS=m
CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
# CONFIG_USB_GSPCA is not set
# CONFIG_USB_PWC is not set
# CONFIG_VIDEO_CPIA2 is not set
# CONFIG_USB_ZR364XX is not set
# CONFIG_USB_STKWEBCAM is not set
# CONFIG_USB_S2255 is not set
# CONFIG_VIDEO_USBTV is not set

#
# Analog TV USB devices
#
# CONFIG_VIDEO_PVRUSB2 is not set
# CONFIG_VIDEO_HDPVR is not set
# CONFIG_VIDEO_USBVISION is not set
# CONFIG_VIDEO_STK1160_COMMON is not set
# CONFIG_VIDEO_GO7007 is not set

#
# Analog/digital TV USB devices
#
# CONFIG_VIDEO_AU0828 is not set
# CONFIG_VIDEO_CX231XX is not set
# CONFIG_VIDEO_TM6000 is not set

#
# Digital TV USB devices
#
# CONFIG_DVB_USB is not set
# CONFIG_DVB_USB_V2 is not set
# CONFIG_DVB_TTUSB_BUDGET is not set
# CONFIG_DVB_TTUSB_DEC is not set
# CONFIG_SMS_USB_DRV is not set
# CONFIG_DVB_B2C2_FLEXCOP_USB is not set
# CONFIG_DVB_AS102 is not set

#
# Webcam, TV (analog/digital) USB devices
#
# CONFIG_VIDEO_EM28XX is not set
CONFIG_MEDIA_PCI_SUPPORT=y

#
# Media capture support
#
# CONFIG_VIDEO_SOLO6X10 is not set
# CONFIG_VIDEO_TW68 is not set
# CONFIG_VIDEO_TW686X is not set
# CONFIG_VIDEO_ZORAN is not set

#
# Media capture/analog TV support
#
# CONFIG_VIDEO_IVTV is not set
# CONFIG_VIDEO_HEXIUM_GEMINI is not set
# CONFIG_VIDEO_HEXIUM_ORION is not set
# CONFIG_VIDEO_MXB is not set
# CONFIG_VIDEO_DT3155 is not set

#
# Media capture/analog/hybrid TV support
#
# CONFIG_VIDEO_CX18 is not set
# CONFIG_VIDEO_CX23885 is not set
# CONFIG_VIDEO_CX25821 is not set
# CONFIG_VIDEO_CX88 is not set
# CONFIG_VIDEO_BT848 is not set
# CONFIG_VIDEO_SAA7134 is not set
# CONFIG_VIDEO_SAA7164 is not set

#
# Media digital TV PCI Adapters
#
# CONFIG_DVB_AV7110 is not set
# CONFIG_DVB_BUDGET_CORE is not set
# CONFIG_DVB_B2C2_FLEXCOP_PCI is not set
# CONFIG_DVB_PLUTO2 is not set
# CONFIG_DVB_DM1105 is not set
# CONFIG_DVB_PT1 is not set
# CONFIG_DVB_PT3 is not set
# CONFIG_MANTIS_CORE is not set
# CONFIG_DVB_NGENE is not set
# CONFIG_DVB_DDBRIDGE is not set
# CONFIG_DVB_SMIPCIE is not set
# CONFIG_DVB_NETUP_UNIDVB is not set
CONFIG_V4L_PLATFORM_DRIVERS=y
# CONFIG_VIDEO_CAFE_CCIC is not set
# CONFIG_SOC_CAMERA is not set
CONFIG_V4L_MEM2MEM_DRIVERS=y
# CONFIG_VIDEO_MEM2MEM_DEINTERLACE is not set
# CONFIG_VIDEO_SH_VEU is not set
CONFIG_V4L_TEST_DRIVERS=y
# CONFIG_VIDEO_VIVID is not set
# CONFIG_VIDEO_VIM2M is not set
# CONFIG_DVB_PLATFORM_DRIVERS is not set

#
# Supported MMC/SDIO adapters
#
# CONFIG_SMS_SDIO_DRV is not set
CONFIG_RADIO_ADAPTERS=y
CONFIG_RADIO_SI470X=y
# CONFIG_USB_SI470X is not set
# CONFIG_I2C_SI470X is not set
# CONFIG_RADIO_SI4713 is not set
# CONFIG_USB_MR800 is not set
# CONFIG_USB_DSBR is not set
# CONFIG_RADIO_MAXIRADIO is not set
# CONFIG_RADIO_SHARK is not set
# CONFIG_RADIO_SHARK2 is not set
# CONFIG_USB_KEENE is not set
# CONFIG_USB_RAREMONO is not set
# CONFIG_USB_MA901 is not set
# CONFIG_RADIO_TEA5764 is not set
# CONFIG_RADIO_SAA7706H is not set
# CONFIG_RADIO_TEF6862 is not set
# CONFIG_RADIO_WL1273 is not set

#
# Texas Instruments WL128x FM driver (ST based)
#
# CONFIG_CYPRESS_FIRMWARE is not set

#
# Media ancillary drivers (tuners, sensors, i2c, frontends)
#
CONFIG_MEDIA_SUBDRV_AUTOSELECT=y
CONFIG_MEDIA_ATTACH=y
CONFIG_VIDEO_IR_I2C=m

#
# Audio decoders, processors and mixers
#

#
# RDS decoders
#

#
# Video decoders
#

#
# Video and audio decoders
#

#
# Video encoders
#

#
# Camera sensor devices
#

#
# Flash devices
#

#
# Video improvement chips
#

#
# Audio/Video compression chips
#

#
# Miscellaneous helper chips
#

#
# Sensors used on soc_camera driver
#
CONFIG_MEDIA_TUNER=m
CONFIG_MEDIA_TUNER_SIMPLE=m
CONFIG_MEDIA_TUNER_TDA8290=m
CONFIG_MEDIA_TUNER_TDA827X=m
CONFIG_MEDIA_TUNER_TDA18271=m
CONFIG_MEDIA_TUNER_TDA9887=m
CONFIG_MEDIA_TUNER_TEA5761=m
CONFIG_MEDIA_TUNER_TEA5767=m
CONFIG_MEDIA_TUNER_MT20XX=m
CONFIG_MEDIA_TUNER_XC2028=m
CONFIG_MEDIA_TUNER_XC5000=m
CONFIG_MEDIA_TUNER_XC4000=m
CONFIG_MEDIA_TUNER_MC44S803=m

#
# Multistandard (satellite) frontends
#

#
# Multistandard (cable + terrestrial) frontends
#

#
# DVB-S (satellite) frontends
#

#
# DVB-T (terrestrial) frontends
#
# CONFIG_DVB_AS102_FE is not set

#
# DVB-C (cable) frontends
#

#
# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
#

#
# ISDB-T (terrestrial) frontends
#

#
# ISDB-S (satellite) & ISDB-T (terrestrial) frontends
#

#
# Digital terrestrial only tuners/PLL
#

#
# SEC control devices for DVB-S
#

#
# Tools to develop new frontends
#
# CONFIG_DVB_DUMMY_FE is not set

#
# Graphics support
#
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
CONFIG_AGP_INTEL=y
# CONFIG_AGP_SIS is not set
CONFIG_AGP_VIA=y
CONFIG_INTEL_GTT=y
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=16
CONFIG_VGA_SWITCHEROO=y
CONFIG_DRM=m
CONFIG_DRM_MIPI_DSI=y
# CONFIG_DRM_DP_AUX_CHARDEV is not set
CONFIG_DRM_KMS_HELPER=m
CONFIG_DRM_KMS_FB_HELPER=y
CONFIG_DRM_FBDEV_EMULATION=y
CONFIG_DRM_LOAD_EDID_FIRMWARE=y

#
# I2C encoder or helper chips
#
# CONFIG_DRM_I2C_ADV7511 is not set
# CONFIG_DRM_I2C_CH7006 is not set
# CONFIG_DRM_I2C_SIL164 is not set
# CONFIG_DRM_I2C_NXP_TDA998X is not set
# CONFIG_DRM_TDFX is not set
# CONFIG_DRM_R128 is not set
# CONFIG_DRM_RADEON is not set
# CONFIG_DRM_AMDGPU is not set

#
# ACP (Audio CoProcessor) Configuration
#
# CONFIG_DRM_NOUVEAU is not set
# CONFIG_DRM_I810 is not set
CONFIG_DRM_I915=m
# CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT is not set
CONFIG_DRM_I915_USERPTR=y

#
# drm/i915 Debugging
#
# CONFIG_DRM_I915_WERROR is not set
# CONFIG_DRM_I915_DEBUG is not set
# CONFIG_DRM_MGA is not set
# CONFIG_DRM_SIS is not set
# CONFIG_DRM_VIA is not set
# CONFIG_DRM_SAVAGE is not set
# CONFIG_DRM_VGEM is not set
# CONFIG_DRM_VMWGFX is not set
# CONFIG_DRM_GMA500 is not set
# CONFIG_DRM_UDL is not set
# CONFIG_DRM_AST is not set
# CONFIG_DRM_MGAG200 is not set
# CONFIG_DRM_CIRRUS_QEMU is not set
# CONFIG_DRM_QXL is not set
# CONFIG_DRM_BOCHS is not set
# CONFIG_DRM_VIRTIO_GPU is not set
CONFIG_DRM_PANEL=y

#
# Display Panels
#
CONFIG_DRM_BRIDGE=y

#
# Display Interface Bridges
#
# CONFIG_DRM_ANALOGIX_ANX78XX is not set

#
# Frame buffer Devices
#
CONFIG_FB=y
CONFIG_FIRMWARE_EDID=y
CONFIG_FB_CMDLINE=y
CONFIG_FB_NOTIFY=y
# CONFIG_FB_DDC is not set
# CONFIG_FB_BOOT_VESA_SUPPORT is not set
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
CONFIG_FB_SYS_FILLRECT=m
CONFIG_FB_SYS_COPYAREA=m
CONFIG_FB_SYS_IMAGEBLIT=m
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=m
CONFIG_FB_DEFERRED_IO=y
# CONFIG_FB_SVGALIB is not set
# CONFIG_FB_MACMODES is not set
# CONFIG_FB_BACKLIGHT is not set
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y

#
# Frame buffer hardware drivers
#
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
CONFIG_FB_ASILIANT=y
CONFIG_FB_IMSTT=y
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_UVESA is not set
# CONFIG_FB_VESA is not set
CONFIG_FB_EFI=y
# CONFIG_FB_N411 is not set
# CONFIG_FB_HGA is not set
# CONFIG_FB_OPENCORES is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I740 is not set
# CONFIG_FB_LE80578 is not set
# CONFIG_FB_INTEL is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_VIA is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CARMINE is not set
# CONFIG_FB_SMSCUFX is not set
# CONFIG_FB_UDL is not set
# CONFIG_FB_IBM_GXT4500 is not set
# CONFIG_FB_VIRTUAL is not set
# CONFIG_XEN_FBDEV_FRONTEND is not set
# CONFIG_FB_METRONOME is not set
# CONFIG_FB_MB862XX is not set
# CONFIG_FB_BROADSHEET is not set
# CONFIG_FB_AUO_K190X is not set
# CONFIG_FB_SIMPLE is not set
# CONFIG_FB_SM712 is not set
CONFIG_BACKLIGHT_LCD_SUPPORT=y
# CONFIG_LCD_CLASS_DEVICE is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
# CONFIG_BACKLIGHT_GENERIC is not set
# CONFIG_BACKLIGHT_PWM is not set
# CONFIG_BACKLIGHT_DA903X is not set
# CONFIG_BACKLIGHT_DA9052 is not set
# CONFIG_BACKLIGHT_MAX8925 is not set
# CONFIG_BACKLIGHT_APPLE is not set
# CONFIG_BACKLIGHT_PM8941_WLED is not set
# CONFIG_BACKLIGHT_SAHARA is not set
# CONFIG_BACKLIGHT_WM831X is not set
# CONFIG_BACKLIGHT_ADP5520 is not set
# CONFIG_BACKLIGHT_ADP8860 is not set
# CONFIG_BACKLIGHT_ADP8870 is not set
# CONFIG_BACKLIGHT_88PM860X is not set
# CONFIG_BACKLIGHT_AAT2870 is not set
# CONFIG_BACKLIGHT_LM3630A is not set
# CONFIG_BACKLIGHT_LM3639 is not set
# CONFIG_BACKLIGHT_LP855X is not set
# CONFIG_BACKLIGHT_LP8788 is not set
# CONFIG_BACKLIGHT_GPIO is not set
# CONFIG_BACKLIGHT_LV5207LP is not set
# CONFIG_BACKLIGHT_BD6107 is not set
# CONFIG_VGASTATE is not set
CONFIG_HDMI=y

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
# CONFIG_VGACON_SOFT_SCROLLBACK is not set
CONFIG_DUMMY_CONSOLE=y
CONFIG_DUMMY_CONSOLE_COLUMNS=80
CONFIG_DUMMY_CONSOLE_ROWS=25
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
# CONFIG_LOGO is not set
CONFIG_SOUND=m
# CONFIG_SOUND_OSS_CORE is not set
CONFIG_SND=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_HWDEP=m
CONFIG_SND_RAWMIDI=m
CONFIG_SND_JACK=y
CONFIG_SND_JACK_INPUT_DEV=y
CONFIG_SND_SEQUENCER=m
# CONFIG_SND_SEQ_DUMMY is not set
# CONFIG_SND_MIXER_OSS is not set
# CONFIG_SND_PCM_OSS is not set
CONFIG_SND_PCM_TIMER=y
# CONFIG_SND_SEQUENCER_OSS is not set
# CONFIG_SND_HRTIMER is not set
CONFIG_SND_DYNAMIC_MINORS=y
CONFIG_SND_MAX_CARDS=32
CONFIG_SND_SUPPORT_OLD_API=y
CONFIG_SND_PROC_FS=y
CONFIG_SND_VERBOSE_PROCFS=y
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set
CONFIG_SND_VMASTER=y
CONFIG_SND_DMA_SGBUF=y
CONFIG_SND_RAWMIDI_SEQ=m
# CONFIG_SND_OPL3_LIB_SEQ is not set
# CONFIG_SND_OPL4_LIB_SEQ is not set
# CONFIG_SND_SBAWE_SEQ is not set
# CONFIG_SND_EMU10K1_SEQ is not set
CONFIG_SND_DRIVERS=y
# CONFIG_SND_PCSP is not set
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_ALOOP is not set
CONFIG_SND_VIRMIDI=m
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_MTS64 is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set
# CONFIG_SND_PORTMAN2X4 is not set
CONFIG_SND_PCI=y
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_ALS300 is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_ASIHPI is not set
# CONFIG_SND_ATIIXP is not set
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AW2 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_OXYGEN is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CTXFI is not set
# CONFIG_SND_DARLA20 is not set
# CONFIG_SND_GINA20 is not set
# CONFIG_SND_LAYLA20 is not set
# CONFIG_SND_DARLA24 is not set
# CONFIG_SND_GINA24 is not set
# CONFIG_SND_LAYLA24 is not set
# CONFIG_SND_MONA is not set
# CONFIG_SND_MIA is not set
# CONFIG_SND_ECHO3G is not set
# CONFIG_SND_INDIGO is not set
# CONFIG_SND_INDIGOIO is not set
# CONFIG_SND_INDIGODJ is not set
# CONFIG_SND_INDIGOIOX is not set
# CONFIG_SND_INDIGODJX is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
# CONFIG_SND_INTEL8X0 is not set
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_LOLA is not set
# CONFIG_SND_LX6464ES is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_PCXHR is not set
# CONFIG_SND_RIPTIDE is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_SE6X is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VIRTUOSO is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_YMFPCI is not set

#
# HD-Audio
#
CONFIG_SND_HDA=m
CONFIG_SND_HDA_INTEL=m
CONFIG_SND_HDA_HWDEP=y
CONFIG_SND_HDA_RECONFIG=y
CONFIG_SND_HDA_INPUT_BEEP=y
CONFIG_SND_HDA_INPUT_BEEP_MODE=0
CONFIG_SND_HDA_PATCH_LOADER=y
CONFIG_SND_HDA_CODEC_REALTEK=m
# CONFIG_SND_HDA_CODEC_ANALOG is not set
# CONFIG_SND_HDA_CODEC_SIGMATEL is not set
# CONFIG_SND_HDA_CODEC_VIA is not set
CONFIG_SND_HDA_CODEC_HDMI=m
# CONFIG_SND_HDA_CODEC_CIRRUS is not set
# CONFIG_SND_HDA_CODEC_CONEXANT is not set
# CONFIG_SND_HDA_CODEC_CA0110 is not set
# CONFIG_SND_HDA_CODEC_CA0132 is not set
# CONFIG_SND_HDA_CODEC_CMEDIA is not set
# CONFIG_SND_HDA_CODEC_SI3054 is not set
CONFIG_SND_HDA_GENERIC=m
CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
CONFIG_SND_HDA_CORE=m
CONFIG_SND_HDA_I915=y
CONFIG_SND_HDA_PREALLOC_SIZE=64
CONFIG_SND_SPI=y
CONFIG_SND_USB=y
# CONFIG_SND_USB_AUDIO is not set
# CONFIG_SND_USB_UA101 is not set
# CONFIG_SND_USB_USX2Y is not set
# CONFIG_SND_USB_CAIAQ is not set
# CONFIG_SND_USB_US122L is not set
# CONFIG_SND_USB_6FIRE is not set
# CONFIG_SND_USB_HIFACE is not set
# CONFIG_SND_BCD2000 is not set
# CONFIG_SND_USB_POD is not set
# CONFIG_SND_USB_PODHD is not set
# CONFIG_SND_USB_TONEPORT is not set
# CONFIG_SND_USB_VARIAX is not set
# CONFIG_SND_SOC is not set
# CONFIG_SOUND_PRIME is not set

#
# HID support
#
CONFIG_HID=m
# CONFIG_HID_BATTERY_STRENGTH is not set
# CONFIG_HIDRAW is not set
# CONFIG_UHID is not set
CONFIG_HID_GENERIC=m

#
# Special HID drivers
#
# CONFIG_HID_A4TECH is not set
# CONFIG_HID_ACRUX is not set
# CONFIG_HID_APPLE is not set
# CONFIG_HID_APPLEIR is not set
# CONFIG_HID_AUREAL is not set
# CONFIG_HID_BELKIN is not set
# CONFIG_HID_BETOP_FF is not set
# CONFIG_HID_CHERRY is not set
# CONFIG_HID_CHICONY is not set
# CONFIG_HID_CORSAIR is not set
# CONFIG_HID_PRODIKEYS is not set
# CONFIG_HID_CMEDIA is not set
# CONFIG_HID_CP2112 is not set
# CONFIG_HID_CYPRESS is not set
# CONFIG_HID_DRAGONRISE is not set
# CONFIG_HID_EMS_FF is not set
# CONFIG_HID_ELECOM is not set
# CONFIG_HID_ELO is not set
# CONFIG_HID_EZKEY is not set
# CONFIG_HID_GEMBIRD is not set
# CONFIG_HID_GFRM is not set
# CONFIG_HID_HOLTEK is not set
# CONFIG_HID_GT683R is not set
# CONFIG_HID_KEYTOUCH is not set
# CONFIG_HID_KYE is not set
# CONFIG_HID_UCLOGIC is not set
# CONFIG_HID_WALTOP is not set
# CONFIG_HID_GYRATION is not set
# CONFIG_HID_ICADE is not set
# CONFIG_HID_TWINHAN is not set
# CONFIG_HID_KENSINGTON is not set
# CONFIG_HID_LCPOWER is not set
# CONFIG_HID_LENOVO is not set
# CONFIG_HID_LOGITECH is not set
# CONFIG_HID_MAGICMOUSE is not set
# CONFIG_HID_MICROSOFT is not set
# CONFIG_HID_MONTEREY is not set
# CONFIG_HID_MULTITOUCH is not set
# CONFIG_HID_NTRIG is not set
# CONFIG_HID_ORTEK is not set
# CONFIG_HID_PANTHERLORD is not set
# CONFIG_HID_PENMOUNT is not set
# CONFIG_HID_PETALYNX is not set
# CONFIG_HID_PICOLCD is not set
# CONFIG_HID_PLANTRONICS is not set
# CONFIG_HID_PRIMAX is not set
# CONFIG_HID_ROCCAT is not set
# CONFIG_HID_SAITEK is not set
# CONFIG_HID_SAMSUNG is not set
# CONFIG_HID_SONY is not set
# CONFIG_HID_SPEEDLINK is not set
# CONFIG_HID_STEELSERIES is not set
# CONFIG_HID_SUNPLUS is not set
# CONFIG_HID_RMI is not set
# CONFIG_HID_GREENASIA is not set
# CONFIG_HID_SMARTJOYPLUS is not set
# CONFIG_HID_TIVO is not set
# CONFIG_HID_TOPSEED is not set
# CONFIG_HID_THINGM is not set
# CONFIG_HID_THRUSTMASTER is not set
# CONFIG_HID_WACOM is not set
# CONFIG_HID_WIIMOTE is not set
# CONFIG_HID_XINMO is not set
# CONFIG_HID_ZEROPLUS is not set
# CONFIG_HID_ZYDACRON is not set
# CONFIG_HID_SENSOR_HUB is not set

#
# USB HID support
#
CONFIG_USB_HID=m
CONFIG_HID_PID=y
CONFIG_USB_HIDDEV=y

#
# USB HID Boot Protocol drivers
#
CONFIG_USB_KBD=m
CONFIG_USB_MOUSE=m

#
# I2C HID support
#
# CONFIG_I2C_HID is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_SUPPORT=y
CONFIG_USB_COMMON=y
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB=y
CONFIG_USB_ANNOUNCE_NEW_DEVICES=y

#
# Miscellaneous USB options
#
CONFIG_USB_DEFAULT_PERSIST=y
CONFIG_USB_DYNAMIC_MINORS=y
# CONFIG_USB_OTG is not set
# CONFIG_USB_OTG_WHITELIST is not set
# CONFIG_USB_OTG_BLACKLIST_HUB is not set
# CONFIG_USB_ULPI_BUS is not set
# CONFIG_USB_MON is not set
# CONFIG_USB_WUSB_CBAF is not set

#
# USB Host Controller Drivers
#
# CONFIG_USB_C67X00_HCD is not set
CONFIG_USB_XHCI_HCD=y
CONFIG_USB_XHCI_PCI=y
# CONFIG_USB_XHCI_PLATFORM is not set
CONFIG_USB_EHCI_HCD=y
CONFIG_USB_EHCI_ROOT_HUB_TT=y
CONFIG_USB_EHCI_TT_NEWSCHED=y
CONFIG_USB_EHCI_PCI=y
CONFIG_USB_EHCI_HCD_PLATFORM=y
# CONFIG_USB_OXU210HP_HCD is not set
# CONFIG_USB_ISP116X_HCD is not set
# CONFIG_USB_ISP1362_HCD is not set
# CONFIG_USB_FOTG210_HCD is not set
# CONFIG_USB_MAX3421_HCD is not set
CONFIG_USB_OHCI_HCD=y
CONFIG_USB_OHCI_HCD_PCI=y
CONFIG_USB_OHCI_HCD_PLATFORM=y
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_SL811_HCD is not set
# CONFIG_USB_R8A66597_HCD is not set
# CONFIG_USB_HCD_TEST_MODE is not set

#
# USB Device Class drivers
#
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=m
# CONFIG_USB_WDM is not set
# CONFIG_USB_TMC is not set

#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
#

#
# also be needed; see USB_STORAGE Help for more info
#
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_REALTEK is not set
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_USBAT is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
# CONFIG_USB_STORAGE_ALAUDA is not set
# CONFIG_USB_STORAGE_ONETOUCH is not set
# CONFIG_USB_STORAGE_KARMA is not set
# CONFIG_USB_STORAGE_CYPRESS_ATACB is not set
# CONFIG_USB_STORAGE_ENE_UB6250 is not set
# CONFIG_USB_UAS is not set

#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set
# CONFIG_USBIP_CORE is not set
# CONFIG_USB_MUSB_HDRC is not set
# CONFIG_USB_DWC3 is not set
# CONFIG_USB_DWC2 is not set
# CONFIG_USB_CHIPIDEA is not set
# CONFIG_USB_ISP1760 is not set

#
# USB port drivers
#
# CONFIG_USB_USS720 is not set
CONFIG_USB_SERIAL=m
# CONFIG_USB_SERIAL_GENERIC is not set
# CONFIG_USB_SERIAL_SIMPLE is not set
# CONFIG_USB_SERIAL_AIRCABLE is not set
# CONFIG_USB_SERIAL_ARK3116 is not set
# CONFIG_USB_SERIAL_BELKIN is not set
# CONFIG_USB_SERIAL_CH341 is not set
# CONFIG_USB_SERIAL_WHITEHEAT is not set
# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
# CONFIG_USB_SERIAL_CP210X is not set
# CONFIG_USB_SERIAL_CYPRESS_M8 is not set
# CONFIG_USB_SERIAL_EMPEG is not set
# CONFIG_USB_SERIAL_FTDI_SIO is not set
# CONFIG_USB_SERIAL_VISOR is not set
# CONFIG_USB_SERIAL_IPAQ is not set
# CONFIG_USB_SERIAL_IR is not set
# CONFIG_USB_SERIAL_EDGEPORT is not set
# CONFIG_USB_SERIAL_EDGEPORT_TI is not set
# CONFIG_USB_SERIAL_F81232 is not set
# CONFIG_USB_SERIAL_GARMIN is not set
# CONFIG_USB_SERIAL_IPW is not set
# CONFIG_USB_SERIAL_IUU is not set
# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
# CONFIG_USB_SERIAL_KEYSPAN is not set
# CONFIG_USB_SERIAL_KLSI is not set
# CONFIG_USB_SERIAL_KOBIL_SCT is not set
# CONFIG_USB_SERIAL_MCT_U232 is not set
# CONFIG_USB_SERIAL_METRO is not set
# CONFIG_USB_SERIAL_MOS7720 is not set
# CONFIG_USB_SERIAL_MOS7840 is not set
# CONFIG_USB_SERIAL_MXUPORT is not set
# CONFIG_USB_SERIAL_NAVMAN is not set
# CONFIG_USB_SERIAL_PL2303 is not set
# CONFIG_USB_SERIAL_OTI6858 is not set
# CONFIG_USB_SERIAL_QCAUX is not set
# CONFIG_USB_SERIAL_QUALCOMM is not set
# CONFIG_USB_SERIAL_SPCP8X5 is not set
# CONFIG_USB_SERIAL_SAFE is not set
# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set
# CONFIG_USB_SERIAL_SYMBOL is not set
# CONFIG_USB_SERIAL_TI is not set
# CONFIG_USB_SERIAL_CYBERJACK is not set
# CONFIG_USB_SERIAL_XIRCOM is not set
CONFIG_USB_SERIAL_WWAN=m
CONFIG_USB_SERIAL_OPTION=m
# CONFIG_USB_SERIAL_OMNINET is not set
# CONFIG_USB_SERIAL_OPTICON is not set
# CONFIG_USB_SERIAL_XSENS_MT is not set
# CONFIG_USB_SERIAL_WISHBONE is not set
# CONFIG_USB_SERIAL_SSU100 is not set
# CONFIG_USB_SERIAL_QT2 is not set
# CONFIG_USB_SERIAL_DEBUG is not set

#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_ADUTUX is not set
# CONFIG_USB_SEVSEG is not set
# CONFIG_USB_RIO500 is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_LED is not set
# CONFIG_USB_CYPRESS_CY7C63 is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_IDMOUSE is not set
# CONFIG_USB_FTDI_ELAN is not set
# CONFIG_USB_APPLEDISPLAY is not set
# CONFIG_USB_SISUSBVGA is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TRANCEVIBRATOR is not set
# CONFIG_USB_IOWARRIOR is not set
# CONFIG_USB_TEST is not set
# CONFIG_USB_EHSET_TEST_FIXTURE is not set
# CONFIG_USB_ISIGHTFW is not set
# CONFIG_USB_YUREX is not set
# CONFIG_USB_EZUSB_FX2 is not set
# CONFIG_USB_HSIC_USB3503 is not set
# CONFIG_USB_LINK_LAYER_TEST is not set
# CONFIG_USB_CHAOSKEY is not set
# CONFIG_UCSI is not set

#
# USB Physical Layer drivers
#
# CONFIG_USB_PHY is not set
# CONFIG_NOP_USB_XCEIV is not set
# CONFIG_USB_GPIO_VBUS is not set
# CONFIG_USB_ISP1301 is not set
# CONFIG_USB_GADGET is not set
# CONFIG_USB_LED_TRIG is not set
# CONFIG_UWB is not set
CONFIG_MMC=y
# CONFIG_MMC_DEBUG is not set

#
# MMC/SD/SDIO Card Drivers
#
CONFIG_MMC_BLOCK=m
CONFIG_MMC_BLOCK_MINORS=8
CONFIG_MMC_BLOCK_BOUNCE=y
# CONFIG_SDIO_UART is not set
# CONFIG_MMC_TEST is not set

#
# MMC/SD/SDIO Host Controller Drivers
#
CONFIG_MMC_SDHCI=m
# CONFIG_MMC_SDHCI_PCI is not set
# CONFIG_MMC_SDHCI_ACPI is not set
# CONFIG_MMC_SDHCI_PLTFM is not set
# CONFIG_MMC_WBSD is not set
# CONFIG_MMC_TIFM_SD is not set
# CONFIG_MMC_SPI is not set
# CONFIG_MMC_CB710 is not set
# CONFIG_MMC_VIA_SDMMC is not set
# CONFIG_MMC_VUB300 is not set
# CONFIG_MMC_USHC is not set
# CONFIG_MMC_USDHI6ROL0 is not set
# CONFIG_MMC_TOSHIBA_PCI is not set
# CONFIG_MMC_MTK is not set
# CONFIG_MEMSTICK is not set
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y
# CONFIG_LEDS_CLASS_FLASH is not set

#
# LED drivers
#
# CONFIG_LEDS_88PM860X is not set
# CONFIG_LEDS_LM3530 is not set
# CONFIG_LEDS_LM3642 is not set
# CONFIG_LEDS_PCA9532 is not set
# CONFIG_LEDS_GPIO is not set
# CONFIG_LEDS_LP3944 is not set
# CONFIG_LEDS_LP5521 is not set
# CONFIG_LEDS_LP5523 is not set
# CONFIG_LEDS_LP5562 is not set
# CONFIG_LEDS_LP8501 is not set
# CONFIG_LEDS_LP8788 is not set
# CONFIG_LEDS_LP8860 is not set
# CONFIG_LEDS_CLEVO_MAIL is not set
# CONFIG_LEDS_PCA955X is not set
# CONFIG_LEDS_PCA963X is not set
# CONFIG_LEDS_WM831X_STATUS is not set
# CONFIG_LEDS_WM8350 is not set
# CONFIG_LEDS_DA903X is not set
# CONFIG_LEDS_DA9052 is not set
# CONFIG_LEDS_DAC124S085 is not set
# CONFIG_LEDS_PWM is not set
# CONFIG_LEDS_REGULATOR is not set
# CONFIG_LEDS_BD2802 is not set
# CONFIG_LEDS_INTEL_SS4200 is not set
# CONFIG_LEDS_LT3593 is not set
# CONFIG_LEDS_ADP5520 is not set
# CONFIG_LEDS_TCA6507 is not set
# CONFIG_LEDS_TLC591XX is not set
# CONFIG_LEDS_MAX8997 is not set
# CONFIG_LEDS_LM355x is not set

#
# LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)
#
# CONFIG_LEDS_BLINKM is not set

#
# LED Triggers
#
CONFIG_LEDS_TRIGGERS=y
# CONFIG_LEDS_TRIGGER_TIMER is not set
# CONFIG_LEDS_TRIGGER_ONESHOT is not set
# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
CONFIG_LEDS_TRIGGER_CPU=y
# CONFIG_LEDS_TRIGGER_GPIO is not set
# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set

#
# iptables trigger is under Netfilter config (LED target)
#
# CONFIG_LEDS_TRIGGER_TRANSIENT is not set
# CONFIG_LEDS_TRIGGER_CAMERA is not set
# CONFIG_LEDS_TRIGGER_PANIC is not set
# CONFIG_ACCESSIBILITY is not set
# CONFIG_INFINIBAND is not set
CONFIG_EDAC_ATOMIC_SCRUB=y
CONFIG_EDAC_SUPPORT=y
CONFIG_EDAC=y
CONFIG_EDAC_LEGACY_SYSFS=y
# CONFIG_EDAC_DEBUG is not set
# CONFIG_EDAC_DECODE_MCE is not set
# CONFIG_EDAC_MM_EDAC is not set
CONFIG_RTC_LIB=y
CONFIG_RTC_CLASS=y
CONFIG_RTC_HCTOSYS=y
CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
CONFIG_RTC_SYSTOHC=y
CONFIG_RTC_SYSTOHC_DEVICE="rtc0"
# CONFIG_RTC_DEBUG is not set

#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
CONFIG_RTC_INTF_PROC=y
CONFIG_RTC_INTF_DEV=y
# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
# CONFIG_RTC_DRV_TEST is not set

#
# I2C RTC drivers
#
# CONFIG_RTC_DRV_88PM860X is not set
# CONFIG_RTC_DRV_ABB5ZES3 is not set
# CONFIG_RTC_DRV_ABX80X is not set
# CONFIG_RTC_DRV_DS1307 is not set
# CONFIG_RTC_DRV_DS1374 is not set
# CONFIG_RTC_DRV_DS1672 is not set
# CONFIG_RTC_DRV_LP8788 is not set
# CONFIG_RTC_DRV_MAX6900 is not set
# CONFIG_RTC_DRV_MAX8925 is not set
# CONFIG_RTC_DRV_MAX8998 is not set
# CONFIG_RTC_DRV_MAX8997 is not set
# CONFIG_RTC_DRV_RS5C372 is not set
# CONFIG_RTC_DRV_ISL1208 is not set
# CONFIG_RTC_DRV_ISL12022 is not set
# CONFIG_RTC_DRV_ISL12057 is not set
# CONFIG_RTC_DRV_X1205 is not set
# CONFIG_RTC_DRV_PCF8523 is not set
# CONFIG_RTC_DRV_PCF85063 is not set
# CONFIG_RTC_DRV_PCF8563 is not set
# CONFIG_RTC_DRV_PCF8583 is not set
# CONFIG_RTC_DRV_M41T80 is not set
# CONFIG_RTC_DRV_BQ32K is not set
# CONFIG_RTC_DRV_PALMAS is not set
# CONFIG_RTC_DRV_TPS6586X is not set
# CONFIG_RTC_DRV_TPS65910 is not set
# CONFIG_RTC_DRV_RC5T583 is not set
# CONFIG_RTC_DRV_S35390A is not set
# CONFIG_RTC_DRV_FM3130 is not set
# CONFIG_RTC_DRV_RX8010 is not set
# CONFIG_RTC_DRV_RX8581 is not set
# CONFIG_RTC_DRV_RX8025 is not set
# CONFIG_RTC_DRV_EM3027 is not set
# CONFIG_RTC_DRV_RV8803 is not set
# CONFIG_RTC_DRV_S5M is not set

#
# SPI RTC drivers
#
# CONFIG_RTC_DRV_M41T93 is not set
# CONFIG_RTC_DRV_M41T94 is not set
# CONFIG_RTC_DRV_DS1302 is not set
# CONFIG_RTC_DRV_DS1305 is not set
# CONFIG_RTC_DRV_DS1343 is not set
# CONFIG_RTC_DRV_DS1347 is not set
# CONFIG_RTC_DRV_DS1390 is not set
# CONFIG_RTC_DRV_R9701 is not set
# CONFIG_RTC_DRV_RX4581 is not set
# CONFIG_RTC_DRV_RX6110 is not set
# CONFIG_RTC_DRV_RS5C348 is not set
# CONFIG_RTC_DRV_MAX6902 is not set
# CONFIG_RTC_DRV_PCF2123 is not set
# CONFIG_RTC_DRV_MCP795 is not set
CONFIG_RTC_I2C_AND_SPI=y

#
# SPI and I2C RTC drivers
#
# CONFIG_RTC_DRV_DS3232 is not set
# CONFIG_RTC_DRV_PCF2127 is not set
# CONFIG_RTC_DRV_RV3029C2 is not set

#
# Platform RTC drivers
#
CONFIG_RTC_DRV_CMOS=y
# CONFIG_RTC_DRV_DS1286 is not set
# CONFIG_RTC_DRV_DS1511 is not set
# CONFIG_RTC_DRV_DS1553 is not set
# CONFIG_RTC_DRV_DS1685_FAMILY is not set
# CONFIG_RTC_DRV_DS1742 is not set
# CONFIG_RTC_DRV_DS2404 is not set
# CONFIG_RTC_DRV_DA9052 is not set
# CONFIG_RTC_DRV_DA9055 is not set
# CONFIG_RTC_DRV_STK17TA8 is not set
# CONFIG_RTC_DRV_M48T86 is not set
# CONFIG_RTC_DRV_M48T35 is not set
# CONFIG_RTC_DRV_M48T59 is not set
# CONFIG_RTC_DRV_MSM6242 is not set
# CONFIG_RTC_DRV_BQ4802 is not set
# CONFIG_RTC_DRV_RP5C01 is not set
# CONFIG_RTC_DRV_V3020 is not set
# CONFIG_RTC_DRV_WM831X is not set
# CONFIG_RTC_DRV_WM8350 is not set
# CONFIG_RTC_DRV_AB3100 is not set

#
# on-CPU RTC drivers
#
# CONFIG_RTC_DRV_PCAP is not set

#
# HID Sensor RTC drivers
#
# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
CONFIG_DMADEVICES=y
# CONFIG_DMADEVICES_DEBUG is not set

#
# DMA Devices
#
CONFIG_DMA_ENGINE=y
CONFIG_DMA_ACPI=y
# CONFIG_INTEL_IDMA64 is not set
# CONFIG_INTEL_IOATDMA is not set
# CONFIG_QCOM_HIDMA_MGMT is not set
# CONFIG_QCOM_HIDMA is not set
# CONFIG_DW_DMAC is not set
# CONFIG_DW_DMAC_PCI is not set

#
# DMA Clients
#
# CONFIG_ASYNC_TX_DMA is not set
# CONFIG_DMATEST is not set

#
# DMABUF options
#
# CONFIG_SYNC_FILE is not set
CONFIG_AUXDISPLAY=y
# CONFIG_KS0108 is not set
# CONFIG_UIO is not set
# CONFIG_VFIO is not set
CONFIG_IRQ_BYPASS_MANAGER=m
CONFIG_VIRT_DRIVERS=y
CONFIG_VIRTIO=y

#
# Virtio drivers
#
CONFIG_VIRTIO_PCI=y
CONFIG_VIRTIO_PCI_LEGACY=y
# CONFIG_VIRTIO_BALLOON is not set
# CONFIG_VIRTIO_INPUT is not set
# CONFIG_VIRTIO_MMIO is not set

#
# Microsoft Hyper-V guest support
#
# CONFIG_HYPERV is not set

#
# Xen driver support
#
CONFIG_XEN_BALLOON=y
CONFIG_XEN_SELFBALLOONING=y
CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y
CONFIG_XEN_BALLOON_MEMORY_HOTPLUG_LIMIT=512
CONFIG_XEN_SCRUB_PAGES=y
# CONFIG_XEN_DEV_EVTCHN is not set
CONFIG_XEN_BACKEND=y
# CONFIG_XENFS is not set
CONFIG_XEN_SYS_HYPERVISOR=y
CONFIG_XEN_XENBUS_FRONTEND=y
# CONFIG_XEN_GNTDEV is not set
# CONFIG_XEN_GRANT_DEV_ALLOC is not set
CONFIG_SWIOTLB_XEN=y
CONFIG_XEN_TMEM=m
# CONFIG_XEN_PCIDEV_BACKEND is not set
CONFIG_XEN_PRIVCMD=m
CONFIG_XEN_ACPI_PROCESSOR=y
CONFIG_XEN_MCE_LOG=y
CONFIG_XEN_HAVE_PVMMU=y
CONFIG_XEN_EFI=y
CONFIG_XEN_AUTO_XLATE=y
CONFIG_XEN_ACPI=y
CONFIG_XEN_HAVE_VPMU=y
CONFIG_STAGING=y
# CONFIG_SLICOSS is not set
# CONFIG_PRISM2_USB is not set
# CONFIG_COMEDI is not set
# CONFIG_RTL8192U is not set
# CONFIG_RTLLIB is not set
# CONFIG_R8712U is not set
# CONFIG_R8188EU is not set
# CONFIG_R8723AU is not set
# CONFIG_RTS5208 is not set
# CONFIG_VT6655 is not set
# CONFIG_VT6656 is not set
# CONFIG_FB_SM750 is not set
# CONFIG_FB_XGI is not set

#
# Speakup console speech
#
# CONFIG_SPEAKUP is not set
CONFIG_STAGING_MEDIA=y
# CONFIG_I2C_BCM2048 is not set
# CONFIG_DVB_CXD2099 is not set
# CONFIG_DVB_MN88472 is not set
# CONFIG_VIDEO_TW686X_KH is not set

#
# Android
#
# CONFIG_LTE_GDM724X is not set
# CONFIG_LNET is not set
# CONFIG_DGNC is not set
# CONFIG_GS_FPGABOOT is not set
# CONFIG_CRYPTO_SKEIN is not set
# CONFIG_UNISYSSPAR is not set
# CONFIG_FB_TFT is not set
# CONFIG_WILC1000_SDIO is not set
# CONFIG_WILC1000_SPI is not set
# CONFIG_MOST is not set
CONFIG_X86_PLATFORM_DEVICES=y
# CONFIG_ACER_WMI is not set
# CONFIG_ACERHDF is not set
# CONFIG_ALIENWARE_WMI is not set
# CONFIG_ASUS_LAPTOP is not set
# CONFIG_DELL_WMI_AIO is not set
# CONFIG_DELL_SMO8800 is not set
# CONFIG_DELL_RBTN is not set
# CONFIG_FUJITSU_LAPTOP is not set
# CONFIG_FUJITSU_TABLET is not set
# CONFIG_AMILO_RFKILL is not set
# CONFIG_HP_ACCEL is not set
# CONFIG_HP_WIRELESS is not set
# CONFIG_HP_WMI is not set
# CONFIG_MSI_LAPTOP is not set
# CONFIG_PANASONIC_LAPTOP is not set
# CONFIG_COMPAL_LAPTOP is not set
# CONFIG_SONY_LAPTOP is not set
# CONFIG_IDEAPAD_LAPTOP is not set
# CONFIG_THINKPAD_ACPI is not set
# CONFIG_SENSORS_HDAPS is not set
# CONFIG_INTEL_MENLOW is not set
# CONFIG_EEEPC_LAPTOP is not set
# CONFIG_ASUS_WMI is not set
# CONFIG_ASUS_WIRELESS is not set
CONFIG_ACPI_WMI=m
# CONFIG_MSI_WMI is not set
# CONFIG_TOPSTAR_LAPTOP is not set
# CONFIG_ACPI_TOSHIBA is not set
# CONFIG_TOSHIBA_BT_RFKILL is not set
# CONFIG_TOSHIBA_HAPS is not set
# CONFIG_TOSHIBA_WMI is not set
# CONFIG_ACPI_CMPC is not set
# CONFIG_INTEL_HID_EVENT is not set
# CONFIG_INTEL_IPS is not set
# CONFIG_INTEL_PMC_CORE is not set
# CONFIG_IBM_RTL is not set
CONFIG_SAMSUNG_LAPTOP=m
# CONFIG_MXM_WMI is not set
# CONFIG_INTEL_OAKTRAIL is not set
# CONFIG_SAMSUNG_Q10 is not set
# CONFIG_APPLE_GMUX is not set
CONFIG_INTEL_RST=m
# CONFIG_INTEL_SMARTCONNECT is not set
# CONFIG_PVPANIC is not set
# CONFIG_INTEL_PMC_IPC is not set
# CONFIG_SURFACE_PRO3_BUTTON is not set
# CONFIG_INTEL_PUNIT_IPC is not set
# CONFIG_CHROME_PLATFORMS is not set

#
# Hardware Spinlock drivers
#

#
# Clock Source drivers
#
CONFIG_CLKEVT_I8253=y
CONFIG_I8253_LOCK=y
CONFIG_CLKBLD_I8253=y
# CONFIG_ATMEL_PIT is not set
# CONFIG_SH_TIMER_CMT is not set
# CONFIG_SH_TIMER_MTU2 is not set
# CONFIG_SH_TIMER_TMU is not set
# CONFIG_EM_TIMER_STI is not set
# CONFIG_MAILBOX is not set
CONFIG_IOMMU_API=y
CONFIG_IOMMU_SUPPORT=y

#
# Generic IOMMU Pagetable Support
#
CONFIG_IOMMU_IOVA=y
CONFIG_AMD_IOMMU=y
# CONFIG_AMD_IOMMU_V2 is not set
CONFIG_DMAR_TABLE=y
CONFIG_INTEL_IOMMU=y
# CONFIG_INTEL_IOMMU_SVM is not set
# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set
CONFIG_INTEL_IOMMU_FLOPPY_WA=y
CONFIG_IRQ_REMAP=y

#
# Remoteproc drivers
#
# CONFIG_STE_MODEM_RPROC is not set

#
# Rpmsg drivers
#

#
# SOC (System On Chip) specific Drivers
#
# CONFIG_SUNXI_SRAM is not set
# CONFIG_SOC_TI is not set
CONFIG_PM_DEVFREQ=y

#
# DEVFREQ Governors
#
CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y
CONFIG_DEVFREQ_GOV_PERFORMANCE=y
CONFIG_DEVFREQ_GOV_POWERSAVE=y
CONFIG_DEVFREQ_GOV_USERSPACE=y
# CONFIG_DEVFREQ_GOV_PASSIVE is not set

#
# DEVFREQ Drivers
#
# CONFIG_PM_DEVFREQ_EVENT is not set
CONFIG_EXTCON=y

#
# Extcon Device Drivers
#
# CONFIG_EXTCON_GPIO is not set
# CONFIG_EXTCON_MAX3355 is not set
# CONFIG_EXTCON_MAX77693 is not set
# CONFIG_EXTCON_MAX8997 is not set
# CONFIG_EXTCON_PALMAS is not set
# CONFIG_EXTCON_RT8973A is not set
# CONFIG_EXTCON_SM5502 is not set
# CONFIG_EXTCON_USB_GPIO is not set
CONFIG_MEMORY=y
# CONFIG_IIO is not set
# CONFIG_NTB is not set
# CONFIG_VME_BUS is not set
CONFIG_PWM=y
CONFIG_PWM_SYSFS=y
# CONFIG_PWM_LPSS_PCI is not set
# CONFIG_PWM_LPSS_PLATFORM is not set
# CONFIG_PWM_PCA9685 is not set
CONFIG_ARM_GIC_MAX_NR=1
# CONFIG_IPACK_BUS is not set
# CONFIG_RESET_CONTROLLER is not set
# CONFIG_FMC is not set

#
# PHY Subsystem
#
# CONFIG_GENERIC_PHY is not set
# CONFIG_PHY_PXA_28NM_HSIC is not set
# CONFIG_PHY_PXA_28NM_USB2 is not set
# CONFIG_BCM_KONA_USB2_PHY is not set
# CONFIG_POWERCAP is not set
# CONFIG_MCB is not set

#
# Performance monitor support
#
CONFIG_RAS=y
# CONFIG_THUNDERBOLT is not set

#
# Android
#
# CONFIG_ANDROID is not set
# CONFIG_LIBNVDIMM is not set
# CONFIG_DEV_DAX is not set
# CONFIG_NVMEM is not set
# CONFIG_STM is not set
# CONFIG_INTEL_TH is not set

#
# FPGA Configuration Support
#
# CONFIG_FPGA is not set

#
# Firmware Drivers
#
CONFIG_EDD=y
CONFIG_EDD_OFF=y
CONFIG_FIRMWARE_MEMMAP=y
# CONFIG_DELL_RBU is not set
# CONFIG_DCDBAS is not set
CONFIG_DMIID=y
# CONFIG_DMI_SYSFS is not set
CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y
CONFIG_ISCSI_IBFT_FIND=y
# CONFIG_ISCSI_IBFT is not set
# CONFIG_FW_CFG_SYSFS is not set
# CONFIG_GOOGLE_FIRMWARE is not set

#
# EFI (Extensible Firmware Interface) Support
#
CONFIG_EFI_VARS=y
CONFIG_EFI_ESRT=y
CONFIG_EFI_VARS_PSTORE=y
# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set
CONFIG_EFI_RUNTIME_MAP=y
# CONFIG_EFI_FAKE_MEMMAP is not set
CONFIG_EFI_RUNTIME_WRAPPERS=y
# CONFIG_EFI_BOOTLOADER_CONTROL is not set
# CONFIG_EFI_CAPSULE_LOADER is not set
CONFIG_UEFI_CPER=y

#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
# CONFIG_EXT2_FS is not set
# CONFIG_EXT3_FS is not set
CONFIG_EXT4_FS=y
CONFIG_EXT4_USE_FOR_EXT2=y
CONFIG_EXT4_FS_POSIX_ACL=y
CONFIG_EXT4_FS_SECURITY=y
CONFIG_EXT4_ENCRYPTION=y
CONFIG_EXT4_FS_ENCRYPTION=y
# CONFIG_EXT4_DEBUG is not set
CONFIG_JBD2=y
# CONFIG_JBD2_DEBUG is not set
CONFIG_FS_MBCACHE=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
CONFIG_XFS_FS=m
CONFIG_XFS_QUOTA=y
CONFIG_XFS_POSIX_ACL=y
CONFIG_XFS_RT=y
# CONFIG_XFS_WARN is not set
# CONFIG_XFS_DEBUG is not set
# CONFIG_GFS2_FS is not set
CONFIG_BTRFS_FS=m
CONFIG_BTRFS_FS_POSIX_ACL=y
# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
# CONFIG_BTRFS_DEBUG is not set
# CONFIG_BTRFS_ASSERT is not set
# CONFIG_NILFS2_FS is not set
# CONFIG_F2FS_FS is not set
# CONFIG_FS_DAX is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_EXPORTFS=y
CONFIG_FILE_LOCKING=y
CONFIG_MANDATORY_FILE_LOCKING=y
# CONFIG_FS_ENCRYPTION is not set
CONFIG_FSNOTIFY=y
CONFIG_DNOTIFY=y
CONFIG_INOTIFY_USER=y
CONFIG_FANOTIFY=y
CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
CONFIG_QUOTA=y
CONFIG_QUOTA_NETLINK_INTERFACE=y
# CONFIG_PRINT_QUOTA_WARNING is not set
# CONFIG_QUOTA_DEBUG is not set
# CONFIG_QFMT_V1 is not set
# CONFIG_QFMT_V2 is not set
CONFIG_QUOTACTL=y
CONFIG_QUOTACTL_COMPAT=y
# CONFIG_AUTOFS4_FS is not set
CONFIG_FUSE_FS=y
# CONFIG_CUSE is not set
CONFIG_OVERLAY_FS=m

#
# Caches
#
# CONFIG_FSCACHE is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=m
CONFIG_JOLIET=y
# CONFIG_ZISOFS is not set
CONFIG_UDF_FS=m
CONFIG_UDF_NLS=y

#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=y
# CONFIG_MSDOS_FS is not set
CONFIG_VFAT_FS=y
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
# CONFIG_FAT_DEFAULT_UTF8 is not set
CONFIG_NTFS_FS=m
# CONFIG_NTFS_DEBUG is not set
# CONFIG_NTFS_RW is not set

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_VMCORE=y
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_PROC_CHILDREN=y
CONFIG_KERNFS=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
CONFIG_TMPFS_XATTR=y
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
# CONFIG_CONFIGFS_FS is not set
# CONFIG_EFIVAR_FS is not set
CONFIG_MISC_FILESYSTEMS=y
# CONFIG_ORANGEFS_FS is not set
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
CONFIG_ECRYPT_FS=y
# CONFIG_ECRYPT_FS_MESSAGING is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_LOGFS is not set
# CONFIG_CRAMFS is not set
CONFIG_SQUASHFS=m
# CONFIG_SQUASHFS_FILE_CACHE is not set
CONFIG_SQUASHFS_FILE_DIRECT=y
# CONFIG_SQUASHFS_DECOMP_SINGLE is not set
# CONFIG_SQUASHFS_DECOMP_MULTI is not set
CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU=y
CONFIG_SQUASHFS_XATTR=y
CONFIG_SQUASHFS_ZLIB=y
CONFIG_SQUASHFS_LZ4=y
CONFIG_SQUASHFS_LZO=y
CONFIG_SQUASHFS_XZ=y
# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set
# CONFIG_SQUASHFS_EMBEDDED is not set
CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
# CONFIG_VXFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_OMFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX6FS_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_PSTORE=y
# CONFIG_PSTORE_CONSOLE is not set
# CONFIG_PSTORE_PMSG is not set
# CONFIG_PSTORE_FTRACE is not set
# CONFIG_PSTORE_RAM is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
CONFIG_NETWORK_FILESYSTEMS=y
# CONFIG_NFS_FS is not set
# CONFIG_NFSD is not set
# CONFIG_CEPH_FS is not set
# CONFIG_CIFS is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="utf8"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
# CONFIG_NLS_ASCII is not set
CONFIG_NLS_ISO8859_1=m
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_MAC_ROMAN is not set
# CONFIG_NLS_MAC_CELTIC is not set
# CONFIG_NLS_MAC_CENTEURO is not set
# CONFIG_NLS_MAC_CROATIAN is not set
# CONFIG_NLS_MAC_CYRILLIC is not set
# CONFIG_NLS_MAC_GAELIC is not set
# CONFIG_NLS_MAC_GREEK is not set
# CONFIG_NLS_MAC_ICELAND is not set
# CONFIG_NLS_MAC_INUIT is not set
# CONFIG_NLS_MAC_ROMANIAN is not set
# CONFIG_NLS_MAC_TURKISH is not set
# CONFIG_NLS_UTF8 is not set

#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y

#
# printk and dmesg options
#
CONFIG_PRINTK_TIME=y
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
CONFIG_BOOT_PRINTK_DELAY=y
# CONFIG_DYNAMIC_DEBUG is not set

#
# Compile-time checks and compiler options
#
# CONFIG_DEBUG_INFO is not set
# CONFIG_ENABLE_WARN_DEPRECATED is not set
# CONFIG_ENABLE_MUST_CHECK is not set
CONFIG_FRAME_WARN=1024
# CONFIG_STRIP_ASM_SYMS is not set
# CONFIG_READABLE_ASM is not set
CONFIG_UNUSED_SYMBOLS=y
# CONFIG_PAGE_OWNER is not set
CONFIG_DEBUG_FS=y
# CONFIG_HEADERS_CHECK is not set
# CONFIG_DEBUG_SECTION_MISMATCH is not set
CONFIG_SECTION_MISMATCH_WARN_ONLY=y
CONFIG_ARCH_WANT_FRAME_POINTERS=y
CONFIG_FRAME_POINTER=y
# CONFIG_STACK_VALIDATION is not set
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
CONFIG_MAGIC_SYSRQ=y
CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
CONFIG_DEBUG_KERNEL=y

#
# Memory Debugging
#
# CONFIG_PAGE_EXTENSION is not set
# CONFIG_DEBUG_PAGEALLOC is not set
# CONFIG_PAGE_POISONING is not set
# CONFIG_DEBUG_PAGE_REF is not set
# CONFIG_DEBUG_OBJECTS is not set
# CONFIG_DEBUG_SLAB is not set
CONFIG_HAVE_DEBUG_KMEMLEAK=y
# CONFIG_DEBUG_KMEMLEAK is not set
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_DEBUG_VM is not set
# CONFIG_DEBUG_VIRTUAL is not set
# CONFIG_DEBUG_MEMORY_INIT is not set
# CONFIG_DEBUG_PER_CPU_MAPS is not set
CONFIG_HAVE_DEBUG_STACKOVERFLOW=y
# CONFIG_DEBUG_STACKOVERFLOW is not set
CONFIG_HAVE_ARCH_KMEMCHECK=y
CONFIG_HAVE_ARCH_KASAN=y
# CONFIG_KASAN is not set
CONFIG_ARCH_HAS_KCOV=y
# CONFIG_KCOV is not set
# CONFIG_DEBUG_SHIRQ is not set

#
# Debug Lockups and Hangs
#
CONFIG_LOCKUP_DETECTOR=y
CONFIG_HARDLOCKUP_DETECTOR=y
# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
CONFIG_DETECT_HUNG_TASK=y
CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0
# CONFIG_WQ_WATCHDOG is not set
# CONFIG_PANIC_ON_OOPS is not set
CONFIG_PANIC_ON_OOPS_VALUE=0
CONFIG_PANIC_TIMEOUT=0
CONFIG_SCHED_DEBUG=y
CONFIG_SCHED_INFO=y
CONFIG_SCHEDSTATS=y
# CONFIG_SCHED_STACK_END_CHECK is not set
# CONFIG_DEBUG_TIMEKEEPING is not set
CONFIG_TIMER_STATS=y

#
# Lock Debugging (spinlocks, mutexes, etc...)
#
CONFIG_DEBUG_RT_MUTEXES=y
CONFIG_DEBUG_SPINLOCK=y
CONFIG_DEBUG_MUTEXES=y
# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
CONFIG_DEBUG_LOCK_ALLOC=y
CONFIG_PROVE_LOCKING=y
CONFIG_LOCKDEP=y
# CONFIG_LOCK_STAT is not set
CONFIG_DEBUG_LOCKDEP=y
CONFIG_DEBUG_ATOMIC_SLEEP=y
CONFIG_DEBUG_LOCKING_API_SELFTESTS=y
# CONFIG_LOCK_TORTURE_TEST is not set
CONFIG_TRACE_IRQFLAGS=y
CONFIG_STACKTRACE=y
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_BUGVERBOSE=y
# CONFIG_DEBUG_LIST is not set
CONFIG_DEBUG_PI_LIST=y
# CONFIG_DEBUG_SG is not set
# CONFIG_DEBUG_NOTIFIERS is not set
# CONFIG_DEBUG_CREDENTIALS is not set

#
# RCU Debugging
#
CONFIG_PROVE_RCU=y
# CONFIG_PROVE_RCU_REPEATEDLY is not set
# CONFIG_SPARSE_RCU_POINTER is not set
# CONFIG_TORTURE_TEST is not set
# CONFIG_RCU_PERF_TEST is not set
# CONFIG_RCU_TORTURE_TEST is not set
CONFIG_RCU_CPU_STALL_TIMEOUT=60
# CONFIG_RCU_TRACE is not set
# CONFIG_RCU_EQS_DEBUG is not set
# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
# CONFIG_NOTIFIER_ERROR_INJECTION is not set
# CONFIG_FAULT_INJECTION is not set
CONFIG_LATENCYTOP=y
CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y
# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_NOP_TRACER=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_HAVE_FENTRY=y
CONFIG_HAVE_C_RECORDMCOUNT=y
CONFIG_TRACER_MAX_TRACE=y
CONFIG_TRACE_CLOCK=y
CONFIG_RING_BUFFER=y
CONFIG_EVENT_TRACING=y
CONFIG_CONTEXT_SWITCH_TRACER=y
CONFIG_RING_BUFFER_ALLOW_SWAP=y
CONFIG_TRACING=y
CONFIG_GENERIC_TRACER=y
CONFIG_TRACING_SUPPORT=y
CONFIG_FTRACE=y
CONFIG_FUNCTION_TRACER=y
CONFIG_FUNCTION_GRAPH_TRACER=y
CONFIG_IRQSOFF_TRACER=y
CONFIG_SCHED_TRACER=y
CONFIG_FTRACE_SYSCALLS=y
CONFIG_TRACER_SNAPSHOT=y
CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP=y
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
# CONFIG_PROFILE_ALL_BRANCHES is not set
CONFIG_STACK_TRACER=y
CONFIG_BLK_DEV_IO_TRACE=y
CONFIG_KPROBE_EVENT=y
CONFIG_UPROBE_EVENT=y
CONFIG_PROBE_EVENTS=y
CONFIG_DYNAMIC_FTRACE=y
CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_FUNCTION_PROFILER=y
CONFIG_FTRACE_MCOUNT_RECORD=y
# CONFIG_FTRACE_STARTUP_TEST is not set
CONFIG_MMIOTRACE=y
# CONFIG_HIST_TRIGGERS is not set
# CONFIG_MMIOTRACE_TEST is not set
# CONFIG_TRACEPOINT_BENCHMARK is not set
# CONFIG_RING_BUFFER_BENCHMARK is not set
# CONFIG_RING_BUFFER_STARTUP_TEST is not set
# CONFIG_TRACE_ENUM_MAP_FILE is not set
CONFIG_TRACING_EVENTS_GPIO=y

#
# Runtime Testing
#
# CONFIG_LKDTM is not set
# CONFIG_TEST_LIST_SORT is not set
# CONFIG_KPROBES_SANITY_TEST is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
# CONFIG_RBTREE_TEST is not set
# CONFIG_INTERVAL_TREE_TEST is not set
# CONFIG_PERCPU_TEST is not set
# CONFIG_ATOMIC64_SELFTEST is not set
# CONFIG_TEST_HEXDUMP is not set
# CONFIG_TEST_STRING_HELPERS is not set
# CONFIG_TEST_KSTRTOX is not set
# CONFIG_TEST_PRINTF is not set
# CONFIG_TEST_BITMAP is not set
# CONFIG_TEST_RHASHTABLE is not set
# CONFIG_TEST_HASH is not set
# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set
# CONFIG_DMA_API_DEBUG is not set
# CONFIG_TEST_LKM is not set
# CONFIG_TEST_USER_COPY is not set
# CONFIG_TEST_BPF is not set
# CONFIG_TEST_FIRMWARE is not set
# CONFIG_TEST_UDELAY is not set
CONFIG_MEMTEST=y
# CONFIG_TEST_STATIC_KEYS is not set
# CONFIG_SAMPLES is not set
CONFIG_HAVE_ARCH_KGDB=y
CONFIG_KGDB=y
CONFIG_KGDB_SERIAL_CONSOLE=y
# CONFIG_KGDB_TESTS is not set
CONFIG_KGDB_LOW_LEVEL_TRAP=y
CONFIG_KGDB_KDB=y
CONFIG_KDB_DEFAULT_ENABLE=0x1
CONFIG_KDB_KEYBOARD=y
CONFIG_KDB_CONTINUE_CATASTROPHIC=0
CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y
# CONFIG_UBSAN is not set
CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
CONFIG_STRICT_DEVMEM=y
# CONFIG_IO_STRICT_DEVMEM is not set
# CONFIG_X86_VERBOSE_BOOTUP is not set
CONFIG_EARLY_PRINTK=y
CONFIG_EARLY_PRINTK_DBGP=y
# CONFIG_EARLY_PRINTK_EFI is not set
# CONFIG_X86_PTDUMP_CORE is not set
# CONFIG_X86_PTDUMP is not set
# CONFIG_EFI_PGT_DUMP is not set
# CONFIG_DEBUG_RODATA_TEST is not set
# CONFIG_DEBUG_WX is not set
CONFIG_DEBUG_SET_MODULE_RONX=y
# CONFIG_DEBUG_NX_TEST is not set
CONFIG_DOUBLEFAULT=y
# CONFIG_DEBUG_TLBFLUSH is not set
# CONFIG_IOMMU_DEBUG is not set
# CONFIG_IOMMU_STRESS is not set
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
# CONFIG_X86_DECODER_SELFTEST is not set
CONFIG_IO_DELAY_TYPE_0X80=0
CONFIG_IO_DELAY_TYPE_0XED=1
CONFIG_IO_DELAY_TYPE_UDELAY=2
CONFIG_IO_DELAY_TYPE_NONE=3
# CONFIG_IO_DELAY_0X80 is not set
CONFIG_IO_DELAY_0XED=y
# CONFIG_IO_DELAY_UDELAY is not set
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEFAULT_IO_DELAY_TYPE=1
# CONFIG_DEBUG_BOOT_PARAMS is not set
# CONFIG_CPA_DEBUG is not set
CONFIG_OPTIMIZE_INLINING=y
# CONFIG_DEBUG_ENTRY is not set
# CONFIG_DEBUG_NMI_SELFTEST is not set
CONFIG_X86_DEBUG_FPU=y
# CONFIG_PUNIT_ATOM_DEBUG is not set

#
# Security options
#
CONFIG_KEYS=y
# CONFIG_PERSISTENT_KEYRINGS is not set
# CONFIG_BIG_KEYS is not set
CONFIG_TRUSTED_KEYS=y
CONFIG_ENCRYPTED_KEYS=y
# CONFIG_KEY_DH_OPERATIONS is not set
# CONFIG_SECURITY_DMESG_RESTRICT is not set
CONFIG_SECURITY=y
CONFIG_SECURITYFS=y
CONFIG_SECURITY_NETWORK=y
CONFIG_SECURITY_PATH=y
CONFIG_INTEL_TXT=y
CONFIG_LSM_MMAP_MIN_ADDR=0
CONFIG_SECURITY_SELINUX=y
CONFIG_SECURITY_SELINUX_BOOTPARAM=y
CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=0
CONFIG_SECURITY_SELINUX_DISABLE=y
CONFIG_SECURITY_SELINUX_DEVELOP=y
CONFIG_SECURITY_SELINUX_AVC_STATS=y
CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set
CONFIG_SECURITY_SMACK=y
# CONFIG_SECURITY_SMACK_BRINGUP is not set
# CONFIG_SECURITY_SMACK_NETFILTER is not set
CONFIG_SECURITY_TOMOYO=y
CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048
CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024
# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set
CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init"
CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init"
CONFIG_SECURITY_APPARMOR=y
CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE=1
CONFIG_SECURITY_APPARMOR_HASH=y
# CONFIG_SECURITY_LOADPIN is not set
CONFIG_SECURITY_YAMA=y
CONFIG_INTEGRITY=y
CONFIG_INTEGRITY_SIGNATURE=y
# CONFIG_INTEGRITY_ASYMMETRIC_KEYS is not set
CONFIG_INTEGRITY_AUDIT=y
# CONFIG_IMA is not set
CONFIG_EVM=y
CONFIG_EVM_ATTR_FSUUID=y
# CONFIG_EVM_EXTRA_SMACK_XATTRS is not set
# CONFIG_DEFAULT_SECURITY_SELINUX is not set
# CONFIG_DEFAULT_SECURITY_SMACK is not set
# CONFIG_DEFAULT_SECURITY_TOMOYO is not set
CONFIG_DEFAULT_SECURITY_APPARMOR=y
# CONFIG_DEFAULT_SECURITY_DAC is not set
CONFIG_DEFAULT_SECURITY="apparmor"
CONFIG_XOR_BLOCKS=m
CONFIG_CRYPTO=y

#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_BLKCIPHER=y
CONFIG_CRYPTO_BLKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=y
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_RNG_DEFAULT=y
CONFIG_CRYPTO_AKCIPHER2=y
CONFIG_CRYPTO_AKCIPHER=y
CONFIG_CRYPTO_RSA=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
# CONFIG_CRYPTO_USER is not set
CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
CONFIG_CRYPTO_GF128MUL=y
CONFIG_CRYPTO_NULL=y
CONFIG_CRYPTO_NULL2=y
# CONFIG_CRYPTO_PCRYPT is not set
CONFIG_CRYPTO_WORKQUEUE=y
# CONFIG_CRYPTO_CRYPTD is not set
# CONFIG_CRYPTO_MCRYPTD is not set
# CONFIG_CRYPTO_AUTHENC is not set
# CONFIG_CRYPTO_TEST is not set

#
# Authenticated Encryption with Associated Data
#
CONFIG_CRYPTO_CCM=m
CONFIG_CRYPTO_GCM=m
# CONFIG_CRYPTO_CHACHA20POLY1305 is not set
CONFIG_CRYPTO_SEQIV=y
CONFIG_CRYPTO_ECHAINIV=m

#
# Block modes
#
CONFIG_CRYPTO_CBC=y
CONFIG_CRYPTO_CTR=y
CONFIG_CRYPTO_CTS=y
CONFIG_CRYPTO_ECB=y
# CONFIG_CRYPTO_LRW is not set
# CONFIG_CRYPTO_PCBC is not set
CONFIG_CRYPTO_XTS=y
# CONFIG_CRYPTO_KEYWRAP is not set

#
# Hash modes
#
CONFIG_CRYPTO_CMAC=m
CONFIG_CRYPTO_HMAC=y
# CONFIG_CRYPTO_XCBC is not set
# CONFIG_CRYPTO_VMAC is not set

#
# Digest
#
CONFIG_CRYPTO_CRC32C=y
CONFIG_CRYPTO_CRC32C_INTEL=y
# CONFIG_CRYPTO_CRC32 is not set
# CONFIG_CRYPTO_CRC32_PCLMUL is not set
CONFIG_CRYPTO_CRCT10DIF=y
# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set
CONFIG_CRYPTO_GHASH=m
# CONFIG_CRYPTO_POLY1305 is not set
# CONFIG_CRYPTO_POLY1305_X86_64 is not set
# CONFIG_CRYPTO_MD4 is not set
CONFIG_CRYPTO_MD5=y
# CONFIG_CRYPTO_MICHAEL_MIC is not set
# CONFIG_CRYPTO_RMD128 is not set
# CONFIG_CRYPTO_RMD160 is not set
# CONFIG_CRYPTO_RMD256 is not set
# CONFIG_CRYPTO_RMD320 is not set
CONFIG_CRYPTO_SHA1=y
# CONFIG_CRYPTO_SHA1_SSSE3 is not set
# CONFIG_CRYPTO_SHA256_SSSE3 is not set
# CONFIG_CRYPTO_SHA512_SSSE3 is not set
# CONFIG_CRYPTO_SHA1_MB is not set
CONFIG_CRYPTO_SHA256=y
CONFIG_CRYPTO_SHA512=y
# CONFIG_CRYPTO_TGR192 is not set
# CONFIG_CRYPTO_WP512 is not set
# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set

#
# Ciphers
#
CONFIG_CRYPTO_AES=y
# CONFIG_CRYPTO_AES_X86_64 is not set
# CONFIG_CRYPTO_AES_NI_INTEL is not set
# CONFIG_CRYPTO_ANUBIS is not set
CONFIG_CRYPTO_ARC4=m
# CONFIG_CRYPTO_BLOWFISH is not set
# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA is not set
# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set
# CONFIG_CRYPTO_CAST5 is not set
# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set
# CONFIG_CRYPTO_CAST6 is not set
# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set
# CONFIG_CRYPTO_DES is not set
# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set
# CONFIG_CRYPTO_FCRYPT is not set
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_SALSA20 is not set
# CONFIG_CRYPTO_SALSA20_X86_64 is not set
# CONFIG_CRYPTO_CHACHA20 is not set
# CONFIG_CRYPTO_CHACHA20_X86_64 is not set
# CONFIG_CRYPTO_SEED is not set
# CONFIG_CRYPTO_SERPENT is not set
# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set
# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set
# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set
# CONFIG_CRYPTO_TEA is not set
# CONFIG_CRYPTO_TWOFISH is not set
# CONFIG_CRYPTO_TWOFISH_X86_64 is not set
# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set
# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set

#
# Compression
#
# CONFIG_CRYPTO_DEFLATE is not set
CONFIG_CRYPTO_LZO=y
# CONFIG_CRYPTO_842 is not set
CONFIG_CRYPTO_LZ4=m
CONFIG_CRYPTO_LZ4HC=m

#
# Random Number Generation
#
# CONFIG_CRYPTO_ANSI_CPRNG is not set
CONFIG_CRYPTO_DRBG_MENU=y
CONFIG_CRYPTO_DRBG_HMAC=y
# CONFIG_CRYPTO_DRBG_HASH is not set
# CONFIG_CRYPTO_DRBG_CTR is not set
CONFIG_CRYPTO_DRBG=y
CONFIG_CRYPTO_JITTERENTROPY=y
# CONFIG_CRYPTO_USER_API_HASH is not set
# CONFIG_CRYPTO_USER_API_SKCIPHER is not set
# CONFIG_CRYPTO_USER_API_RNG is not set
# CONFIG_CRYPTO_USER_API_AEAD is not set
CONFIG_CRYPTO_HASH_INFO=y
CONFIG_CRYPTO_HW=y
CONFIG_CRYPTO_DEV_PADLOCK=y
# CONFIG_CRYPTO_DEV_PADLOCK_AES is not set
# CONFIG_CRYPTO_DEV_PADLOCK_SHA is not set
# CONFIG_CRYPTO_DEV_CCP is not set
# CONFIG_CRYPTO_DEV_QAT_DH895xCC is not set
# CONFIG_CRYPTO_DEV_QAT_C3XXX is not set
# CONFIG_CRYPTO_DEV_QAT_C62X is not set
# CONFIG_CRYPTO_DEV_QAT_DH895xCCVF is not set
# CONFIG_CRYPTO_DEV_QAT_C3XXXVF is not set
# CONFIG_CRYPTO_DEV_QAT_C62XVF is not set
CONFIG_ASYMMETRIC_KEY_TYPE=y
CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
CONFIG_X509_CERTIFICATE_PARSER=y
CONFIG_PKCS7_MESSAGE_PARSER=y
# CONFIG_PKCS7_TEST_KEY is not set
# CONFIG_SIGNED_PE_FILE_VERIFICATION is not set

#
# Certificates for signature checking
#
CONFIG_MODULE_SIG_KEY="certs/signing_key.pem"
CONFIG_SYSTEM_TRUSTED_KEYRING=y
CONFIG_SYSTEM_TRUSTED_KEYS=""
# CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
# CONFIG_SECONDARY_TRUSTED_KEYRING is not set
CONFIG_HAVE_KVM=y
CONFIG_HAVE_KVM_IRQCHIP=y
CONFIG_HAVE_KVM_IRQFD=y
CONFIG_HAVE_KVM_IRQ_ROUTING=y
CONFIG_HAVE_KVM_EVENTFD=y
CONFIG_KVM_APIC_ARCHITECTURE=y
CONFIG_KVM_MMIO=y
CONFIG_KVM_ASYNC_PF=y
CONFIG_HAVE_KVM_MSI=y
CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y
CONFIG_KVM_VFIO=y
CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y
CONFIG_KVM_COMPAT=y
CONFIG_HAVE_KVM_IRQ_BYPASS=y
CONFIG_VIRTUALIZATION=y
CONFIG_KVM=m
CONFIG_KVM_INTEL=m
CONFIG_KVM_AMD=m
# CONFIG_KVM_MMU_AUDIT is not set
CONFIG_KVM_DEVICE_ASSIGNMENT=y
CONFIG_BINARY_PRINTF=y

#
# Library routines
#
CONFIG_RAID6_PQ=m
CONFIG_BITREVERSE=y
# CONFIG_HAVE_ARCH_BITREVERSE is not set
CONFIG_RATIONAL=y
CONFIG_GENERIC_STRNCPY_FROM_USER=y
CONFIG_GENERIC_STRNLEN_USER=y
CONFIG_GENERIC_NET_UTILS=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
CONFIG_GENERIC_PCI_IOMAP=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_IO=y
CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
CONFIG_ARCH_HAS_FAST_MULTIPLIER=y
CONFIG_CRC_CCITT=m
CONFIG_CRC16=y
CONFIG_CRC_T10DIF=y
CONFIG_CRC_ITU_T=m
CONFIG_CRC32=y
# CONFIG_CRC32_SELFTEST is not set
CONFIG_CRC32_SLICEBY8=y
# CONFIG_CRC32_SLICEBY4 is not set
# CONFIG_CRC32_SARWATE is not set
# CONFIG_CRC32_BIT is not set
# CONFIG_CRC7 is not set
CONFIG_LIBCRC32C=m
# CONFIG_CRC8 is not set
# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set
# CONFIG_RANDOM32_SELFTEST is not set
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_LZ4_COMPRESS=m
CONFIG_LZ4HC_COMPRESS=m
CONFIG_LZ4_DECOMPRESS=y
CONFIG_XZ_DEC=y
CONFIG_XZ_DEC_X86=y
# CONFIG_XZ_DEC_POWERPC is not set
# CONFIG_XZ_DEC_IA64 is not set
# CONFIG_XZ_DEC_ARM is not set
# CONFIG_XZ_DEC_ARMTHUMB is not set
# CONFIG_XZ_DEC_SPARC is not set
CONFIG_XZ_DEC_BCJ=y
# CONFIG_XZ_DEC_TEST is not set
CONFIG_DECOMPRESS_GZIP=y
CONFIG_DECOMPRESS_BZIP2=y
CONFIG_DECOMPRESS_LZMA=y
CONFIG_DECOMPRESS_XZ=y
CONFIG_DECOMPRESS_LZO=y
CONFIG_DECOMPRESS_LZ4=y
CONFIG_GENERIC_ALLOCATOR=y
CONFIG_INTERVAL_TREE=y
CONFIG_RADIX_TREE_MULTIORDER=y
CONFIG_ASSOCIATIVE_ARRAY=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT_MAP=y
CONFIG_HAS_DMA=y
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_GLOB=y
# CONFIG_GLOB_SELFTEST is not set
CONFIG_NLATTR=y
CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
CONFIG_CLZ_TAB=y
# CONFIG_CORDIC is not set
CONFIG_DDR=y
# CONFIG_IRQ_POLL is not set
CONFIG_MPILIB=y
CONFIG_SIGNATURE=y
CONFIG_OID_REGISTRY=y
CONFIG_UCS2_STRING=y
CONFIG_FONT_SUPPORT=y
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
# CONFIG_SG_SPLIT is not set
CONFIG_SG_POOL=y
CONFIG_ARCH_HAS_SG_CHAIN=y
CONFIG_ARCH_HAS_PMEM_API=y
CONFIG_ARCH_HAS_MMIO_FLUSH=y

^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: [PATCH v3 00/17] Xattr inode operation removal
  2016-05-30  9:54 ` [PATCH v3 00/17] Xattr inode operation removal Sedat Dilek
@ 2016-05-30 10:49   ` Andreas Gruenbacher
  2016-05-30 12:56     ` Sedat Dilek
  0 siblings, 1 reply; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30 10:49 UTC (permalink / raw)
  To: sedat.dilek
  Cc: Alexander Viro, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel, LSM,
	David Howells, Serge Hallyn, Dmitry Kasatkin, Paul Moore,
	Stephen Smalley, Eric Paris, Casey Schaufler, Oleg Drokin,
	Andreas Dilger

On Mon, May 30, 2016 at 11:54 AM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> On 5/30/16, Andreas Gruenbacher <agruenba@redhat.com> wrote:
>> This is version 3 of the xattr inode operation removal patch series. The
>> patches are available in git form at:
>>
>>
>> https://git.kernel.org/cgit/linux/kernel/git/agruen/linux.git/log/?h=work.xattr
[...]
>>
> Hi,
>
> I pulled in agruen/linux.git#work.xattr on top of Linux v4.7-rc1 and noticed...
>
>  92 files changed, 563 insertions(+), 703 deletions(-)
>
> So this is on top of Linux v4.7-rc1+?

Well, I've actually rebased the patches on top of commit b02b1fbd
which is the current mainline and one merge after v4.7-rc1, but the
few scsi commits in between -rc1 and b02b1fbd are completely
unrelated. You can easily see that in git.

> I am here on Ubuntu/precise AMD64 realized as a WUBI-installation.
> So I use fuse, loop-device and ext4-fs.
>
> Not sure, how to test your patchset.
> Can you give some instructions on a testcase/usecase?

The patches potentially affect xattrs and anthing that's xattr based,
like POSIX ACLs, SELinux, and Smack. There are some POSX ACL tests in
xfstests. The basic xattr functionality can of course be checked with
getfattr / setfattr. Other than that, I can probably only refer you to
the code itself.

> Booting into a kernel with your patchset looks fine to me - on the 1st sight.

Okay, thanks.

Andreas

^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: [PATCH v3 00/17] Xattr inode operation removal
  2016-05-30 10:49   ` Andreas Gruenbacher
@ 2016-05-30 12:56     ` Sedat Dilek
  2016-05-30 16:02       ` Sedat Dilek
  0 siblings, 1 reply; 27+ messages in thread
From: Sedat Dilek @ 2016-05-30 12:56 UTC (permalink / raw)
  To: Andreas Gruenbacher
  Cc: Alexander Viro, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel, LSM,
	David Howells, Serge Hallyn, Dmitry Kasatkin, Paul Moore,
	Stephen Smalley, Eric Paris, Casey Schaufler, Oleg Drokin,
	Andreas Dilger

[-- Attachment #1: Type: text/plain, Size: 3017 bytes --]

On 5/30/16, Andreas Gruenbacher <agruenba@redhat.com> wrote:
> On Mon, May 30, 2016 at 11:54 AM, Sedat Dilek <sedat.dilek@gmail.com>
> wrote:
>> On 5/30/16, Andreas Gruenbacher <agruenba@redhat.com> wrote:
>>> This is version 3 of the xattr inode operation removal patch series. The
>>> patches are available in git form at:
>>>
>>>
>>> https://git.kernel.org/cgit/linux/kernel/git/agruen/linux.git/log/?h=work.xattr
> [...]
>>>
>> Hi,
>>
>> I pulled in agruen/linux.git#work.xattr on top of Linux v4.7-rc1 and
>> noticed...
>>
>>  92 files changed, 563 insertions(+), 703 deletions(-)
>>
>> So this is on top of Linux v4.7-rc1+?
>
> Well, I've actually rebased the patches on top of commit b02b1fbd
> which is the current mainline and one merge after v4.7-rc1, but the
> few scsi commits in between -rc1 and b02b1fbd are completely
> unrelated. You can easily see that in git.
>

I have seen the scsi changes when I ran my script which generates a
patchset where latest "git-tag in Linus tree" is the base, here
v4.7-rc1.

>> I am here on Ubuntu/precise AMD64 realized as a WUBI-installation.
>> So I use fuse, loop-device and ext4-fs.
>>
>> Not sure, how to test your patchset.
>> Can you give some instructions on a testcase/usecase?
>
> The patches potentially affect xattrs and anthing that's xattr based,
> like POSIX ACLs, SELinux, and Smack. There are some POSX ACL tests in
> xfstests. The basic xattr functionality can of course be checked with
> getfattr / setfattr. Other than that, I can probably only refer you to
> the code itself.
>

Here I have LTP v20160126 installed.

# cat /opt/ltp/Version
20160126

I ran acl_test01 (which I hacked a bit)...

# LC_ALL=C ./runltp -s acl_test01 | tee acl_test01.log

# cat results/LTP_RUN_ON-2016_05_30-14h_52m_29s.log
Test Start Time: Mon May 30 14:52:30 2016
-----------------------------------------
Testcase                       Result     Exit Value
--------                       ------     ----------
acl_test01                     PASS       0

-----------------------------------------------
Total Tests: 1
Total Skipped Tests: 0
Total Failures: 0
Kernel Version: 4.7.0-rc1-2-iniza-small
Machine Architecture: x86_64
Hostname: fambox

...and it looks good.

>> Booting into a kernel with your patchset looks fine to me - on the 1st
>> sight.
>
> Okay, thanks.
>

Cannot say if this helps you.

- Sedat -

P.S.: Hacking acl_test01

# diff -uprN ./testcases/bin/acl_test01.orig ./testcases/bin/acl_test01
--- ./testcases/bin/acl_test01.orig     2016-03-27 21:45:00.768007420 +0200
+++ ./testcases/bin/acl_test01  2016-05-30 14:41:50.195986299 +0200
@@ -41,8 +41,6 @@ export TCID=acltest01
 export TST_TOTAL=5
 export TST_COUNT=1

-. test.sh
-
 TMP=${TMP:=/tmp}

 TEST_USER1="acltest1"
@@ -54,6 +52,8 @@ FILE_ACL="$TMP/tacl/mount-ext3/test_file
 FILE_ACL_LINK="$TMP/tacl/mount-ext3/test_file_link"
 TCbin=`pwd`

+. $TCbin/test.sh
+
 COMMAND=$(command -v "getenforce" "setenforce" |wc -l)
 if [ $COMMAND -eq 2 ]; then
        SELINUX=$(getenforce)

- EOT -

[-- Attachment #2: acl_test01.log --]
[-- Type: application/octet-stream, Size: 9105 bytes --]

[-- Attachment #3: LTP_RUN_ON-2016_05_30-14h_52m_29s.log --]
[-- Type: application/octet-stream, Size: 430 bytes --]

Test Start Time: Mon May 30 14:52:30 2016
-----------------------------------------
Testcase                       Result     Exit Value
--------                       ------     ----------
acl_test01                     PASS       0    

-----------------------------------------------
Total Tests: 1
Total Skipped Tests: 0
Total Failures: 0
Kernel Version: 4.7.0-rc1-2-iniza-small
Machine Architecture: x86_64
Hostname: fambox


^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: [PATCH v3 00/17] Xattr inode operation removal
  2016-05-30 12:56     ` Sedat Dilek
@ 2016-05-30 16:02       ` Sedat Dilek
  2016-05-30 18:22         ` Andreas Gruenbacher
  0 siblings, 1 reply; 27+ messages in thread
From: Sedat Dilek @ 2016-05-30 16:02 UTC (permalink / raw)
  To: Andreas Gruenbacher
  Cc: Alexander Viro, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel, LSM,
	David Howells, Serge Hallyn, Dmitry Kasatkin, Paul Moore,
	Stephen Smalley, Eric Paris, Casey Schaufler, Oleg Drokin,
	Andreas Dilger

[-- Attachment #1: Type: text/plain, Size: 3286 bytes --]

[...]
>>> Not sure, how to test your patchset.
>>> Can you give some instructions on a testcase/usecase?
>>
>> The patches potentially affect xattrs and anthing that's xattr based,
>> like POSIX ACLs, SELinux, and Smack. There are some POSX ACL tests in
>> xfstests. The basic xattr functionality can of course be checked with
>> getfattr / setfattr. Other than that, I can probably only refer you to
>> the code itself.
>>
>
> Here I have LTP v20160126 installed.
>
> # cat /opt/ltp/Version
> 20160126
>
> I ran acl_test01 (which I hacked a bit)...
>
> # LC_ALL=C ./runltp -s acl_test01 | tee acl_test01.log
>
> # cat results/LTP_RUN_ON-2016_05_30-14h_52m_29s.log
> Test Start Time: Mon May 30 14:52:30 2016
> -----------------------------------------
> Testcase                       Result     Exit Value
> --------                       ------     ----------
> acl_test01                     PASS       0
>
> -----------------------------------------------
> Total Tests: 1
> Total Skipped Tests: 0
> Total Failures: 0
> Kernel Version: 4.7.0-rc1-2-iniza-small
> Machine Architecture: x86_64
> Hostname: fambox
>
> ...and it looks good.
>
>>> Booting into a kernel with your patchset looks fine to me - on the 1st
>>> sight.
>>
>> Okay, thanks.
>>
>
> Cannot say if this helps you.
>
> - Sedat -
>
> P.S.: Hacking acl_test01
>
> # diff -uprN ./testcases/bin/acl_test01.orig ./testcases/bin/acl_test01
> --- ./testcases/bin/acl_test01.orig     2016-03-27 21:45:00.768007420 +0200
> +++ ./testcases/bin/acl_test01  2016-05-30 14:41:50.195986299 +0200
> @@ -41,8 +41,6 @@ export TCID=acltest01
>  export TST_TOTAL=5
>  export TST_COUNT=1
>
> -. test.sh
> -
>  TMP=${TMP:=/tmp}
>
>  TEST_USER1="acltest1"
> @@ -54,6 +52,8 @@ FILE_ACL="$TMP/tacl/mount-ext3/test_file
>  FILE_ACL_LINK="$TMP/tacl/mount-ext3/test_file_link"
>  TCbin=`pwd`
>
> +. $TCbin/test.sh
> +
>  COMMAND=$(command -v "getenforce" "setenforce" |wc -l)
>  if [ $COMMAND -eq 2 ]; then
>         SELINUX=$(getenforce)
>
> - EOT -
>

I contacted the LTP mailing-list on the acl_test01 issues - WIP.

>From the LTP-ML I got the impulse to test with the xattr testcase...

root# cd /opt/ltp ; LC_ALL=C ./runltp -s xattr | tee xattr.log

...this fails only in the cgroup_xattr testcase.

# cat results/LTP_RUN_ON-2016_05_30-17h_49m_41s.log
Test Start Time: Mon May 30 17:49:42 2016
-----------------------------------------
Testcase                       Result     Exit Value
--------                       ------     ----------
getxattr01                     PASS       0
getxattr02                     PASS       0
getxattr03                     PASS       0
llistxattr01                   PASS       0
llistxattr02                   PASS       0
llistxattr03                   PASS       0
removexattr01                  PASS       0
removexattr02                  PASS       0
setxattr01                     PASS       0
setxattr02                     PASS       0
setxattr03                     PASS       0
cgroup_xattr                   FAIL       1

-----------------------------------------------
Total Tests: 12
Total Skipped Tests: 0
Total Failures: 1
Kernel Version: 4.7.0-rc1-2-iniza-small
Machine Architecture: x86_64
Hostname: fambox

More details in the xattr.log file.

Hope this feedback helps.

- Sedat -

[-- Attachment #2: LTP_RUN_ON-2016_05_30-17h_49m_41s.log --]
[-- Type: application/octet-stream, Size: 959 bytes --]

Test Start Time: Mon May 30 17:49:42 2016
-----------------------------------------
Testcase                       Result     Exit Value
--------                       ------     ----------
getxattr01                     PASS       0    
getxattr02                     PASS       0    
getxattr03                     PASS       0    
llistxattr01                   PASS       0    
llistxattr02                   PASS       0    
llistxattr03                   PASS       0    
removexattr01                  PASS       0    
removexattr02                  PASS       0    
setxattr01                     PASS       0    
setxattr02                     PASS       0    
setxattr03                     PASS       0    
cgroup_xattr                   FAIL       1    

-----------------------------------------------
Total Tests: 12
Total Skipped Tests: 0
Total Failures: 1
Kernel Version: 4.7.0-rc1-2-iniza-small
Machine Architecture: x86_64
Hostname: fambox


[-- Attachment #3: xattr.log --]
[-- Type: application/octet-stream, Size: 205062 bytes --]

INFO: creating /opt/ltp/results directory

    INFO: no command files were provided. Will execute the following
          runtest scenario files:

syscalls fs fs_perms_simple fsx dio io mm ipc sched math nptl pty containers fs_bind controllers filecaps cap_bounds fcntl-locktests connectors admin_tools timers power_management_tests numa hugetlb commands hyperthreading kernel_misc modules fs_ext4 pipes can cpuhotplug ipv6_lib input 

Checking for required user/group ids

'nobody' user id and group found.
'bin' user id and group found.
'daemon' user id and group found.
Users group found.
Sys group found.
Required users/groups exist.
If some fields are empty or look unusual you may have an old version.
Compare to the current minimal requirements in Documentation/Changes.
 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION="Ubuntu 12.04.5 LTS"
NAME="Ubuntu"
VERSION="12.04.5 LTS, Precise Pangolin"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu precise (12.04.5 LTS)"
VERSION_ID="12.04"
Linux fambox 4.7.0-rc1-2-iniza-small #1 SMP Mon May 30 11:36:11 CEST 2016 x86_64 x86_64 x86_64 GNU/Linux
 
Gnu C                  gcc (Ubuntu 4.9.2-0ubuntu1~12.04) 4.9.2
Gnu make               3.81
util-linux             linux 2.20.1
mount                  linux 2.20.1 (with libblkid and selinux support)
modutils               6
e2fsprogs              1.42
PPP                    2.4.5
Linux C Library        > libc.2.15
Dynamic linker (ldd)   2.15
Procps                 3.2.8
Net-tools              1.60
iproute2              iproute2-ss121211
Kbd                    1.15.2
Sh-utils               8.13
Modules Loaded         ppp_deflate bsd_comp ppp_async crc_ccitt option usb_wwan cdc_ether usbnet usbserial bnep rfcomm arc4 iwldvm parport_pc mac80211 ppdev i915 snd_hda_codec_hdmi uvcvideo snd_hda_codec_realtek snd_hda_codec_generic kvm_intel snd_hda_intel snd_hda_codec videobuf2_vmalloc kvm joydev videobuf2_memops snd_hwdep btusb videobuf2_v4l2 snd_hda_core btrtl i2c_algo_bit videobuf2_core snd_pcm btbcm videodev drm_kms_helper usb_storage iwlwifi btintel snd_seq_midi irqbypass bluetooth syscopyarea snd_seq_midi_event sysfillrect psmouse snd_rawmidi sysimgblt snd_seq fb_sys_fops snd_timer samsung_laptop serio_raw drm snd_seq_device cfg80211 snd intel_rst soundcore lpc_ich wmi mac_hid video acpi_cpufreq binfmt_misc lp parport hid_generic usbhid hid r8169 mii

free reports:
             total       used       free     shared    buffers     cached
Mem:       3924488    3736264     188224          0    1048240    1285316
-/+ buffers/cache:    1402708    2521780
Swap:       262140          0     262140

/proc/cpuinfo
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 42
model name	: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping	: 7
microcode	: 0x28
cpu MHz		: 1601.000
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 2
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs		:
bogomips	: 3192.76
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 6
model		: 42
model name	: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping	: 7
microcode	: 0x28
cpu MHz		: 1601.000
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 2
apicid		: 1
initial apicid	: 1
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs		:
bogomips	: 3199.72
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

processor	: 2
vendor_id	: GenuineIntel
cpu family	: 6
model		: 42
model name	: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping	: 7
microcode	: 0x28
cpu MHz		: 1601.000
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 2
apicid		: 2
initial apicid	: 2
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs		:
bogomips	: 3196.87
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

processor	: 3
vendor_id	: GenuineIntel
cpu family	: 6
model		: 42
model name	: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping	: 7
microcode	: 0x28
cpu MHz		: 1601.000
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 2
apicid		: 3
initial apicid	: 3
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs		:
bogomips	: 3197.03
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

no big block device was specified on commandline.
Tests which require a big block device are disabled.
You can specify it with option -z
COMMAND:    /opt/ltp/bin/ltp-pan  -e -S   -a 4568     -n 4568  -p  -f /tmp/ltp-ux1gyBTIjc/alltests -l /opt/ltp/results/LTP_RUN_ON-2016_05_30-17h_49m_41s.log  -C /opt/ltp/output/LTP_RUN_ON-2016_05_30-17h_49m_41s.failed -T /opt/ltp/output/LTP_RUN_ON-2016_05_30-17h_49m_41s.tconf
INFO: Restricted to xattr
LOG File: /opt/ltp/results/LTP_RUN_ON-2016_05_30-17h_49m_41s.log
FAILED COMMAND File: /opt/ltp/output/LTP_RUN_ON-2016_05_30-17h_49m_41s.failed
TCONF COMMAND File: /opt/ltp/output/LTP_RUN_ON-2016_05_30-17h_49m_41s.tconf
Running tests.......
<<<test_start>>>
tag=getxattr01 stime=1464623382
cmdline="getxattr01"
contacts=""
analysis=exit
<<<test_output>>>
getxattr01    1  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
getxattr01    2  TPASS  :  expected behavior: TEST_ERRNO=ERANGE(34): Numerical result out of range
getxattr01    3  TPASS  :  expected behavior: TEST_ERRNO=SUCCESS(0): Success
getxattr01    4  TPASS  :  Got the right value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getxattr02 stime=1464623382
cmdline="getxattr02"
contacts=""
analysis=exit
<<<test_output>>>
getxattr02    1  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
getxattr02    2  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
getxattr02    3  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
getxattr02    4  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
<<<execution_status>>>
initiation_status="ok"
duration=1 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getxattr03 stime=1464623383
cmdline="getxattr03"
contacts=""
analysis=exit
<<<test_output>>>
getxattr03    1  TPASS  :  getxattr(2) returned correct value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=llistxattr01 stime=1464623383
cmdline="llistxattr01"
contacts=""
analysis=exit
<<<test_output>>>
llistxattr01.c:100: PASS: llistxattr() succeeded

Summary:
passed   1
failed   0
skipped  0
warnings 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=llistxattr02 stime=1464623383
cmdline="llistxattr02"
contacts=""
analysis=exit
<<<test_output>>>
llistxattr02.c:76: PASS: llistxattr() failed as expected: ERANGE
llistxattr02.c:76: PASS: llistxattr() failed as expected: ENOENT
llistxattr02.c:76: PASS: llistxattr() failed as expected: EFAULT

Summary:
passed   3
failed   0
skipped  0
warnings 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=llistxattr03 stime=1464623383
cmdline="llistxattr03"
contacts=""
analysis=exit
<<<test_output>>>
llistxattr03.c:67: PASS: llistxattr() succeed with suitable buffer
llistxattr03.c:67: PASS: llistxattr() succeed with suitable buffer

Summary:
passed   2
failed   0
skipped  0
warnings 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=removexattr01 stime=1464623383
cmdline="removexattr01"
contacts=""
analysis=exit
<<<test_output>>>
removexattr01    1  TPASS  :  removexattr() succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=removexattr02 stime=1464623383
cmdline="removexattr02"
contacts=""
analysis=exit
<<<test_output>>>
removexattr02    1  TPASS  :  removexattr() failed as expected: TEST_ERRNO=ENODATA(61): No data available
removexattr02    2  TPASS  :  removexattr() failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
removexattr02    3  TPASS  :  removexattr() failed as expected: TEST_ERRNO=EFAULT(14): Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setxattr01 stime=1464623383
cmdline="setxattr01"
contacts=""
analysis=exit
<<<test_output>>>
setxattr01    1  TPASS  :  expected behavior: TEST_ERRNO=EINVAL(22): Invalid argument
setxattr01    2  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
setxattr01    3  TPASS  :  expected behavior: TEST_ERRNO=ERANGE(34): Numerical result out of range
setxattr01    4  TPASS  :  expected behavior: TEST_ERRNO=E2BIG(7): Argument list too long
setxattr01    5  TPASS  :  expected behavior: TEST_ERRNO=SUCCESS(0): Success
setxattr01    6  TPASS  :  expected behavior: TEST_ERRNO=EEXIST(17): File exists
setxattr01    7  TPASS  :  expected behavior: TEST_ERRNO=SUCCESS(0): Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setxattr02 stime=1464623383
cmdline="setxattr02"
contacts=""
analysis=exit
<<<test_output>>>
setxattr02    1  TPASS  :  expected behavior: TEST_ERRNO=SUCCESS(0): Success
setxattr02    2  TPASS  :  expected behavior: TEST_ERRNO=SUCCESS(0): Success
setxattr02    3  TPASS  :  expected behavior: TEST_ERRNO=EEXIST(17): File exists
setxattr02    4  TPASS  :  expected behavior: TEST_ERRNO=EPERM(1): Operation not permitted
setxattr02    5  TPASS  :  expected behavior: TEST_ERRNO=EPERM(1): Operation not permitted
setxattr02    6  TPASS  :  expected behavior: TEST_ERRNO=EPERM(1): Operation not permitted
setxattr02    7  TPASS  :  expected behavior: TEST_ERRNO=EPERM(1): Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setxattr03 stime=1464623383
cmdline="setxattr03"
contacts=""
analysis=exit
<<<test_output>>>
setxattr03    1  TPASS  :  Set attr to immutable file: TEST_ERRNO=EPERM(1): Operation not permitted
setxattr03    2  TPASS  :  Set attr to append-only file: TEST_ERRNO=EPERM(1): Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=cgroup_xattr stime=1464623383
cmdline="cgroup_xattr"
contacts=""
analysis=exit
<<<test_output>>>
cgroup_xattr    0  TINFO  :  mount options 0: xattr,cpuset,cpu,cpuacct,blkio,memory,devices,freezer,perf_event,hugetlb (hier = 0)
cgroup_xattr    0  TINFO  :  In dir .
cgroup_xattr    1  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu'
cgroup_xattr    2  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu'
cgroup_xattr    3  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuacct.usage_percpu'
cgroup_xattr    4  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu'
cgroup_xattr    5  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu'
cgroup_xattr    0  TINFO  :  In dir test
cgroup_xattr    6  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu'
cgroup_xattr    7  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu'
cgroup_xattr    8  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuacct.usage_percpu'
cgroup_xattr    9  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu'
cgroup_xattr   10  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu'
cgroup_xattr   11  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.io_serviced'
cgroup_xattr   12  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.io_serviced'
cgroup_xattr   13  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.throttle.io_serviced'
cgroup_xattr   14  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.io_serviced'
cgroup_xattr   15  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.io_serviced'
cgroup_xattr   16  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.pressure_level'
cgroup_xattr   17  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.pressure_level'
cgroup_xattr   18  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.pressure_level'
cgroup_xattr   19  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.pressure_level'
cgroup_xattr   20  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.pressure_level'
cgroup_xattr   21  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr   22  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr   23  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr   24  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr   25  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr   26  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr   27  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr   28  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr   29  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr   30  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr   31  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.use_hierarchy'
cgroup_xattr   32  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.use_hierarchy'
cgroup_xattr   33  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.use_hierarchy'
cgroup_xattr   34  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.use_hierarchy'
cgroup_xattr   35  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.use_hierarchy'
cgroup_xattr   36  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.swappiness'
cgroup_xattr   37  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.swappiness'
cgroup_xattr   38  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.swappiness'
cgroup_xattr   39  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.swappiness'
cgroup_xattr   40  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.swappiness'
cgroup_xattr   41  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_serviced_recursive'
cgroup_xattr   42  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_serviced_recursive'
cgroup_xattr   43  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_serviced_recursive'
cgroup_xattr   44  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_serviced_recursive'
cgroup_xattr   45  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_serviced_recursive'
cgroup_xattr   46  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.time'
cgroup_xattr   47  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.time'
cgroup_xattr   48  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.time'
cgroup_xattr   49  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.time'
cgroup_xattr   50  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.time'
cgroup_xattr   51  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr   52  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr   53  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr   54  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr   55  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr   56  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mem_hardwall'
cgroup_xattr   57  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mem_hardwall'
cgroup_xattr   58  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.mem_hardwall'
cgroup_xattr   59  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mem_hardwall'
cgroup_xattr   60  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mem_hardwall'
cgroup_xattr   61  TPASS  :  Expect: can't set xattr key 'security.' to file 'tasks'
cgroup_xattr   62  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'tasks'
cgroup_xattr   63  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'tasks'
cgroup_xattr   64  TPASS  :  Expect: can't set xattr key 'user.' to file 'tasks'
cgroup_xattr   65  TPASS  :  Expect: can't set xattr key 'system.' to file 'tasks'
cgroup_xattr   66  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_serviced'
cgroup_xattr   67  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_serviced'
cgroup_xattr   68  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_serviced'
cgroup_xattr   69  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_serviced'
cgroup_xattr   70  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_serviced'
cgroup_xattr   71  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr   72  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr   73  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr   74  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr   75  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr   76  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.reset_stats'
cgroup_xattr   77  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.reset_stats'
cgroup_xattr   78  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.reset_stats'
cgroup_xattr   79  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.reset_stats'
cgroup_xattr   80  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.reset_stats'
cgroup_xattr   81  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.limit_in_bytes'
cgroup_xattr   82  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.limit_in_bytes'
cgroup_xattr   83  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.limit_in_bytes'
cgroup_xattr   84  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.limit_in_bytes'
cgroup_xattr   85  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.limit_in_bytes'
cgroup_xattr   86  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_wait_time'
cgroup_xattr   87  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_wait_time'
cgroup_xattr   88  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_wait_time'
cgroup_xattr   89  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_wait_time'
cgroup_xattr   90  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_wait_time'
cgroup_xattr   91  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.weight'
cgroup_xattr   92  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.weight'
cgroup_xattr   93  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.weight'
cgroup_xattr   94  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.weight'
cgroup_xattr   95  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.weight'
cgroup_xattr   96  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.procs'
cgroup_xattr   97  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.procs'
cgroup_xattr   98  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cgroup.procs'
cgroup_xattr   99  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.procs'
cgroup_xattr  100  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.procs'
cgroup_xattr  101  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.leaf_weight_device'
cgroup_xattr  102  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.leaf_weight_device'
cgroup_xattr  103  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.leaf_weight_device'
cgroup_xattr  104  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.leaf_weight_device'
cgroup_xattr  105  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.leaf_weight_device'
cgroup_xattr  106  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.allow'
cgroup_xattr  107  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.allow'
cgroup_xattr  108  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'devices.allow'
cgroup_xattr  109  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.allow'
cgroup_xattr  110  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.allow'
cgroup_xattr  111  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  112  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  113  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  114  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  115  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  116  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.rt_runtime_us'
cgroup_xattr  117  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.rt_runtime_us'
cgroup_xattr  118  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpu.rt_runtime_us'
cgroup_xattr  119  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.rt_runtime_us'
cgroup_xattr  120  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.rt_runtime_us'
cgroup_xattr  121  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.shares'
cgroup_xattr  122  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.shares'
cgroup_xattr  123  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpu.shares'
cgroup_xattr  124  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.shares'
cgroup_xattr  125  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.shares'
cgroup_xattr  126  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_merged_recursive'
cgroup_xattr  127  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_merged_recursive'
cgroup_xattr  128  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_merged_recursive'
cgroup_xattr  129  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_merged_recursive'
cgroup_xattr  130  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_merged_recursive'
cgroup_xattr  131  TPASS  :  Expect: can't set xattr key 'security.' to file 'freezer.state'
cgroup_xattr  132  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'freezer.state'
cgroup_xattr  133  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'freezer.state'
cgroup_xattr  134  TPASS  :  Expect: can't set xattr key 'user.' to file 'freezer.state'
cgroup_xattr  135  TPASS  :  Expect: can't set xattr key 'system.' to file 'freezer.state'
cgroup_xattr  136  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  137  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  138  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  139  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  140  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  141  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.usage_in_bytes'
cgroup_xattr  142  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.usage_in_bytes'
cgroup_xattr  143  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.usage_in_bytes'
cgroup_xattr  144  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.usage_in_bytes'
cgroup_xattr  145  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.usage_in_bytes'
cgroup_xattr  146  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.leaf_weight'
cgroup_xattr  147  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.leaf_weight'
cgroup_xattr  148  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.leaf_weight'
cgroup_xattr  149  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.leaf_weight'
cgroup_xattr  150  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.leaf_weight'
cgroup_xattr  151  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.sectors_recursive'
cgroup_xattr  152  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.sectors_recursive'
cgroup_xattr  153  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.sectors_recursive'
cgroup_xattr  154  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.sectors_recursive'
cgroup_xattr  155  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.sectors_recursive'
cgroup_xattr  156  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.cpus'
cgroup_xattr  157  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.cpus'
cgroup_xattr  158  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.cpus'
cgroup_xattr  159  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.cpus'
cgroup_xattr  160  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.cpus'
cgroup_xattr  161  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mems'
cgroup_xattr  162  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mems'
cgroup_xattr  163  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.mems'
cgroup_xattr  164  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mems'
cgroup_xattr  165  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mems'
cgroup_xattr  166  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.weight_device'
cgroup_xattr  167  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.weight_device'
cgroup_xattr  168  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.weight_device'
cgroup_xattr  169  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.weight_device'
cgroup_xattr  170  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.weight_device'
cgroup_xattr  171  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  172  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  173  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  174  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  175  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  176  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_pressure'
cgroup_xattr  177  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_pressure'
cgroup_xattr  178  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.memory_pressure'
cgroup_xattr  179  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_pressure'
cgroup_xattr  180  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_pressure'
cgroup_xattr  181  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_sys'
cgroup_xattr  182  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_sys'
cgroup_xattr  183  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuacct.usage_sys'
cgroup_xattr  184  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_sys'
cgroup_xattr  185  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_sys'
cgroup_xattr  186  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.cfs_quota_us'
cgroup_xattr  187  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.cfs_quota_us'
cgroup_xattr  188  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpu.cfs_quota_us'
cgroup_xattr  189  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.cfs_quota_us'
cgroup_xattr  190  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.cfs_quota_us'
cgroup_xattr  191  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_user'
cgroup_xattr  192  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_user'
cgroup_xattr  193  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuacct.usage_user'
cgroup_xattr  194  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_user'
cgroup_xattr  195  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_user'
cgroup_xattr  196  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_spread_page'
cgroup_xattr  197  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_spread_page'
cgroup_xattr  198  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.memory_spread_page'
cgroup_xattr  199  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_spread_page'
cgroup_xattr  200  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_spread_page'
cgroup_xattr  201  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  202  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_spread_slab'
cgroup_xattr  203  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  204  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  205  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  206  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.failcnt'
cgroup_xattr  207  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.failcnt'
cgroup_xattr  208  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.failcnt'
cgroup_xattr  209  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.failcnt'
cgroup_xattr  210  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.failcnt'
cgroup_xattr  211  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  212  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_time_recursive'
cgroup_xattr  213  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  214  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  215  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  216  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  217  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  218  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  219  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  220  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  221  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  222  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.cpu_exclusive'
cgroup_xattr  223  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  224  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  225  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  226  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  227  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  228  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  229  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  230  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  231  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.force_empty'
cgroup_xattr  232  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.force_empty'
cgroup_xattr  233  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.force_empty'
cgroup_xattr  234  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.force_empty'
cgroup_xattr  235  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.force_empty'
cgroup_xattr  236  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  237  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  238  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  239  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  240  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  241  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_bytes'
cgroup_xattr  242  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_bytes'
cgroup_xattr  243  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_service_bytes'
cgroup_xattr  244  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_bytes'
cgroup_xattr  245  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_bytes'
cgroup_xattr  246  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mem_exclusive'
cgroup_xattr  247  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mem_exclusive'
cgroup_xattr  248  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.mem_exclusive'
cgroup_xattr  249  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mem_exclusive'
cgroup_xattr  250  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mem_exclusive'
cgroup_xattr  251  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.stat'
cgroup_xattr  252  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.stat'
cgroup_xattr  253  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuacct.stat'
cgroup_xattr  254  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.stat'
cgroup_xattr  255  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.stat'
cgroup_xattr  256  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.slabinfo'
cgroup_xattr  257  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.slabinfo'
cgroup_xattr  258  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.slabinfo'
cgroup_xattr  259  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.slabinfo'
cgroup_xattr  260  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.slabinfo'
cgroup_xattr  261  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.stat'
cgroup_xattr  262  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.stat'
cgroup_xattr  263  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpu.stat'
cgroup_xattr  264  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.stat'
cgroup_xattr  265  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.stat'
cgroup_xattr  266  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.effective_cpus'
cgroup_xattr  267  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.effective_cpus'
cgroup_xattr  268  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.effective_cpus'
cgroup_xattr  269  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.effective_cpus'
cgroup_xattr  270  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.effective_cpus'
cgroup_xattr  271  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.effective_mems'
cgroup_xattr  272  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.effective_mems'
cgroup_xattr  273  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.effective_mems'
cgroup_xattr  274  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.effective_mems'
cgroup_xattr  275  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.effective_mems'
cgroup_xattr  276  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  277  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.max_usage_in_bytes'
cgroup_xattr  278  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  279  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  280  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  281  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.numa_stat'
cgroup_xattr  282  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.numa_stat'
cgroup_xattr  283  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.numa_stat'
cgroup_xattr  284  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.numa_stat'
cgroup_xattr  285  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.numa_stat'
cgroup_xattr  286  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.clone_children'
cgroup_xattr  287  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.clone_children'
cgroup_xattr  288  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cgroup.clone_children'
cgroup_xattr  289  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.clone_children'
cgroup_xattr  290  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.clone_children'
cgroup_xattr  291  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  292  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  293  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  294  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  295  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  296  TPASS  :  Expect: can't set xattr key 'security.' to file 'freezer.parent_freezing'
cgroup_xattr  297  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'freezer.parent_freezing'
cgroup_xattr  298  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'freezer.parent_freezing'
cgroup_xattr  299  TPASS  :  Expect: can't set xattr key 'user.' to file 'freezer.parent_freezing'
cgroup_xattr  300  TPASS  :  Expect: can't set xattr key 'system.' to file 'freezer.parent_freezing'
cgroup_xattr  301  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  302  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  303  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  304  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  305  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  306  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  307  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  308  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  309  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  310  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  311  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.sched_load_balance'
cgroup_xattr  312  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.sched_load_balance'
cgroup_xattr  313  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.sched_load_balance'
cgroup_xattr  314  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.sched_load_balance'
cgroup_xattr  315  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.sched_load_balance'
cgroup_xattr  316  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.cfs_period_us'
cgroup_xattr  317  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.cfs_period_us'
cgroup_xattr  318  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpu.cfs_period_us'
cgroup_xattr  319  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.cfs_period_us'
cgroup_xattr  320  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.cfs_period_us'
cgroup_xattr  321  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.oom_control'
cgroup_xattr  322  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.oom_control'
cgroup_xattr  323  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.oom_control'
cgroup_xattr  324  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.oom_control'
cgroup_xattr  325  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.oom_control'
cgroup_xattr  326  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  327  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  328  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  329  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  330  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  331  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.failcnt'
cgroup_xattr  332  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.failcnt'
cgroup_xattr  333  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.failcnt'
cgroup_xattr  334  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.failcnt'
cgroup_xattr  335  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.failcnt'
cgroup_xattr  336  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  337  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  338  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  339  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  340  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  341  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.rt_period_us'
cgroup_xattr  342  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.rt_period_us'
cgroup_xattr  343  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpu.rt_period_us'
cgroup_xattr  344  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.rt_period_us'
cgroup_xattr  345  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.rt_period_us'
cgroup_xattr  346  TPASS  :  Expect: can't set xattr key 'security.' to file 'notify_on_release'
cgroup_xattr  347  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'notify_on_release'
cgroup_xattr  348  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'notify_on_release'
cgroup_xattr  349  TPASS  :  Expect: can't set xattr key 'user.' to file 'notify_on_release'
cgroup_xattr  350  TPASS  :  Expect: can't set xattr key 'system.' to file 'notify_on_release'
cgroup_xattr  351  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_time'
cgroup_xattr  352  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_time'
cgroup_xattr  353  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_service_time'
cgroup_xattr  354  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_time'
cgroup_xattr  355  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_time'
cgroup_xattr  356  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  357  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  358  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  359  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  360  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  361  TPASS  :  Expect: can't set xattr key 'security.' to file 'freezer.self_freezing'
cgroup_xattr  362  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'freezer.self_freezing'
cgroup_xattr  363  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'freezer.self_freezing'
cgroup_xattr  364  TPASS  :  Expect: can't set xattr key 'user.' to file 'freezer.self_freezing'
cgroup_xattr  365  TPASS  :  Expect: can't set xattr key 'system.' to file 'freezer.self_freezing'
cgroup_xattr  366  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.stat'
cgroup_xattr  367  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.stat'
cgroup_xattr  368  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.stat'
cgroup_xattr  369  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.stat'
cgroup_xattr  370  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.stat'
cgroup_xattr  371  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_migrate'
cgroup_xattr  372  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_migrate'
cgroup_xattr  373  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.memory_migrate'
cgroup_xattr  374  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_migrate'
cgroup_xattr  375  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_migrate'
cgroup_xattr  376  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.deny'
cgroup_xattr  377  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.deny'
cgroup_xattr  378  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'devices.deny'
cgroup_xattr  379  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.deny'
cgroup_xattr  380  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.deny'
cgroup_xattr  381  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.list'
cgroup_xattr  382  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.list'
cgroup_xattr  383  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'devices.list'
cgroup_xattr  384  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.list'
cgroup_xattr  385  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.list'
cgroup_xattr  386  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.event_control'
cgroup_xattr  387  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.event_control'
cgroup_xattr  388  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cgroup.event_control'
cgroup_xattr  389  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.event_control'
cgroup_xattr  390  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.event_control'
cgroup_xattr  391  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.time_recursive'
cgroup_xattr  392  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.time_recursive'
cgroup_xattr  393  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.time_recursive'
cgroup_xattr  394  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.time_recursive'
cgroup_xattr  395  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.time_recursive'
cgroup_xattr  396  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_merged'
cgroup_xattr  397  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_merged'
cgroup_xattr  398  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_merged'
cgroup_xattr  399  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_merged'
cgroup_xattr  400  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_merged'
cgroup_xattr  401  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  402  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  403  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  404  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  405  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  406  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  407  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  408  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  409  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  410  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  411  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  412  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  413  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  414  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  415  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  416  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.sectors'
cgroup_xattr  417  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.sectors'
cgroup_xattr  418  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.sectors'
cgroup_xattr  419  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.sectors'
cgroup_xattr  420  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.sectors'
cgroup_xattr  421  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  422  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  423  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  424  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  425  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  426  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_queued'
cgroup_xattr  427  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_queued'
cgroup_xattr  428  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_queued'
cgroup_xattr  429  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_queued'
cgroup_xattr  430  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_queued'
cgroup_xattr  431  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  432  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  433  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  434  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  435  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  436  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  437  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  438  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  439  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  440  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  441  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage'
cgroup_xattr  442  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage'
cgroup_xattr  443  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuacct.usage'
cgroup_xattr  444  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage'
cgroup_xattr  445  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage'
cgroup_xattr  446  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_queued_recursive'
cgroup_xattr  447  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_queued_recursive'
cgroup_xattr  448  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_queued_recursive'
cgroup_xattr  449  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_queued_recursive'
cgroup_xattr  450  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_queued_recursive'
cgroup_xattr  451  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  452  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  453  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  454  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  455  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr    0  TINFO  :  In dir .
cgroup_xattr  456  TPASS  :  Expect: can't set xattr key 'security.' to file 'test'
cgroup_xattr  457  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'test'
cgroup_xattr  458  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'test'
cgroup_xattr  459  TPASS  :  Expect: can't set xattr key 'user.' to file 'test'
cgroup_xattr  460  TPASS  :  Expect: can't set xattr key 'system.' to file 'test'
cgroup_xattr  461  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.io_serviced'
cgroup_xattr  462  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.io_serviced'
cgroup_xattr  463  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.throttle.io_serviced'
cgroup_xattr  464  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.io_serviced'
cgroup_xattr  465  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.io_serviced'
cgroup_xattr  466  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.pressure_level'
cgroup_xattr  467  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.pressure_level'
cgroup_xattr  468  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.pressure_level'
cgroup_xattr  469  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.pressure_level'
cgroup_xattr  470  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.pressure_level'
cgroup_xattr  471  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr  472  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr  473  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr  474  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr  475  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr  476  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  477  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  478  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  479  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  480  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  481  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.use_hierarchy'
cgroup_xattr  482  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.use_hierarchy'
cgroup_xattr  483  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.use_hierarchy'
cgroup_xattr  484  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.use_hierarchy'
cgroup_xattr  485  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.use_hierarchy'
cgroup_xattr  486  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.swappiness'
cgroup_xattr  487  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.swappiness'
cgroup_xattr  488  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.swappiness'
cgroup_xattr  489  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.swappiness'
cgroup_xattr  490  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.swappiness'
cgroup_xattr  491  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_serviced_recursive'
cgroup_xattr  492  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_serviced_recursive'
cgroup_xattr  493  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_serviced_recursive'
cgroup_xattr  494  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_serviced_recursive'
cgroup_xattr  495  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_serviced_recursive'
cgroup_xattr  496  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.time'
cgroup_xattr  497  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.time'
cgroup_xattr  498  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.time'
cgroup_xattr  499  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.time'
cgroup_xattr  500  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.time'
cgroup_xattr  501  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  502  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  503  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  504  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  505  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  506  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mem_hardwall'
cgroup_xattr  507  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mem_hardwall'
cgroup_xattr  508  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.mem_hardwall'
cgroup_xattr  509  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mem_hardwall'
cgroup_xattr  510  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mem_hardwall'
cgroup_xattr  511  TPASS  :  Expect: can't set xattr key 'security.' to file 'tasks'
cgroup_xattr  512  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'tasks'
cgroup_xattr  513  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'tasks'
cgroup_xattr  514  TPASS  :  Expect: can't set xattr key 'user.' to file 'tasks'
cgroup_xattr  515  TPASS  :  Expect: can't set xattr key 'system.' to file 'tasks'
cgroup_xattr  516  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_serviced'
cgroup_xattr  517  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_serviced'
cgroup_xattr  518  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_serviced'
cgroup_xattr  519  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_serviced'
cgroup_xattr  520  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_serviced'
cgroup_xattr  521  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr  522  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr  523  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr  524  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr  525  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr  526  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.reset_stats'
cgroup_xattr  527  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.reset_stats'
cgroup_xattr  528  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.reset_stats'
cgroup_xattr  529  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.reset_stats'
cgroup_xattr  530  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.reset_stats'
cgroup_xattr  531  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.limit_in_bytes'
cgroup_xattr  532  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.limit_in_bytes'
cgroup_xattr  533  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.limit_in_bytes'
cgroup_xattr  534  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.limit_in_bytes'
cgroup_xattr  535  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.limit_in_bytes'
cgroup_xattr  536  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_wait_time'
cgroup_xattr  537  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_wait_time'
cgroup_xattr  538  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_wait_time'
cgroup_xattr  539  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_wait_time'
cgroup_xattr  540  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_wait_time'
cgroup_xattr  541  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.weight'
cgroup_xattr  542  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.weight'
cgroup_xattr  543  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.weight'
cgroup_xattr  544  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.weight'
cgroup_xattr  545  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.weight'
cgroup_xattr  546  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.procs'
cgroup_xattr  547  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.procs'
cgroup_xattr  548  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cgroup.procs'
cgroup_xattr  549  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.procs'
cgroup_xattr  550  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.procs'
cgroup_xattr  551  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.leaf_weight_device'
cgroup_xattr  552  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.leaf_weight_device'
cgroup_xattr  553  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.leaf_weight_device'
cgroup_xattr  554  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.leaf_weight_device'
cgroup_xattr  555  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.leaf_weight_device'
cgroup_xattr  556  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.allow'
cgroup_xattr  557  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.allow'
cgroup_xattr  558  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'devices.allow'
cgroup_xattr  559  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.allow'
cgroup_xattr  560  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.allow'
cgroup_xattr  561  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  562  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  563  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  564  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  565  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  566  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.rt_runtime_us'
cgroup_xattr  567  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.rt_runtime_us'
cgroup_xattr  568  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpu.rt_runtime_us'
cgroup_xattr  569  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.rt_runtime_us'
cgroup_xattr  570  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.rt_runtime_us'
cgroup_xattr  571  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.shares'
cgroup_xattr  572  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.shares'
cgroup_xattr  573  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpu.shares'
cgroup_xattr  574  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.shares'
cgroup_xattr  575  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.shares'
cgroup_xattr  576  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_merged_recursive'
cgroup_xattr  577  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_merged_recursive'
cgroup_xattr  578  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_merged_recursive'
cgroup_xattr  579  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_merged_recursive'
cgroup_xattr  580  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_merged_recursive'
cgroup_xattr  581  TPASS  :  Expect: can't set xattr key 'security.' to file 'release_agent'
cgroup_xattr  582  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'release_agent'
cgroup_xattr  583  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'release_agent'
cgroup_xattr  584  TPASS  :  Expect: can't set xattr key 'user.' to file 'release_agent'
cgroup_xattr  585  TPASS  :  Expect: can't set xattr key 'system.' to file 'release_agent'
cgroup_xattr  586  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  587  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  588  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  589  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  590  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  591  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.usage_in_bytes'
cgroup_xattr  592  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.usage_in_bytes'
cgroup_xattr  593  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.usage_in_bytes'
cgroup_xattr  594  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.usage_in_bytes'
cgroup_xattr  595  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.usage_in_bytes'
cgroup_xattr  596  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.leaf_weight'
cgroup_xattr  597  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.leaf_weight'
cgroup_xattr  598  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.leaf_weight'
cgroup_xattr  599  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.leaf_weight'
cgroup_xattr  600  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.leaf_weight'
cgroup_xattr  601  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.sectors_recursive'
cgroup_xattr  602  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.sectors_recursive'
cgroup_xattr  603  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.sectors_recursive'
cgroup_xattr  604  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.sectors_recursive'
cgroup_xattr  605  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.sectors_recursive'
cgroup_xattr  606  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.cpus'
cgroup_xattr  607  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.cpus'
cgroup_xattr  608  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.cpus'
cgroup_xattr  609  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.cpus'
cgroup_xattr  610  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.cpus'
cgroup_xattr  611  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mems'
cgroup_xattr  612  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mems'
cgroup_xattr  613  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.mems'
cgroup_xattr  614  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mems'
cgroup_xattr  615  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mems'
cgroup_xattr  616  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.weight_device'
cgroup_xattr  617  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.weight_device'
cgroup_xattr  618  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.weight_device'
cgroup_xattr  619  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.weight_device'
cgroup_xattr  620  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.weight_device'
cgroup_xattr  621  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  622  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  623  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  624  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  625  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  626  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_pressure'
cgroup_xattr  627  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_pressure'
cgroup_xattr  628  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.memory_pressure'
cgroup_xattr  629  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_pressure'
cgroup_xattr  630  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_pressure'
cgroup_xattr  631  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_sys'
cgroup_xattr  632  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_sys'
cgroup_xattr  633  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuacct.usage_sys'
cgroup_xattr  634  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_sys'
cgroup_xattr  635  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_sys'
cgroup_xattr  636  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.cfs_quota_us'
cgroup_xattr  637  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.cfs_quota_us'
cgroup_xattr  638  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpu.cfs_quota_us'
cgroup_xattr  639  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.cfs_quota_us'
cgroup_xattr  640  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.cfs_quota_us'
cgroup_xattr  641  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_user'
cgroup_xattr  642  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_user'
cgroup_xattr  643  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuacct.usage_user'
cgroup_xattr  644  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_user'
cgroup_xattr  645  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_user'
cgroup_xattr  646  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_spread_page'
cgroup_xattr  647  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_spread_page'
cgroup_xattr  648  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.memory_spread_page'
cgroup_xattr  649  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_spread_page'
cgroup_xattr  650  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_spread_page'
cgroup_xattr  651  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  652  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_spread_slab'
cgroup_xattr  653  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  654  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  655  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  656  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.failcnt'
cgroup_xattr  657  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.failcnt'
cgroup_xattr  658  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.failcnt'
cgroup_xattr  659  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.failcnt'
cgroup_xattr  660  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.failcnt'
cgroup_xattr  661  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  662  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_time_recursive'
cgroup_xattr  663  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  664  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  665  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  666  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  667  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  668  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  669  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  670  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  671  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  672  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.cpu_exclusive'
cgroup_xattr  673  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  674  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  675  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  676  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  677  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  678  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  679  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  680  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  681  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.force_empty'
cgroup_xattr  682  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.force_empty'
cgroup_xattr  683  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.force_empty'
cgroup_xattr  684  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.force_empty'
cgroup_xattr  685  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.force_empty'
cgroup_xattr  686  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  687  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  688  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  689  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  690  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  691  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_bytes'
cgroup_xattr  692  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_bytes'
cgroup_xattr  693  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_service_bytes'
cgroup_xattr  694  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_bytes'
cgroup_xattr  695  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_bytes'
cgroup_xattr  696  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mem_exclusive'
cgroup_xattr  697  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mem_exclusive'
cgroup_xattr  698  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.mem_exclusive'
cgroup_xattr  699  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mem_exclusive'
cgroup_xattr  700  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mem_exclusive'
cgroup_xattr  701  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.stat'
cgroup_xattr  702  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.stat'
cgroup_xattr  703  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuacct.stat'
cgroup_xattr  704  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.stat'
cgroup_xattr  705  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.stat'
cgroup_xattr  706  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.slabinfo'
cgroup_xattr  707  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.slabinfo'
cgroup_xattr  708  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.slabinfo'
cgroup_xattr  709  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.slabinfo'
cgroup_xattr  710  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.slabinfo'
cgroup_xattr  711  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.stat'
cgroup_xattr  712  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.stat'
cgroup_xattr  713  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpu.stat'
cgroup_xattr  714  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.stat'
cgroup_xattr  715  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.stat'
cgroup_xattr  716  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.effective_cpus'
cgroup_xattr  717  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.effective_cpus'
cgroup_xattr  718  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.effective_cpus'
cgroup_xattr  719  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.effective_cpus'
cgroup_xattr  720  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.effective_cpus'
cgroup_xattr  721  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.effective_mems'
cgroup_xattr  722  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.effective_mems'
cgroup_xattr  723  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.effective_mems'
cgroup_xattr  724  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.effective_mems'
cgroup_xattr  725  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.effective_mems'
cgroup_xattr  726  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  727  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.max_usage_in_bytes'
cgroup_xattr  728  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  729  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  730  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  731  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.numa_stat'
cgroup_xattr  732  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.numa_stat'
cgroup_xattr  733  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.numa_stat'
cgroup_xattr  734  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.numa_stat'
cgroup_xattr  735  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.numa_stat'
cgroup_xattr  736  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.clone_children'
cgroup_xattr  737  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.clone_children'
cgroup_xattr  738  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cgroup.clone_children'
cgroup_xattr  739  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.clone_children'
cgroup_xattr  740  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.clone_children'
cgroup_xattr  741  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  742  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  743  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  744  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  745  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  746  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  747  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  748  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  749  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  750  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  751  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  752  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  753  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  754  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  755  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  756  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.sched_load_balance'
cgroup_xattr  757  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.sched_load_balance'
cgroup_xattr  758  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.sched_load_balance'
cgroup_xattr  759  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.sched_load_balance'
cgroup_xattr  760  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.sched_load_balance'
cgroup_xattr  761  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.cfs_period_us'
cgroup_xattr  762  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.cfs_period_us'
cgroup_xattr  763  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpu.cfs_period_us'
cgroup_xattr  764  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.cfs_period_us'
cgroup_xattr  765  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.cfs_period_us'
cgroup_xattr  766  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.oom_control'
cgroup_xattr  767  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.oom_control'
cgroup_xattr  768  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.oom_control'
cgroup_xattr  769  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.oom_control'
cgroup_xattr  770  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.oom_control'
cgroup_xattr  771  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.sane_behavior'
cgroup_xattr  772  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.sane_behavior'
cgroup_xattr  773  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cgroup.sane_behavior'
cgroup_xattr  774  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.sane_behavior'
cgroup_xattr  775  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.sane_behavior'
cgroup_xattr  776  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  777  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  778  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  779  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  780  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  781  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.failcnt'
cgroup_xattr  782  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.failcnt'
cgroup_xattr  783  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.failcnt'
cgroup_xattr  784  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.failcnt'
cgroup_xattr  785  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.failcnt'
cgroup_xattr  786  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  787  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  788  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  789  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  790  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  791  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.rt_period_us'
cgroup_xattr  792  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.rt_period_us'
cgroup_xattr  793  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpu.rt_period_us'
cgroup_xattr  794  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.rt_period_us'
cgroup_xattr  795  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.rt_period_us'
cgroup_xattr  796  TPASS  :  Expect: can't set xattr key 'security.' to file 'notify_on_release'
cgroup_xattr  797  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'notify_on_release'
cgroup_xattr  798  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'notify_on_release'
cgroup_xattr  799  TPASS  :  Expect: can't set xattr key 'user.' to file 'notify_on_release'
cgroup_xattr  800  TPASS  :  Expect: can't set xattr key 'system.' to file 'notify_on_release'
cgroup_xattr  801  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_time'
cgroup_xattr  802  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_time'
cgroup_xattr  803  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_service_time'
cgroup_xattr  804  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_time'
cgroup_xattr  805  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_time'
cgroup_xattr  806  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_pressure_enabled'
cgroup_xattr  807  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_pressure_enabled'
cgroup_xattr  808  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.memory_pressure_enabled'
cgroup_xattr  809  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_pressure_enabled'
cgroup_xattr  810  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_pressure_enabled'
cgroup_xattr  811  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  812  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  813  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  814  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  815  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  816  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.stat'
cgroup_xattr  817  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.stat'
cgroup_xattr  818  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.stat'
cgroup_xattr  819  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.stat'
cgroup_xattr  820  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.stat'
cgroup_xattr  821  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_migrate'
cgroup_xattr  822  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_migrate'
cgroup_xattr  823  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuset.memory_migrate'
cgroup_xattr  824  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_migrate'
cgroup_xattr  825  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_migrate'
cgroup_xattr  826  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.deny'
cgroup_xattr  827  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.deny'
cgroup_xattr  828  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'devices.deny'
cgroup_xattr  829  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.deny'
cgroup_xattr  830  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.deny'
cgroup_xattr  831  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.list'
cgroup_xattr  832  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.list'
cgroup_xattr  833  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'devices.list'
cgroup_xattr  834  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.list'
cgroup_xattr  835  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.list'
cgroup_xattr  836  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.event_control'
cgroup_xattr  837  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.event_control'
cgroup_xattr  838  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cgroup.event_control'
cgroup_xattr  839  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.event_control'
cgroup_xattr  840  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.event_control'
cgroup_xattr  841  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.time_recursive'
cgroup_xattr  842  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.time_recursive'
cgroup_xattr  843  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.time_recursive'
cgroup_xattr  844  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.time_recursive'
cgroup_xattr  845  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.time_recursive'
cgroup_xattr  846  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_merged'
cgroup_xattr  847  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_merged'
cgroup_xattr  848  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_merged'
cgroup_xattr  849  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_merged'
cgroup_xattr  850  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_merged'
cgroup_xattr  851  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  852  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  853  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  854  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  855  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  856  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  857  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  858  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  859  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  860  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  861  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  862  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  863  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  864  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  865  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  866  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.sectors'
cgroup_xattr  867  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.sectors'
cgroup_xattr  868  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.sectors'
cgroup_xattr  869  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.sectors'
cgroup_xattr  870  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.sectors'
cgroup_xattr  871  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  872  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  873  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  874  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  875  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  876  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_queued'
cgroup_xattr  877  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_queued'
cgroup_xattr  878  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_queued'
cgroup_xattr  879  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_queued'
cgroup_xattr  880  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_queued'
cgroup_xattr  881  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  882  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  883  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  884  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  885  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  886  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  887  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  888  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  889  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  890  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  891  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage'
cgroup_xattr  892  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage'
cgroup_xattr  893  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'cpuacct.usage'
cgroup_xattr  894  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage'
cgroup_xattr  895  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage'
cgroup_xattr  896  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_queued_recursive'
cgroup_xattr  897  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_queued_recursive'
cgroup_xattr  898  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'blkio.io_queued_recursive'
cgroup_xattr  899  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_queued_recursive'
cgroup_xattr  900  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_queued_recursive'
cgroup_xattr  901  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  902  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  903  TFAIL  :  cgroup_xattr.c:354: Expect: can set xattr key 'trusted.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  904  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  905  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr    0  TINFO  :  In dir .
cgroup_xattr  906  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu'
cgroup_xattr  907  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu'
cgroup_xattr  908  TPASS  :  Expect: values equal
cgroup_xattr  909  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuacct.usage_percpu'
cgroup_xattr  910  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu'
cgroup_xattr  911  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu'
cgroup_xattr    0  TINFO  :  In dir test
cgroup_xattr  912  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu'
cgroup_xattr  913  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu'
cgroup_xattr  914  TPASS  :  Expect: values equal
cgroup_xattr  915  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuacct.usage_percpu'
cgroup_xattr  916  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu'
cgroup_xattr  917  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu'
cgroup_xattr  918  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.io_serviced'
cgroup_xattr  919  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.io_serviced'
cgroup_xattr  920  TPASS  :  Expect: values equal
cgroup_xattr  921  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.throttle.io_serviced'
cgroup_xattr  922  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.io_serviced'
cgroup_xattr  923  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.io_serviced'
cgroup_xattr  924  TPASS  :  Expect: can't read xattr security. of file 'memory.pressure_level'
cgroup_xattr  925  TPASS  :  Expect: can read xattr trusted.test of file 'memory.pressure_level'
cgroup_xattr  926  TPASS  :  Expect: values equal
cgroup_xattr  927  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.pressure_level'
cgroup_xattr  928  TPASS  :  Expect: can't read xattr user. of file 'memory.pressure_level'
cgroup_xattr  929  TPASS  :  Expect: can't read xattr system. of file 'memory.pressure_level'
cgroup_xattr  930  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr  931  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_bytes_recursive'
cgroup_xattr  932  TPASS  :  Expect: values equal
cgroup_xattr  933  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr  934  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr  935  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr  936  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  937  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  938  TPASS  :  Expect: values equal
cgroup_xattr  939  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  940  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  941  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  942  TPASS  :  Expect: can't read xattr security. of file 'memory.use_hierarchy'
cgroup_xattr  943  TPASS  :  Expect: can read xattr trusted.test of file 'memory.use_hierarchy'
cgroup_xattr  944  TPASS  :  Expect: values equal
cgroup_xattr  945  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.use_hierarchy'
cgroup_xattr  946  TPASS  :  Expect: can't read xattr user. of file 'memory.use_hierarchy'
cgroup_xattr  947  TPASS  :  Expect: can't read xattr system. of file 'memory.use_hierarchy'
cgroup_xattr  948  TPASS  :  Expect: can't read xattr security. of file 'memory.swappiness'
cgroup_xattr  949  TPASS  :  Expect: can read xattr trusted.test of file 'memory.swappiness'
cgroup_xattr  950  TPASS  :  Expect: values equal
cgroup_xattr  951  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.swappiness'
cgroup_xattr  952  TPASS  :  Expect: can't read xattr user. of file 'memory.swappiness'
cgroup_xattr  953  TPASS  :  Expect: can't read xattr system. of file 'memory.swappiness'
cgroup_xattr  954  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_serviced_recursive'
cgroup_xattr  955  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_serviced_recursive'
cgroup_xattr  956  TPASS  :  Expect: values equal
cgroup_xattr  957  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_serviced_recursive'
cgroup_xattr  958  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_serviced_recursive'
cgroup_xattr  959  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_serviced_recursive'
cgroup_xattr  960  TPASS  :  Expect: can't read xattr security. of file 'blkio.time'
cgroup_xattr  961  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.time'
cgroup_xattr  962  TPASS  :  Expect: values equal
cgroup_xattr  963  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.time'
cgroup_xattr  964  TPASS  :  Expect: can't read xattr user. of file 'blkio.time'
cgroup_xattr  965  TPASS  :  Expect: can't read xattr system. of file 'blkio.time'
cgroup_xattr  966  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  967  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  968  TPASS  :  Expect: values equal
cgroup_xattr  969  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  970  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  971  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  972  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mem_hardwall'
cgroup_xattr  973  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mem_hardwall'
cgroup_xattr  974  TPASS  :  Expect: values equal
cgroup_xattr  975  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.mem_hardwall'
cgroup_xattr  976  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mem_hardwall'
cgroup_xattr  977  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mem_hardwall'
cgroup_xattr  978  TPASS  :  Expect: can't read xattr security. of file 'tasks'
cgroup_xattr  979  TPASS  :  Expect: can read xattr trusted.test of file 'tasks'
cgroup_xattr  980  TPASS  :  Expect: values equal
cgroup_xattr  981  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'tasks'
cgroup_xattr  982  TPASS  :  Expect: can't read xattr user. of file 'tasks'
cgroup_xattr  983  TPASS  :  Expect: can't read xattr system. of file 'tasks'
cgroup_xattr  984  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_serviced'
cgroup_xattr  985  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_serviced'
cgroup_xattr  986  TPASS  :  Expect: values equal
cgroup_xattr  987  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_serviced'
cgroup_xattr  988  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_serviced'
cgroup_xattr  989  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_serviced'
cgroup_xattr  990  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr  991  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu_sys'
cgroup_xattr  992  TPASS  :  Expect: values equal
cgroup_xattr  993  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr  994  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr  995  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr  996  TPASS  :  Expect: can't read xattr security. of file 'blkio.reset_stats'
cgroup_xattr  997  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.reset_stats'
cgroup_xattr  998  TPASS  :  Expect: values equal
cgroup_xattr  999  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.reset_stats'
cgroup_xattr 1000  TPASS  :  Expect: can't read xattr user. of file 'blkio.reset_stats'
cgroup_xattr 1001  TPASS  :  Expect: can't read xattr system. of file 'blkio.reset_stats'
cgroup_xattr 1002  TPASS  :  Expect: can't read xattr security. of file 'memory.limit_in_bytes'
cgroup_xattr 1003  TPASS  :  Expect: can read xattr trusted.test of file 'memory.limit_in_bytes'
cgroup_xattr 1004  TPASS  :  Expect: values equal
cgroup_xattr 1005  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.limit_in_bytes'
cgroup_xattr 1006  TPASS  :  Expect: can't read xattr user. of file 'memory.limit_in_bytes'
cgroup_xattr 1007  TPASS  :  Expect: can't read xattr system. of file 'memory.limit_in_bytes'
cgroup_xattr 1008  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_wait_time'
cgroup_xattr 1009  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_wait_time'
cgroup_xattr 1010  TPASS  :  Expect: values equal
cgroup_xattr 1011  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_wait_time'
cgroup_xattr 1012  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_wait_time'
cgroup_xattr 1013  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_wait_time'
cgroup_xattr 1014  TPASS  :  Expect: can't read xattr security. of file 'blkio.weight'
cgroup_xattr 1015  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.weight'
cgroup_xattr 1016  TPASS  :  Expect: values equal
cgroup_xattr 1017  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.weight'
cgroup_xattr 1018  TPASS  :  Expect: can't read xattr user. of file 'blkio.weight'
cgroup_xattr 1019  TPASS  :  Expect: can't read xattr system. of file 'blkio.weight'
cgroup_xattr 1020  TPASS  :  Expect: can't read xattr security. of file 'cgroup.procs'
cgroup_xattr 1021  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.procs'
cgroup_xattr 1022  TPASS  :  Expect: values equal
cgroup_xattr 1023  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cgroup.procs'
cgroup_xattr 1024  TPASS  :  Expect: can't read xattr user. of file 'cgroup.procs'
cgroup_xattr 1025  TPASS  :  Expect: can't read xattr system. of file 'cgroup.procs'
cgroup_xattr 1026  TPASS  :  Expect: can't read xattr security. of file 'blkio.leaf_weight_device'
cgroup_xattr 1027  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.leaf_weight_device'
cgroup_xattr 1028  TPASS  :  Expect: values equal
cgroup_xattr 1029  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.leaf_weight_device'
cgroup_xattr 1030  TPASS  :  Expect: can't read xattr user. of file 'blkio.leaf_weight_device'
cgroup_xattr 1031  TPASS  :  Expect: can't read xattr system. of file 'blkio.leaf_weight_device'
cgroup_xattr 1032  TPASS  :  Expect: can't read xattr security. of file 'devices.allow'
cgroup_xattr 1033  TPASS  :  Expect: can read xattr trusted.test of file 'devices.allow'
cgroup_xattr 1034  TPASS  :  Expect: values equal
cgroup_xattr 1035  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'devices.allow'
cgroup_xattr 1036  TPASS  :  Expect: can't read xattr user. of file 'devices.allow'
cgroup_xattr 1037  TPASS  :  Expect: can't read xattr system. of file 'devices.allow'
cgroup_xattr 1038  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1039  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1040  TPASS  :  Expect: values equal
cgroup_xattr 1041  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1042  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1043  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1044  TPASS  :  Expect: can't read xattr security. of file 'cpu.rt_runtime_us'
cgroup_xattr 1045  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.rt_runtime_us'
cgroup_xattr 1046  TPASS  :  Expect: values equal
cgroup_xattr 1047  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpu.rt_runtime_us'
cgroup_xattr 1048  TPASS  :  Expect: can't read xattr user. of file 'cpu.rt_runtime_us'
cgroup_xattr 1049  TPASS  :  Expect: can't read xattr system. of file 'cpu.rt_runtime_us'
cgroup_xattr 1050  TPASS  :  Expect: can't read xattr security. of file 'cpu.shares'
cgroup_xattr 1051  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.shares'
cgroup_xattr 1052  TPASS  :  Expect: values equal
cgroup_xattr 1053  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpu.shares'
cgroup_xattr 1054  TPASS  :  Expect: can't read xattr user. of file 'cpu.shares'
cgroup_xattr 1055  TPASS  :  Expect: can't read xattr system. of file 'cpu.shares'
cgroup_xattr 1056  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_merged_recursive'
cgroup_xattr 1057  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_merged_recursive'
cgroup_xattr 1058  TPASS  :  Expect: values equal
cgroup_xattr 1059  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_merged_recursive'
cgroup_xattr 1060  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_merged_recursive'
cgroup_xattr 1061  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_merged_recursive'
cgroup_xattr 1062  TPASS  :  Expect: can't read xattr security. of file 'freezer.state'
cgroup_xattr 1063  TPASS  :  Expect: can read xattr trusted.test of file 'freezer.state'
cgroup_xattr 1064  TPASS  :  Expect: values equal
cgroup_xattr 1065  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'freezer.state'
cgroup_xattr 1066  TPASS  :  Expect: can't read xattr user. of file 'freezer.state'
cgroup_xattr 1067  TPASS  :  Expect: can't read xattr system. of file 'freezer.state'
cgroup_xattr 1068  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1069  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1070  TPASS  :  Expect: values equal
cgroup_xattr 1071  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1072  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1073  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1074  TPASS  :  Expect: can't read xattr security. of file 'memory.usage_in_bytes'
cgroup_xattr 1075  TPASS  :  Expect: can read xattr trusted.test of file 'memory.usage_in_bytes'
cgroup_xattr 1076  TPASS  :  Expect: values equal
cgroup_xattr 1077  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.usage_in_bytes'
cgroup_xattr 1078  TPASS  :  Expect: can't read xattr user. of file 'memory.usage_in_bytes'
cgroup_xattr 1079  TPASS  :  Expect: can't read xattr system. of file 'memory.usage_in_bytes'
cgroup_xattr 1080  TPASS  :  Expect: can't read xattr security. of file 'blkio.leaf_weight'
cgroup_xattr 1081  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.leaf_weight'
cgroup_xattr 1082  TPASS  :  Expect: values equal
cgroup_xattr 1083  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.leaf_weight'
cgroup_xattr 1084  TPASS  :  Expect: can't read xattr user. of file 'blkio.leaf_weight'
cgroup_xattr 1085  TPASS  :  Expect: can't read xattr system. of file 'blkio.leaf_weight'
cgroup_xattr 1086  TPASS  :  Expect: can't read xattr security. of file 'blkio.sectors_recursive'
cgroup_xattr 1087  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.sectors_recursive'
cgroup_xattr 1088  TPASS  :  Expect: values equal
cgroup_xattr 1089  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.sectors_recursive'
cgroup_xattr 1090  TPASS  :  Expect: can't read xattr user. of file 'blkio.sectors_recursive'
cgroup_xattr 1091  TPASS  :  Expect: can't read xattr system. of file 'blkio.sectors_recursive'
cgroup_xattr 1092  TPASS  :  Expect: can't read xattr security. of file 'cpuset.cpus'
cgroup_xattr 1093  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.cpus'
cgroup_xattr 1094  TPASS  :  Expect: values equal
cgroup_xattr 1095  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.cpus'
cgroup_xattr 1096  TPASS  :  Expect: can't read xattr user. of file 'cpuset.cpus'
cgroup_xattr 1097  TPASS  :  Expect: can't read xattr system. of file 'cpuset.cpus'
cgroup_xattr 1098  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mems'
cgroup_xattr 1099  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mems'
cgroup_xattr 1100  TPASS  :  Expect: values equal
cgroup_xattr 1101  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.mems'
cgroup_xattr 1102  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mems'
cgroup_xattr 1103  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mems'
cgroup_xattr 1104  TPASS  :  Expect: can't read xattr security. of file 'blkio.weight_device'
cgroup_xattr 1105  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.weight_device'
cgroup_xattr 1106  TPASS  :  Expect: values equal
cgroup_xattr 1107  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.weight_device'
cgroup_xattr 1108  TPASS  :  Expect: can't read xattr user. of file 'blkio.weight_device'
cgroup_xattr 1109  TPASS  :  Expect: can't read xattr system. of file 'blkio.weight_device'
cgroup_xattr 1110  TPASS  :  Expect: can't read xattr security. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1111  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1112  TPASS  :  Expect: values equal
cgroup_xattr 1113  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1114  TPASS  :  Expect: can't read xattr user. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1115  TPASS  :  Expect: can't read xattr system. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1116  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_pressure'
cgroup_xattr 1117  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_pressure'
cgroup_xattr 1118  TPASS  :  Expect: values equal
cgroup_xattr 1119  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.memory_pressure'
cgroup_xattr 1120  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_pressure'
cgroup_xattr 1121  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_pressure'
cgroup_xattr 1122  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_sys'
cgroup_xattr 1123  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_sys'
cgroup_xattr 1124  TPASS  :  Expect: values equal
cgroup_xattr 1125  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuacct.usage_sys'
cgroup_xattr 1126  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_sys'
cgroup_xattr 1127  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_sys'
cgroup_xattr 1128  TPASS  :  Expect: can't read xattr security. of file 'cpu.cfs_quota_us'
cgroup_xattr 1129  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.cfs_quota_us'
cgroup_xattr 1130  TPASS  :  Expect: values equal
cgroup_xattr 1131  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpu.cfs_quota_us'
cgroup_xattr 1132  TPASS  :  Expect: can't read xattr user. of file 'cpu.cfs_quota_us'
cgroup_xattr 1133  TPASS  :  Expect: can't read xattr system. of file 'cpu.cfs_quota_us'
cgroup_xattr 1134  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_user'
cgroup_xattr 1135  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_user'
cgroup_xattr 1136  TPASS  :  Expect: values equal
cgroup_xattr 1137  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuacct.usage_user'
cgroup_xattr 1138  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_user'
cgroup_xattr 1139  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_user'
cgroup_xattr 1140  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_spread_page'
cgroup_xattr 1141  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_spread_page'
cgroup_xattr 1142  TPASS  :  Expect: values equal
cgroup_xattr 1143  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.memory_spread_page'
cgroup_xattr 1144  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_spread_page'
cgroup_xattr 1145  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_spread_page'
cgroup_xattr 1146  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1147  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_spread_slab'
cgroup_xattr 1148  TPASS  :  Expect: values equal
cgroup_xattr 1149  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1150  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1151  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1152  TPASS  :  Expect: can't read xattr security. of file 'memory.failcnt'
cgroup_xattr 1153  TPASS  :  Expect: can read xattr trusted.test of file 'memory.failcnt'
cgroup_xattr 1154  TPASS  :  Expect: values equal
cgroup_xattr 1155  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.failcnt'
cgroup_xattr 1156  TPASS  :  Expect: can't read xattr user. of file 'memory.failcnt'
cgroup_xattr 1157  TPASS  :  Expect: can't read xattr system. of file 'memory.failcnt'
cgroup_xattr 1158  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1159  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_time_recursive'
cgroup_xattr 1160  TPASS  :  Expect: values equal
cgroup_xattr 1161  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1162  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1163  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1164  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1165  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1166  TPASS  :  Expect: values equal
cgroup_xattr 1167  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1168  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1169  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1170  TPASS  :  Expect: can't read xattr security. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1171  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.cpu_exclusive'
cgroup_xattr 1172  TPASS  :  Expect: values equal
cgroup_xattr 1173  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1174  TPASS  :  Expect: can't read xattr user. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1175  TPASS  :  Expect: can't read xattr system. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1176  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1177  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1178  TPASS  :  Expect: values equal
cgroup_xattr 1179  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1180  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1181  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1182  TPASS  :  Expect: can't read xattr security. of file 'memory.force_empty'
cgroup_xattr 1183  TPASS  :  Expect: can read xattr trusted.test of file 'memory.force_empty'
cgroup_xattr 1184  TPASS  :  Expect: values equal
cgroup_xattr 1185  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.force_empty'
cgroup_xattr 1186  TPASS  :  Expect: can't read xattr user. of file 'memory.force_empty'
cgroup_xattr 1187  TPASS  :  Expect: can't read xattr system. of file 'memory.force_empty'
cgroup_xattr 1188  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1189  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1190  TPASS  :  Expect: values equal
cgroup_xattr 1191  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1192  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1193  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1194  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_bytes'
cgroup_xattr 1195  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_bytes'
cgroup_xattr 1196  TPASS  :  Expect: values equal
cgroup_xattr 1197  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_service_bytes'
cgroup_xattr 1198  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_bytes'
cgroup_xattr 1199  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_bytes'
cgroup_xattr 1200  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mem_exclusive'
cgroup_xattr 1201  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mem_exclusive'
cgroup_xattr 1202  TPASS  :  Expect: values equal
cgroup_xattr 1203  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.mem_exclusive'
cgroup_xattr 1204  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mem_exclusive'
cgroup_xattr 1205  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mem_exclusive'
cgroup_xattr 1206  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.stat'
cgroup_xattr 1207  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.stat'
cgroup_xattr 1208  TPASS  :  Expect: values equal
cgroup_xattr 1209  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuacct.stat'
cgroup_xattr 1210  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.stat'
cgroup_xattr 1211  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.stat'
cgroup_xattr 1212  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.slabinfo'
cgroup_xattr 1213  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.slabinfo'
cgroup_xattr 1214  TPASS  :  Expect: values equal
cgroup_xattr 1215  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.slabinfo'
cgroup_xattr 1216  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.slabinfo'
cgroup_xattr 1217  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.slabinfo'
cgroup_xattr 1218  TPASS  :  Expect: can't read xattr security. of file 'cpu.stat'
cgroup_xattr 1219  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.stat'
cgroup_xattr 1220  TPASS  :  Expect: values equal
cgroup_xattr 1221  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpu.stat'
cgroup_xattr 1222  TPASS  :  Expect: can't read xattr user. of file 'cpu.stat'
cgroup_xattr 1223  TPASS  :  Expect: can't read xattr system. of file 'cpu.stat'
cgroup_xattr 1224  TPASS  :  Expect: can't read xattr security. of file 'cpuset.effective_cpus'
cgroup_xattr 1225  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.effective_cpus'
cgroup_xattr 1226  TPASS  :  Expect: values equal
cgroup_xattr 1227  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.effective_cpus'
cgroup_xattr 1228  TPASS  :  Expect: can't read xattr user. of file 'cpuset.effective_cpus'
cgroup_xattr 1229  TPASS  :  Expect: can't read xattr system. of file 'cpuset.effective_cpus'
cgroup_xattr 1230  TPASS  :  Expect: can't read xattr security. of file 'cpuset.effective_mems'
cgroup_xattr 1231  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.effective_mems'
cgroup_xattr 1232  TPASS  :  Expect: values equal
cgroup_xattr 1233  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.effective_mems'
cgroup_xattr 1234  TPASS  :  Expect: can't read xattr user. of file 'cpuset.effective_mems'
cgroup_xattr 1235  TPASS  :  Expect: can't read xattr system. of file 'cpuset.effective_mems'
cgroup_xattr 1236  TPASS  :  Expect: can't read xattr security. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1237  TPASS  :  Expect: can read xattr trusted.test of file 'memory.max_usage_in_bytes'
cgroup_xattr 1238  TPASS  :  Expect: values equal
cgroup_xattr 1239  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1240  TPASS  :  Expect: can't read xattr user. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1241  TPASS  :  Expect: can't read xattr system. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1242  TPASS  :  Expect: can't read xattr security. of file 'memory.numa_stat'
cgroup_xattr 1243  TPASS  :  Expect: can read xattr trusted.test of file 'memory.numa_stat'
cgroup_xattr 1244  TPASS  :  Expect: values equal
cgroup_xattr 1245  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.numa_stat'
cgroup_xattr 1246  TPASS  :  Expect: can't read xattr user. of file 'memory.numa_stat'
cgroup_xattr 1247  TPASS  :  Expect: can't read xattr system. of file 'memory.numa_stat'
cgroup_xattr 1248  TPASS  :  Expect: can't read xattr security. of file 'cgroup.clone_children'
cgroup_xattr 1249  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.clone_children'
cgroup_xattr 1250  TPASS  :  Expect: values equal
cgroup_xattr 1251  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cgroup.clone_children'
cgroup_xattr 1252  TPASS  :  Expect: can't read xattr user. of file 'cgroup.clone_children'
cgroup_xattr 1253  TPASS  :  Expect: can't read xattr system. of file 'cgroup.clone_children'
cgroup_xattr 1254  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1255  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1256  TPASS  :  Expect: values equal
cgroup_xattr 1257  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1258  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1259  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1260  TPASS  :  Expect: can't read xattr security. of file 'freezer.parent_freezing'
cgroup_xattr 1261  TPASS  :  Expect: can read xattr trusted.test of file 'freezer.parent_freezing'
cgroup_xattr 1262  TPASS  :  Expect: values equal
cgroup_xattr 1263  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'freezer.parent_freezing'
cgroup_xattr 1264  TPASS  :  Expect: can't read xattr user. of file 'freezer.parent_freezing'
cgroup_xattr 1265  TPASS  :  Expect: can't read xattr system. of file 'freezer.parent_freezing'
cgroup_xattr 1266  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1267  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1268  TPASS  :  Expect: values equal
cgroup_xattr 1269  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1270  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1271  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1272  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1273  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1274  TPASS  :  Expect: values equal
cgroup_xattr 1275  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1276  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1277  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1278  TPASS  :  Expect: can't read xattr security. of file 'cpuset.sched_load_balance'
cgroup_xattr 1279  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.sched_load_balance'
cgroup_xattr 1280  TPASS  :  Expect: values equal
cgroup_xattr 1281  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.sched_load_balance'
cgroup_xattr 1282  TPASS  :  Expect: can't read xattr user. of file 'cpuset.sched_load_balance'
cgroup_xattr 1283  TPASS  :  Expect: can't read xattr system. of file 'cpuset.sched_load_balance'
cgroup_xattr 1284  TPASS  :  Expect: can't read xattr security. of file 'cpu.cfs_period_us'
cgroup_xattr 1285  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.cfs_period_us'
cgroup_xattr 1286  TPASS  :  Expect: values equal
cgroup_xattr 1287  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpu.cfs_period_us'
cgroup_xattr 1288  TPASS  :  Expect: can't read xattr user. of file 'cpu.cfs_period_us'
cgroup_xattr 1289  TPASS  :  Expect: can't read xattr system. of file 'cpu.cfs_period_us'
cgroup_xattr 1290  TPASS  :  Expect: can't read xattr security. of file 'memory.oom_control'
cgroup_xattr 1291  TPASS  :  Expect: can read xattr trusted.test of file 'memory.oom_control'
cgroup_xattr 1292  TPASS  :  Expect: values equal
cgroup_xattr 1293  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.oom_control'
cgroup_xattr 1294  TPASS  :  Expect: can't read xattr user. of file 'memory.oom_control'
cgroup_xattr 1295  TPASS  :  Expect: can't read xattr system. of file 'memory.oom_control'
cgroup_xattr 1296  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1297  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1298  TPASS  :  Expect: values equal
cgroup_xattr 1299  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1300  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1301  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1302  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.failcnt'
cgroup_xattr 1303  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.failcnt'
cgroup_xattr 1304  TPASS  :  Expect: values equal
cgroup_xattr 1305  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.failcnt'
cgroup_xattr 1306  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.failcnt'
cgroup_xattr 1307  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.failcnt'
cgroup_xattr 1308  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1309  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1310  TPASS  :  Expect: values equal
cgroup_xattr 1311  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1312  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1313  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1314  TPASS  :  Expect: can't read xattr security. of file 'cpu.rt_period_us'
cgroup_xattr 1315  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.rt_period_us'
cgroup_xattr 1316  TPASS  :  Expect: values equal
cgroup_xattr 1317  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpu.rt_period_us'
cgroup_xattr 1318  TPASS  :  Expect: can't read xattr user. of file 'cpu.rt_period_us'
cgroup_xattr 1319  TPASS  :  Expect: can't read xattr system. of file 'cpu.rt_period_us'
cgroup_xattr 1320  TPASS  :  Expect: can't read xattr security. of file 'notify_on_release'
cgroup_xattr 1321  TPASS  :  Expect: can read xattr trusted.test of file 'notify_on_release'
cgroup_xattr 1322  TPASS  :  Expect: values equal
cgroup_xattr 1323  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'notify_on_release'
cgroup_xattr 1324  TPASS  :  Expect: can't read xattr user. of file 'notify_on_release'
cgroup_xattr 1325  TPASS  :  Expect: can't read xattr system. of file 'notify_on_release'
cgroup_xattr 1326  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_time'
cgroup_xattr 1327  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_time'
cgroup_xattr 1328  TPASS  :  Expect: values equal
cgroup_xattr 1329  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_service_time'
cgroup_xattr 1330  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_time'
cgroup_xattr 1331  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_time'
cgroup_xattr 1332  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1333  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1334  TPASS  :  Expect: values equal
cgroup_xattr 1335  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1336  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1337  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1338  TPASS  :  Expect: can't read xattr security. of file 'freezer.self_freezing'
cgroup_xattr 1339  TPASS  :  Expect: can read xattr trusted.test of file 'freezer.self_freezing'
cgroup_xattr 1340  TPASS  :  Expect: values equal
cgroup_xattr 1341  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'freezer.self_freezing'
cgroup_xattr 1342  TPASS  :  Expect: can't read xattr user. of file 'freezer.self_freezing'
cgroup_xattr 1343  TPASS  :  Expect: can't read xattr system. of file 'freezer.self_freezing'
cgroup_xattr 1344  TPASS  :  Expect: can't read xattr security. of file 'memory.stat'
cgroup_xattr 1345  TPASS  :  Expect: can read xattr trusted.test of file 'memory.stat'
cgroup_xattr 1346  TPASS  :  Expect: values equal
cgroup_xattr 1347  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.stat'
cgroup_xattr 1348  TPASS  :  Expect: can't read xattr user. of file 'memory.stat'
cgroup_xattr 1349  TPASS  :  Expect: can't read xattr system. of file 'memory.stat'
cgroup_xattr 1350  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_migrate'
cgroup_xattr 1351  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_migrate'
cgroup_xattr 1352  TPASS  :  Expect: values equal
cgroup_xattr 1353  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.memory_migrate'
cgroup_xattr 1354  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_migrate'
cgroup_xattr 1355  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_migrate'
cgroup_xattr 1356  TPASS  :  Expect: can't read xattr security. of file 'devices.deny'
cgroup_xattr 1357  TPASS  :  Expect: can read xattr trusted.test of file 'devices.deny'
cgroup_xattr 1358  TPASS  :  Expect: values equal
cgroup_xattr 1359  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'devices.deny'
cgroup_xattr 1360  TPASS  :  Expect: can't read xattr user. of file 'devices.deny'
cgroup_xattr 1361  TPASS  :  Expect: can't read xattr system. of file 'devices.deny'
cgroup_xattr 1362  TPASS  :  Expect: can't read xattr security. of file 'devices.list'
cgroup_xattr 1363  TPASS  :  Expect: can read xattr trusted.test of file 'devices.list'
cgroup_xattr 1364  TPASS  :  Expect: values equal
cgroup_xattr 1365  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'devices.list'
cgroup_xattr 1366  TPASS  :  Expect: can't read xattr user. of file 'devices.list'
cgroup_xattr 1367  TPASS  :  Expect: can't read xattr system. of file 'devices.list'
cgroup_xattr 1368  TPASS  :  Expect: can't read xattr security. of file 'cgroup.event_control'
cgroup_xattr 1369  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.event_control'
cgroup_xattr 1370  TPASS  :  Expect: values equal
cgroup_xattr 1371  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cgroup.event_control'
cgroup_xattr 1372  TPASS  :  Expect: can't read xattr user. of file 'cgroup.event_control'
cgroup_xattr 1373  TPASS  :  Expect: can't read xattr system. of file 'cgroup.event_control'
cgroup_xattr 1374  TPASS  :  Expect: can't read xattr security. of file 'blkio.time_recursive'
cgroup_xattr 1375  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.time_recursive'
cgroup_xattr 1376  TPASS  :  Expect: values equal
cgroup_xattr 1377  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.time_recursive'
cgroup_xattr 1378  TPASS  :  Expect: can't read xattr user. of file 'blkio.time_recursive'
cgroup_xattr 1379  TPASS  :  Expect: can't read xattr system. of file 'blkio.time_recursive'
cgroup_xattr 1380  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_merged'
cgroup_xattr 1381  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_merged'
cgroup_xattr 1382  TPASS  :  Expect: values equal
cgroup_xattr 1383  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_merged'
cgroup_xattr 1384  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_merged'
cgroup_xattr 1385  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_merged'
cgroup_xattr 1386  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1387  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1388  TPASS  :  Expect: values equal
cgroup_xattr 1389  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1390  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1391  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1392  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1393  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1394  TPASS  :  Expect: values equal
cgroup_xattr 1395  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1396  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1397  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1398  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1399  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1400  TPASS  :  Expect: values equal
cgroup_xattr 1401  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1402  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1403  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1404  TPASS  :  Expect: can't read xattr security. of file 'blkio.sectors'
cgroup_xattr 1405  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.sectors'
cgroup_xattr 1406  TPASS  :  Expect: values equal
cgroup_xattr 1407  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.sectors'
cgroup_xattr 1408  TPASS  :  Expect: can't read xattr user. of file 'blkio.sectors'
cgroup_xattr 1409  TPASS  :  Expect: can't read xattr system. of file 'blkio.sectors'
cgroup_xattr 1410  TPASS  :  Expect: can't read xattr security. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1411  TPASS  :  Expect: can read xattr trusted.test of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1412  TPASS  :  Expect: values equal
cgroup_xattr 1413  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1414  TPASS  :  Expect: can't read xattr user. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1415  TPASS  :  Expect: can't read xattr system. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1416  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_queued'
cgroup_xattr 1417  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_queued'
cgroup_xattr 1418  TPASS  :  Expect: values equal
cgroup_xattr 1419  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_queued'
cgroup_xattr 1420  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_queued'
cgroup_xattr 1421  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_queued'
cgroup_xattr 1422  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1423  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1424  TPASS  :  Expect: values equal
cgroup_xattr 1425  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1426  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1427  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1428  TPASS  :  Expect: can't read xattr security. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1429  TPASS  :  Expect: can read xattr trusted.test of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1430  TPASS  :  Expect: values equal
cgroup_xattr 1431  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1432  TPASS  :  Expect: can't read xattr user. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1433  TPASS  :  Expect: can't read xattr system. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1434  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage'
cgroup_xattr 1435  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage'
cgroup_xattr 1436  TPASS  :  Expect: values equal
cgroup_xattr 1437  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuacct.usage'
cgroup_xattr 1438  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage'
cgroup_xattr 1439  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage'
cgroup_xattr 1440  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_queued_recursive'
cgroup_xattr 1441  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_queued_recursive'
cgroup_xattr 1442  TPASS  :  Expect: values equal
cgroup_xattr 1443  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_queued_recursive'
cgroup_xattr 1444  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_queued_recursive'
cgroup_xattr 1445  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_queued_recursive'
cgroup_xattr 1446  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1447  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1448  TPASS  :  Expect: values equal
cgroup_xattr 1449  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1450  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1451  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr    0  TINFO  :  In dir .
cgroup_xattr 1452  TPASS  :  Expect: can't read xattr security. of file 'test'
cgroup_xattr 1453  TPASS  :  Expect: can read xattr trusted.test of file 'test'
cgroup_xattr 1454  TPASS  :  Expect: values equal
cgroup_xattr 1455  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'test'
cgroup_xattr 1456  TPASS  :  Expect: can't read xattr user. of file 'test'
cgroup_xattr 1457  TPASS  :  Expect: can't read xattr system. of file 'test'
cgroup_xattr 1458  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.io_serviced'
cgroup_xattr 1459  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.io_serviced'
cgroup_xattr 1460  TPASS  :  Expect: values equal
cgroup_xattr 1461  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.throttle.io_serviced'
cgroup_xattr 1462  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.io_serviced'
cgroup_xattr 1463  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.io_serviced'
cgroup_xattr 1464  TPASS  :  Expect: can't read xattr security. of file 'memory.pressure_level'
cgroup_xattr 1465  TPASS  :  Expect: can read xattr trusted.test of file 'memory.pressure_level'
cgroup_xattr 1466  TPASS  :  Expect: values equal
cgroup_xattr 1467  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.pressure_level'
cgroup_xattr 1468  TPASS  :  Expect: can't read xattr user. of file 'memory.pressure_level'
cgroup_xattr 1469  TPASS  :  Expect: can't read xattr system. of file 'memory.pressure_level'
cgroup_xattr 1470  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr 1471  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_bytes_recursive'
cgroup_xattr 1472  TPASS  :  Expect: values equal
cgroup_xattr 1473  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr 1474  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr 1475  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr 1476  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr 1477  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr 1478  TPASS  :  Expect: values equal
cgroup_xattr 1479  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr 1480  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr 1481  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr 1482  TPASS  :  Expect: can't read xattr security. of file 'memory.use_hierarchy'
cgroup_xattr 1483  TPASS  :  Expect: can read xattr trusted.test of file 'memory.use_hierarchy'
cgroup_xattr 1484  TPASS  :  Expect: values equal
cgroup_xattr 1485  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.use_hierarchy'
cgroup_xattr 1486  TPASS  :  Expect: can't read xattr user. of file 'memory.use_hierarchy'
cgroup_xattr 1487  TPASS  :  Expect: can't read xattr system. of file 'memory.use_hierarchy'
cgroup_xattr 1488  TPASS  :  Expect: can't read xattr security. of file 'memory.swappiness'
cgroup_xattr 1489  TPASS  :  Expect: can read xattr trusted.test of file 'memory.swappiness'
cgroup_xattr 1490  TPASS  :  Expect: values equal
cgroup_xattr 1491  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.swappiness'
cgroup_xattr 1492  TPASS  :  Expect: can't read xattr user. of file 'memory.swappiness'
cgroup_xattr 1493  TPASS  :  Expect: can't read xattr system. of file 'memory.swappiness'
cgroup_xattr 1494  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_serviced_recursive'
cgroup_xattr 1495  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_serviced_recursive'
cgroup_xattr 1496  TPASS  :  Expect: values equal
cgroup_xattr 1497  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_serviced_recursive'
cgroup_xattr 1498  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_serviced_recursive'
cgroup_xattr 1499  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_serviced_recursive'
cgroup_xattr 1500  TPASS  :  Expect: can't read xattr security. of file 'blkio.time'
cgroup_xattr 1501  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.time'
cgroup_xattr 1502  TPASS  :  Expect: values equal
cgroup_xattr 1503  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.time'
cgroup_xattr 1504  TPASS  :  Expect: can't read xattr user. of file 'blkio.time'
cgroup_xattr 1505  TPASS  :  Expect: can't read xattr system. of file 'blkio.time'
cgroup_xattr 1506  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr 1507  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr 1508  TPASS  :  Expect: values equal
cgroup_xattr 1509  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr 1510  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr 1511  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr 1512  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mem_hardwall'
cgroup_xattr 1513  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mem_hardwall'
cgroup_xattr 1514  TPASS  :  Expect: values equal
cgroup_xattr 1515  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.mem_hardwall'
cgroup_xattr 1516  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mem_hardwall'
cgroup_xattr 1517  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mem_hardwall'
cgroup_xattr 1518  TPASS  :  Expect: can't read xattr security. of file 'tasks'
cgroup_xattr 1519  TPASS  :  Expect: can read xattr trusted.test of file 'tasks'
cgroup_xattr 1520  TPASS  :  Expect: values equal
cgroup_xattr 1521  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'tasks'
cgroup_xattr 1522  TPASS  :  Expect: can't read xattr user. of file 'tasks'
cgroup_xattr 1523  TPASS  :  Expect: can't read xattr system. of file 'tasks'
cgroup_xattr 1524  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_serviced'
cgroup_xattr 1525  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_serviced'
cgroup_xattr 1526  TPASS  :  Expect: values equal
cgroup_xattr 1527  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_serviced'
cgroup_xattr 1528  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_serviced'
cgroup_xattr 1529  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_serviced'
cgroup_xattr 1530  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr 1531  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu_sys'
cgroup_xattr 1532  TPASS  :  Expect: values equal
cgroup_xattr 1533  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr 1534  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr 1535  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr 1536  TPASS  :  Expect: can't read xattr security. of file 'blkio.reset_stats'
cgroup_xattr 1537  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.reset_stats'
cgroup_xattr 1538  TPASS  :  Expect: values equal
cgroup_xattr 1539  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.reset_stats'
cgroup_xattr 1540  TPASS  :  Expect: can't read xattr user. of file 'blkio.reset_stats'
cgroup_xattr 1541  TPASS  :  Expect: can't read xattr system. of file 'blkio.reset_stats'
cgroup_xattr 1542  TPASS  :  Expect: can't read xattr security. of file 'memory.limit_in_bytes'
cgroup_xattr 1543  TPASS  :  Expect: can read xattr trusted.test of file 'memory.limit_in_bytes'
cgroup_xattr 1544  TPASS  :  Expect: values equal
cgroup_xattr 1545  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.limit_in_bytes'
cgroup_xattr 1546  TPASS  :  Expect: can't read xattr user. of file 'memory.limit_in_bytes'
cgroup_xattr 1547  TPASS  :  Expect: can't read xattr system. of file 'memory.limit_in_bytes'
cgroup_xattr 1548  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_wait_time'
cgroup_xattr 1549  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_wait_time'
cgroup_xattr 1550  TPASS  :  Expect: values equal
cgroup_xattr 1551  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_wait_time'
cgroup_xattr 1552  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_wait_time'
cgroup_xattr 1553  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_wait_time'
cgroup_xattr 1554  TPASS  :  Expect: can't read xattr security. of file 'blkio.weight'
cgroup_xattr 1555  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.weight'
cgroup_xattr 1556  TPASS  :  Expect: values equal
cgroup_xattr 1557  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.weight'
cgroup_xattr 1558  TPASS  :  Expect: can't read xattr user. of file 'blkio.weight'
cgroup_xattr 1559  TPASS  :  Expect: can't read xattr system. of file 'blkio.weight'
cgroup_xattr 1560  TPASS  :  Expect: can't read xattr security. of file 'cgroup.procs'
cgroup_xattr 1561  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.procs'
cgroup_xattr 1562  TPASS  :  Expect: values equal
cgroup_xattr 1563  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cgroup.procs'
cgroup_xattr 1564  TPASS  :  Expect: can't read xattr user. of file 'cgroup.procs'
cgroup_xattr 1565  TPASS  :  Expect: can't read xattr system. of file 'cgroup.procs'
cgroup_xattr 1566  TPASS  :  Expect: can't read xattr security. of file 'blkio.leaf_weight_device'
cgroup_xattr 1567  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.leaf_weight_device'
cgroup_xattr 1568  TPASS  :  Expect: values equal
cgroup_xattr 1569  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.leaf_weight_device'
cgroup_xattr 1570  TPASS  :  Expect: can't read xattr user. of file 'blkio.leaf_weight_device'
cgroup_xattr 1571  TPASS  :  Expect: can't read xattr system. of file 'blkio.leaf_weight_device'
cgroup_xattr 1572  TPASS  :  Expect: can't read xattr security. of file 'devices.allow'
cgroup_xattr 1573  TPASS  :  Expect: can read xattr trusted.test of file 'devices.allow'
cgroup_xattr 1574  TPASS  :  Expect: values equal
cgroup_xattr 1575  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'devices.allow'
cgroup_xattr 1576  TPASS  :  Expect: can't read xattr user. of file 'devices.allow'
cgroup_xattr 1577  TPASS  :  Expect: can't read xattr system. of file 'devices.allow'
cgroup_xattr 1578  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1579  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1580  TPASS  :  Expect: values equal
cgroup_xattr 1581  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1582  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1583  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1584  TPASS  :  Expect: can't read xattr security. of file 'cpu.rt_runtime_us'
cgroup_xattr 1585  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.rt_runtime_us'
cgroup_xattr 1586  TPASS  :  Expect: values equal
cgroup_xattr 1587  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpu.rt_runtime_us'
cgroup_xattr 1588  TPASS  :  Expect: can't read xattr user. of file 'cpu.rt_runtime_us'
cgroup_xattr 1589  TPASS  :  Expect: can't read xattr system. of file 'cpu.rt_runtime_us'
cgroup_xattr 1590  TPASS  :  Expect: can't read xattr security. of file 'cpu.shares'
cgroup_xattr 1591  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.shares'
cgroup_xattr 1592  TPASS  :  Expect: values equal
cgroup_xattr 1593  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpu.shares'
cgroup_xattr 1594  TPASS  :  Expect: can't read xattr user. of file 'cpu.shares'
cgroup_xattr 1595  TPASS  :  Expect: can't read xattr system. of file 'cpu.shares'
cgroup_xattr 1596  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_merged_recursive'
cgroup_xattr 1597  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_merged_recursive'
cgroup_xattr 1598  TPASS  :  Expect: values equal
cgroup_xattr 1599  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_merged_recursive'
cgroup_xattr 1600  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_merged_recursive'
cgroup_xattr 1601  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_merged_recursive'
cgroup_xattr 1602  TPASS  :  Expect: can't read xattr security. of file 'release_agent'
cgroup_xattr 1603  TPASS  :  Expect: can read xattr trusted.test of file 'release_agent'
cgroup_xattr 1604  TPASS  :  Expect: values equal
cgroup_xattr 1605  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'release_agent'
cgroup_xattr 1606  TPASS  :  Expect: can't read xattr user. of file 'release_agent'
cgroup_xattr 1607  TPASS  :  Expect: can't read xattr system. of file 'release_agent'
cgroup_xattr 1608  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1609  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1610  TPASS  :  Expect: values equal
cgroup_xattr 1611  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1612  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1613  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1614  TPASS  :  Expect: can't read xattr security. of file 'memory.usage_in_bytes'
cgroup_xattr 1615  TPASS  :  Expect: can read xattr trusted.test of file 'memory.usage_in_bytes'
cgroup_xattr 1616  TPASS  :  Expect: values equal
cgroup_xattr 1617  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.usage_in_bytes'
cgroup_xattr 1618  TPASS  :  Expect: can't read xattr user. of file 'memory.usage_in_bytes'
cgroup_xattr 1619  TPASS  :  Expect: can't read xattr system. of file 'memory.usage_in_bytes'
cgroup_xattr 1620  TPASS  :  Expect: can't read xattr security. of file 'blkio.leaf_weight'
cgroup_xattr 1621  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.leaf_weight'
cgroup_xattr 1622  TPASS  :  Expect: values equal
cgroup_xattr 1623  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.leaf_weight'
cgroup_xattr 1624  TPASS  :  Expect: can't read xattr user. of file 'blkio.leaf_weight'
cgroup_xattr 1625  TPASS  :  Expect: can't read xattr system. of file 'blkio.leaf_weight'
cgroup_xattr 1626  TPASS  :  Expect: can't read xattr security. of file 'blkio.sectors_recursive'
cgroup_xattr 1627  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.sectors_recursive'
cgroup_xattr 1628  TPASS  :  Expect: values equal
cgroup_xattr 1629  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.sectors_recursive'
cgroup_xattr 1630  TPASS  :  Expect: can't read xattr user. of file 'blkio.sectors_recursive'
cgroup_xattr 1631  TPASS  :  Expect: can't read xattr system. of file 'blkio.sectors_recursive'
cgroup_xattr 1632  TPASS  :  Expect: can't read xattr security. of file 'cpuset.cpus'
cgroup_xattr 1633  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.cpus'
cgroup_xattr 1634  TPASS  :  Expect: values equal
cgroup_xattr 1635  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.cpus'
cgroup_xattr 1636  TPASS  :  Expect: can't read xattr user. of file 'cpuset.cpus'
cgroup_xattr 1637  TPASS  :  Expect: can't read xattr system. of file 'cpuset.cpus'
cgroup_xattr 1638  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mems'
cgroup_xattr 1639  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mems'
cgroup_xattr 1640  TPASS  :  Expect: values equal
cgroup_xattr 1641  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.mems'
cgroup_xattr 1642  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mems'
cgroup_xattr 1643  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mems'
cgroup_xattr 1644  TPASS  :  Expect: can't read xattr security. of file 'blkio.weight_device'
cgroup_xattr 1645  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.weight_device'
cgroup_xattr 1646  TPASS  :  Expect: values equal
cgroup_xattr 1647  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.weight_device'
cgroup_xattr 1648  TPASS  :  Expect: can't read xattr user. of file 'blkio.weight_device'
cgroup_xattr 1649  TPASS  :  Expect: can't read xattr system. of file 'blkio.weight_device'
cgroup_xattr 1650  TPASS  :  Expect: can't read xattr security. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1651  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1652  TPASS  :  Expect: values equal
cgroup_xattr 1653  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1654  TPASS  :  Expect: can't read xattr user. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1655  TPASS  :  Expect: can't read xattr system. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1656  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_pressure'
cgroup_xattr 1657  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_pressure'
cgroup_xattr 1658  TPASS  :  Expect: values equal
cgroup_xattr 1659  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.memory_pressure'
cgroup_xattr 1660  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_pressure'
cgroup_xattr 1661  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_pressure'
cgroup_xattr 1662  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_sys'
cgroup_xattr 1663  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_sys'
cgroup_xattr 1664  TPASS  :  Expect: values equal
cgroup_xattr 1665  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuacct.usage_sys'
cgroup_xattr 1666  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_sys'
cgroup_xattr 1667  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_sys'
cgroup_xattr 1668  TPASS  :  Expect: can't read xattr security. of file 'cpu.cfs_quota_us'
cgroup_xattr 1669  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.cfs_quota_us'
cgroup_xattr 1670  TPASS  :  Expect: values equal
cgroup_xattr 1671  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpu.cfs_quota_us'
cgroup_xattr 1672  TPASS  :  Expect: can't read xattr user. of file 'cpu.cfs_quota_us'
cgroup_xattr 1673  TPASS  :  Expect: can't read xattr system. of file 'cpu.cfs_quota_us'
cgroup_xattr 1674  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_user'
cgroup_xattr 1675  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_user'
cgroup_xattr 1676  TPASS  :  Expect: values equal
cgroup_xattr 1677  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuacct.usage_user'
cgroup_xattr 1678  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_user'
cgroup_xattr 1679  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_user'
cgroup_xattr 1680  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_spread_page'
cgroup_xattr 1681  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_spread_page'
cgroup_xattr 1682  TPASS  :  Expect: values equal
cgroup_xattr 1683  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.memory_spread_page'
cgroup_xattr 1684  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_spread_page'
cgroup_xattr 1685  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_spread_page'
cgroup_xattr 1686  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1687  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_spread_slab'
cgroup_xattr 1688  TPASS  :  Expect: values equal
cgroup_xattr 1689  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1690  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1691  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1692  TPASS  :  Expect: can't read xattr security. of file 'memory.failcnt'
cgroup_xattr 1693  TPASS  :  Expect: can read xattr trusted.test of file 'memory.failcnt'
cgroup_xattr 1694  TPASS  :  Expect: values equal
cgroup_xattr 1695  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.failcnt'
cgroup_xattr 1696  TPASS  :  Expect: can't read xattr user. of file 'memory.failcnt'
cgroup_xattr 1697  TPASS  :  Expect: can't read xattr system. of file 'memory.failcnt'
cgroup_xattr 1698  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1699  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_time_recursive'
cgroup_xattr 1700  TPASS  :  Expect: values equal
cgroup_xattr 1701  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1702  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1703  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1704  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1705  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1706  TPASS  :  Expect: values equal
cgroup_xattr 1707  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1708  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1709  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1710  TPASS  :  Expect: can't read xattr security. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1711  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.cpu_exclusive'
cgroup_xattr 1712  TPASS  :  Expect: values equal
cgroup_xattr 1713  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1714  TPASS  :  Expect: can't read xattr user. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1715  TPASS  :  Expect: can't read xattr system. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1716  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1717  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1718  TPASS  :  Expect: values equal
cgroup_xattr 1719  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1720  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1721  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1722  TPASS  :  Expect: can't read xattr security. of file 'memory.force_empty'
cgroup_xattr 1723  TPASS  :  Expect: can read xattr trusted.test of file 'memory.force_empty'
cgroup_xattr 1724  TPASS  :  Expect: values equal
cgroup_xattr 1725  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.force_empty'
cgroup_xattr 1726  TPASS  :  Expect: can't read xattr user. of file 'memory.force_empty'
cgroup_xattr 1727  TPASS  :  Expect: can't read xattr system. of file 'memory.force_empty'
cgroup_xattr 1728  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1729  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1730  TPASS  :  Expect: values equal
cgroup_xattr 1731  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1732  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1733  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1734  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_bytes'
cgroup_xattr 1735  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_bytes'
cgroup_xattr 1736  TPASS  :  Expect: values equal
cgroup_xattr 1737  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_service_bytes'
cgroup_xattr 1738  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_bytes'
cgroup_xattr 1739  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_bytes'
cgroup_xattr 1740  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mem_exclusive'
cgroup_xattr 1741  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mem_exclusive'
cgroup_xattr 1742  TPASS  :  Expect: values equal
cgroup_xattr 1743  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.mem_exclusive'
cgroup_xattr 1744  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mem_exclusive'
cgroup_xattr 1745  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mem_exclusive'
cgroup_xattr 1746  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.stat'
cgroup_xattr 1747  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.stat'
cgroup_xattr 1748  TPASS  :  Expect: values equal
cgroup_xattr 1749  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuacct.stat'
cgroup_xattr 1750  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.stat'
cgroup_xattr 1751  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.stat'
cgroup_xattr 1752  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.slabinfo'
cgroup_xattr 1753  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.slabinfo'
cgroup_xattr 1754  TPASS  :  Expect: values equal
cgroup_xattr 1755  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.slabinfo'
cgroup_xattr 1756  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.slabinfo'
cgroup_xattr 1757  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.slabinfo'
cgroup_xattr 1758  TPASS  :  Expect: can't read xattr security. of file 'cpu.stat'
cgroup_xattr 1759  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.stat'
cgroup_xattr 1760  TPASS  :  Expect: values equal
cgroup_xattr 1761  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpu.stat'
cgroup_xattr 1762  TPASS  :  Expect: can't read xattr user. of file 'cpu.stat'
cgroup_xattr 1763  TPASS  :  Expect: can't read xattr system. of file 'cpu.stat'
cgroup_xattr 1764  TPASS  :  Expect: can't read xattr security. of file 'cpuset.effective_cpus'
cgroup_xattr 1765  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.effective_cpus'
cgroup_xattr 1766  TPASS  :  Expect: values equal
cgroup_xattr 1767  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.effective_cpus'
cgroup_xattr 1768  TPASS  :  Expect: can't read xattr user. of file 'cpuset.effective_cpus'
cgroup_xattr 1769  TPASS  :  Expect: can't read xattr system. of file 'cpuset.effective_cpus'
cgroup_xattr 1770  TPASS  :  Expect: can't read xattr security. of file 'cpuset.effective_mems'
cgroup_xattr 1771  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.effective_mems'
cgroup_xattr 1772  TPASS  :  Expect: values equal
cgroup_xattr 1773  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.effective_mems'
cgroup_xattr 1774  TPASS  :  Expect: can't read xattr user. of file 'cpuset.effective_mems'
cgroup_xattr 1775  TPASS  :  Expect: can't read xattr system. of file 'cpuset.effective_mems'
cgroup_xattr 1776  TPASS  :  Expect: can't read xattr security. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1777  TPASS  :  Expect: can read xattr trusted.test of file 'memory.max_usage_in_bytes'
cgroup_xattr 1778  TPASS  :  Expect: values equal
cgroup_xattr 1779  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1780  TPASS  :  Expect: can't read xattr user. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1781  TPASS  :  Expect: can't read xattr system. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1782  TPASS  :  Expect: can't read xattr security. of file 'memory.numa_stat'
cgroup_xattr 1783  TPASS  :  Expect: can read xattr trusted.test of file 'memory.numa_stat'
cgroup_xattr 1784  TPASS  :  Expect: values equal
cgroup_xattr 1785  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.numa_stat'
cgroup_xattr 1786  TPASS  :  Expect: can't read xattr user. of file 'memory.numa_stat'
cgroup_xattr 1787  TPASS  :  Expect: can't read xattr system. of file 'memory.numa_stat'
cgroup_xattr 1788  TPASS  :  Expect: can't read xattr security. of file 'cgroup.clone_children'
cgroup_xattr 1789  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.clone_children'
cgroup_xattr 1790  TPASS  :  Expect: values equal
cgroup_xattr 1791  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cgroup.clone_children'
cgroup_xattr 1792  TPASS  :  Expect: can't read xattr user. of file 'cgroup.clone_children'
cgroup_xattr 1793  TPASS  :  Expect: can't read xattr system. of file 'cgroup.clone_children'
cgroup_xattr 1794  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1795  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1796  TPASS  :  Expect: values equal
cgroup_xattr 1797  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1798  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1799  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1800  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1801  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1802  TPASS  :  Expect: values equal
cgroup_xattr 1803  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1804  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1805  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1806  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1807  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1808  TPASS  :  Expect: values equal
cgroup_xattr 1809  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1810  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1811  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1812  TPASS  :  Expect: can't read xattr security. of file 'cpuset.sched_load_balance'
cgroup_xattr 1813  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.sched_load_balance'
cgroup_xattr 1814  TPASS  :  Expect: values equal
cgroup_xattr 1815  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.sched_load_balance'
cgroup_xattr 1816  TPASS  :  Expect: can't read xattr user. of file 'cpuset.sched_load_balance'
cgroup_xattr 1817  TPASS  :  Expect: can't read xattr system. of file 'cpuset.sched_load_balance'
cgroup_xattr 1818  TPASS  :  Expect: can't read xattr security. of file 'cpu.cfs_period_us'
cgroup_xattr 1819  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.cfs_period_us'
cgroup_xattr 1820  TPASS  :  Expect: values equal
cgroup_xattr 1821  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpu.cfs_period_us'
cgroup_xattr 1822  TPASS  :  Expect: can't read xattr user. of file 'cpu.cfs_period_us'
cgroup_xattr 1823  TPASS  :  Expect: can't read xattr system. of file 'cpu.cfs_period_us'
cgroup_xattr 1824  TPASS  :  Expect: can't read xattr security. of file 'memory.oom_control'
cgroup_xattr 1825  TPASS  :  Expect: can read xattr trusted.test of file 'memory.oom_control'
cgroup_xattr 1826  TPASS  :  Expect: values equal
cgroup_xattr 1827  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.oom_control'
cgroup_xattr 1828  TPASS  :  Expect: can't read xattr user. of file 'memory.oom_control'
cgroup_xattr 1829  TPASS  :  Expect: can't read xattr system. of file 'memory.oom_control'
cgroup_xattr 1830  TPASS  :  Expect: can't read xattr security. of file 'cgroup.sane_behavior'
cgroup_xattr 1831  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.sane_behavior'
cgroup_xattr 1832  TPASS  :  Expect: values equal
cgroup_xattr 1833  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cgroup.sane_behavior'
cgroup_xattr 1834  TPASS  :  Expect: can't read xattr user. of file 'cgroup.sane_behavior'
cgroup_xattr 1835  TPASS  :  Expect: can't read xattr system. of file 'cgroup.sane_behavior'
cgroup_xattr 1836  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1837  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1838  TPASS  :  Expect: values equal
cgroup_xattr 1839  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1840  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1841  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1842  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.failcnt'
cgroup_xattr 1843  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.failcnt'
cgroup_xattr 1844  TPASS  :  Expect: values equal
cgroup_xattr 1845  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.failcnt'
cgroup_xattr 1846  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.failcnt'
cgroup_xattr 1847  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.failcnt'
cgroup_xattr 1848  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1849  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1850  TPASS  :  Expect: values equal
cgroup_xattr 1851  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1852  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1853  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1854  TPASS  :  Expect: can't read xattr security. of file 'cpu.rt_period_us'
cgroup_xattr 1855  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.rt_period_us'
cgroup_xattr 1856  TPASS  :  Expect: values equal
cgroup_xattr 1857  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpu.rt_period_us'
cgroup_xattr 1858  TPASS  :  Expect: can't read xattr user. of file 'cpu.rt_period_us'
cgroup_xattr 1859  TPASS  :  Expect: can't read xattr system. of file 'cpu.rt_period_us'
cgroup_xattr 1860  TPASS  :  Expect: can't read xattr security. of file 'notify_on_release'
cgroup_xattr 1861  TPASS  :  Expect: can read xattr trusted.test of file 'notify_on_release'
cgroup_xattr 1862  TPASS  :  Expect: values equal
cgroup_xattr 1863  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'notify_on_release'
cgroup_xattr 1864  TPASS  :  Expect: can't read xattr user. of file 'notify_on_release'
cgroup_xattr 1865  TPASS  :  Expect: can't read xattr system. of file 'notify_on_release'
cgroup_xattr 1866  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_time'
cgroup_xattr 1867  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_time'
cgroup_xattr 1868  TPASS  :  Expect: values equal
cgroup_xattr 1869  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_service_time'
cgroup_xattr 1870  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_time'
cgroup_xattr 1871  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_time'
cgroup_xattr 1872  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_pressure_enabled'
cgroup_xattr 1873  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_pressure_enabled'
cgroup_xattr 1874  TPASS  :  Expect: values equal
cgroup_xattr 1875  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.memory_pressure_enabled'
cgroup_xattr 1876  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_pressure_enabled'
cgroup_xattr 1877  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_pressure_enabled'
cgroup_xattr 1878  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1879  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1880  TPASS  :  Expect: values equal
cgroup_xattr 1881  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1882  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1883  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1884  TPASS  :  Expect: can't read xattr security. of file 'memory.stat'
cgroup_xattr 1885  TPASS  :  Expect: can read xattr trusted.test of file 'memory.stat'
cgroup_xattr 1886  TPASS  :  Expect: values equal
cgroup_xattr 1887  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.stat'
cgroup_xattr 1888  TPASS  :  Expect: can't read xattr user. of file 'memory.stat'
cgroup_xattr 1889  TPASS  :  Expect: can't read xattr system. of file 'memory.stat'
cgroup_xattr 1890  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_migrate'
cgroup_xattr 1891  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_migrate'
cgroup_xattr 1892  TPASS  :  Expect: values equal
cgroup_xattr 1893  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuset.memory_migrate'
cgroup_xattr 1894  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_migrate'
cgroup_xattr 1895  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_migrate'
cgroup_xattr 1896  TPASS  :  Expect: can't read xattr security. of file 'devices.deny'
cgroup_xattr 1897  TPASS  :  Expect: can read xattr trusted.test of file 'devices.deny'
cgroup_xattr 1898  TPASS  :  Expect: values equal
cgroup_xattr 1899  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'devices.deny'
cgroup_xattr 1900  TPASS  :  Expect: can't read xattr user. of file 'devices.deny'
cgroup_xattr 1901  TPASS  :  Expect: can't read xattr system. of file 'devices.deny'
cgroup_xattr 1902  TPASS  :  Expect: can't read xattr security. of file 'devices.list'
cgroup_xattr 1903  TPASS  :  Expect: can read xattr trusted.test of file 'devices.list'
cgroup_xattr 1904  TPASS  :  Expect: values equal
cgroup_xattr 1905  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'devices.list'
cgroup_xattr 1906  TPASS  :  Expect: can't read xattr user. of file 'devices.list'
cgroup_xattr 1907  TPASS  :  Expect: can't read xattr system. of file 'devices.list'
cgroup_xattr 1908  TPASS  :  Expect: can't read xattr security. of file 'cgroup.event_control'
cgroup_xattr 1909  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.event_control'
cgroup_xattr 1910  TPASS  :  Expect: values equal
cgroup_xattr 1911  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cgroup.event_control'
cgroup_xattr 1912  TPASS  :  Expect: can't read xattr user. of file 'cgroup.event_control'
cgroup_xattr 1913  TPASS  :  Expect: can't read xattr system. of file 'cgroup.event_control'
cgroup_xattr 1914  TPASS  :  Expect: can't read xattr security. of file 'blkio.time_recursive'
cgroup_xattr 1915  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.time_recursive'
cgroup_xattr 1916  TPASS  :  Expect: values equal
cgroup_xattr 1917  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.time_recursive'
cgroup_xattr 1918  TPASS  :  Expect: can't read xattr user. of file 'blkio.time_recursive'
cgroup_xattr 1919  TPASS  :  Expect: can't read xattr system. of file 'blkio.time_recursive'
cgroup_xattr 1920  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_merged'
cgroup_xattr 1921  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_merged'
cgroup_xattr 1922  TPASS  :  Expect: values equal
cgroup_xattr 1923  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_merged'
cgroup_xattr 1924  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_merged'
cgroup_xattr 1925  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_merged'
cgroup_xattr 1926  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1927  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1928  TPASS  :  Expect: values equal
cgroup_xattr 1929  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1930  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1931  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1932  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1933  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1934  TPASS  :  Expect: values equal
cgroup_xattr 1935  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1936  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1937  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1938  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1939  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1940  TPASS  :  Expect: values equal
cgroup_xattr 1941  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1942  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1943  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1944  TPASS  :  Expect: can't read xattr security. of file 'blkio.sectors'
cgroup_xattr 1945  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.sectors'
cgroup_xattr 1946  TPASS  :  Expect: values equal
cgroup_xattr 1947  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.sectors'
cgroup_xattr 1948  TPASS  :  Expect: can't read xattr user. of file 'blkio.sectors'
cgroup_xattr 1949  TPASS  :  Expect: can't read xattr system. of file 'blkio.sectors'
cgroup_xattr 1950  TPASS  :  Expect: can't read xattr security. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1951  TPASS  :  Expect: can read xattr trusted.test of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1952  TPASS  :  Expect: values equal
cgroup_xattr 1953  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1954  TPASS  :  Expect: can't read xattr user. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1955  TPASS  :  Expect: can't read xattr system. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1956  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_queued'
cgroup_xattr 1957  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_queued'
cgroup_xattr 1958  TPASS  :  Expect: values equal
cgroup_xattr 1959  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_queued'
cgroup_xattr 1960  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_queued'
cgroup_xattr 1961  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_queued'
cgroup_xattr 1962  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1963  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1964  TPASS  :  Expect: values equal
cgroup_xattr 1965  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1966  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1967  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1968  TPASS  :  Expect: can't read xattr security. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1969  TPASS  :  Expect: can read xattr trusted.test of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1970  TPASS  :  Expect: values equal
cgroup_xattr 1971  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1972  TPASS  :  Expect: can't read xattr user. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1973  TPASS  :  Expect: can't read xattr system. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1974  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage'
cgroup_xattr 1975  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage'
cgroup_xattr 1976  TPASS  :  Expect: values equal
cgroup_xattr 1977  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'cpuacct.usage'
cgroup_xattr 1978  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage'
cgroup_xattr 1979  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage'
cgroup_xattr 1980  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_queued_recursive'
cgroup_xattr 1981  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_queued_recursive'
cgroup_xattr 1982  TPASS  :  Expect: values equal
cgroup_xattr 1983  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'blkio.io_queued_recursive'
cgroup_xattr 1984  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_queued_recursive'
cgroup_xattr 1985  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_queued_recursive'
cgroup_xattr 1986  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1987  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1988  TPASS  :  Expect: values equal
cgroup_xattr 1989  TFAIL  :  cgroup_xattr.c:375: Expect: can read xattr trusted. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1990  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1991  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr    0  TINFO  :  All test-cases have been completed, summary:
cgroup_xattr    0  TINFO  :  Set tests result: FAIL
cgroup_xattr    0  TINFO  :  Get tests result: FAIL
incrementing stop
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=1 corefile=no
cutime=1 cstime=5
<<<test_end>>>
INFO: ltp-pan reported some tests FAIL
LTP Version: 20160510

       ###############################################################

            Done executing testcases.
            LTP Version:  20160510
       ###############################################################


^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: [PATCH v3 00/17] Xattr inode operation removal
  2016-05-30 16:02       ` Sedat Dilek
@ 2016-05-30 18:22         ` Andreas Gruenbacher
  2016-05-30 18:51           ` Sedat Dilek
  0 siblings, 1 reply; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30 18:22 UTC (permalink / raw)
  To: sedat.dilek
  Cc: Alexander Viro, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel, LSM,
	David Howells, Serge Hallyn, Dmitry Kasatkin, Paul Moore,
	Stephen Smalley, Eric Paris, Casey Schaufler, Oleg Drokin,
	Andreas Dilger

On Mon, May 30, 2016 at 6:02 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> I contacted the LTP mailing-list on the acl_test01 issues - WIP.
>
> From the LTP-ML I got the impulse to test with the xattr testcase...
>
> root# cd /opt/ltp ; LC_ALL=C ./runltp -s xattr | tee xattr.log
>
> ...this fails only in the cgroup_xattr testcase.
> [...]

The test seems to try getting/setting an xattr named "trusted." (no
suffix). That's an invalid name; such invalid names are rejected since
commit 98e9cb571 "vfs: Distinguish between full xattr names and proper
prefixes" (v4.5-rc1).

Could you try removing that from the LTP test and rerun it?

Thanks,
Andreas

^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: [PATCH v3 00/17] Xattr inode operation removal
  2016-05-30 18:22         ` Andreas Gruenbacher
@ 2016-05-30 18:51           ` Sedat Dilek
  2016-05-30 19:19             ` Sedat Dilek
  2016-05-30 19:29             ` Andreas Gruenbacher
  0 siblings, 2 replies; 27+ messages in thread
From: Sedat Dilek @ 2016-05-30 18:51 UTC (permalink / raw)
  To: Andreas Gruenbacher
  Cc: Alexander Viro, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel, LSM,
	David Howells, Serge Hallyn, Dmitry Kasatkin, Paul Moore,
	Stephen Smalley, Eric Paris, Casey Schaufler, Oleg Drokin,
	Andreas Dilger

On 5/30/16, Andreas Gruenbacher <agruenba@redhat.com> wrote:
> On Mon, May 30, 2016 at 6:02 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>> I contacted the LTP mailing-list on the acl_test01 issues - WIP.
>>
>> From the LTP-ML I got the impulse to test with the xattr testcase...
>>
>> root# cd /opt/ltp ; LC_ALL=C ./runltp -s xattr | tee xattr.log
>>
>> ...this fails only in the cgroup_xattr testcase.
>> [...]
>
> The test seems to try getting/setting an xattr named "trusted." (no
> suffix). That's an invalid name; such invalid names are rejected since
> commit 98e9cb571 "vfs: Distinguish between full xattr names and proper
> prefixes" (v4.5-rc1).
>
> Could you try removing that from the LTP test and rerun it?
>

AFAICS I need to re-compile...

[ testcases/kernel/controllers/cgroup_xattr/cgroup_xattr.c ]
...
/* only security.* & trusted.* are valid key names */
static struct tst_key tkeys[] = {
        { .name = "security.",          .good = 1,      },
        { .name = "trusted.test",       .good = 1,      },
        { .name = "trusted.",           .good = 1,      }, <--- XXX:
This one only?
        { .name = "user.",              .good = 0,      },
        { .name = "system.",            .good = 0,      },
};
...

Which "trusted." line or lines shall I remove?

- Sedat -

^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: [PATCH v3 00/17] Xattr inode operation removal
  2016-05-30 18:51           ` Sedat Dilek
@ 2016-05-30 19:19             ` Sedat Dilek
  2016-05-30 19:29             ` Andreas Gruenbacher
  1 sibling, 0 replies; 27+ messages in thread
From: Sedat Dilek @ 2016-05-30 19:19 UTC (permalink / raw)
  To: Andreas Gruenbacher
  Cc: Alexander Viro, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel, LSM,
	David Howells, Serge Hallyn, Dmitry Kasatkin, Paul Moore,
	Stephen Smalley, Eric Paris, Casey Schaufler, Oleg Drokin,
	Andreas Dilger

[-- Attachment #1: Type: text/plain, Size: 2473 bytes --]

On 5/30/16, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> On 5/30/16, Andreas Gruenbacher <agruenba@redhat.com> wrote:
>> On Mon, May 30, 2016 at 6:02 PM, Sedat Dilek <sedat.dilek@gmail.com>
>> wrote:
>>> I contacted the LTP mailing-list on the acl_test01 issues - WIP.
>>>
>>> From the LTP-ML I got the impulse to test with the xattr testcase...
>>>
>>> root# cd /opt/ltp ; LC_ALL=C ./runltp -s xattr | tee xattr.log
>>>
>>> ...this fails only in the cgroup_xattr testcase.
>>> [...]
>>
>> The test seems to try getting/setting an xattr named "trusted." (no
>> suffix). That's an invalid name; such invalid names are rejected since
>> commit 98e9cb571 "vfs: Distinguish between full xattr names and proper
>> prefixes" (v4.5-rc1).
>>
>> Could you try removing that from the LTP test and rerun it?
>>
>
> AFAICS I need to re-compile...
>
> [ testcases/kernel/controllers/cgroup_xattr/cgroup_xattr.c ]
> ...
> /* only security.* & trusted.* are valid key names */
> static struct tst_key tkeys[] = {
>         { .name = "security.",          .good = 1,      },
>         { .name = "trusted.test",       .good = 1,      },
>         { .name = "trusted.",           .good = 1,      }, <--- XXX:
> This one only?
>         { .name = "user.",              .good = 0,      },
>         { .name = "system.",            .good = 0,      },
> };
> ...
>
> Which "trusted." line or lines shall I remove?
>

With the attached patch I get the LTP xattr testcase run successfully...

root# cat results/LTP_RUN_ON-2016_05_30-21h_15m_19s.log
Test Start Time: Mon May 30 21:15:21 2016
-----------------------------------------
Testcase                       Result     Exit Value
--------                       ------     ----------
getxattr01                     PASS       0
getxattr02                     PASS       0
getxattr03                     PASS       0
llistxattr01                   PASS       0
llistxattr02                   PASS       0
llistxattr03                   PASS       0
removexattr01                  PASS       0
removexattr02                  PASS       0
setxattr01                     PASS       0
setxattr02                     PASS       0
setxattr03                     PASS       0
cgroup_xattr                   PASS       0

-----------------------------------------------
Total Tests: 12
Total Skipped Tests: 0
Total Failures: 0
Kernel Version: 4.7.0-rc1-2-iniza-small
Machine Architecture: x86_64
Hostname: fambox

My xattr.log is attached.

- Sedat -

[-- Attachment #2: cgroup_xattr.diff --]
[-- Type: text/plain, Size: 447 bytes --]

--- ltp-full-20160510.orig/testcases/kernel/controllers/cgroup_xattr/cgroup_xattr.c
+++ ltp-full-20160510/testcases/kernel/controllers/cgroup_xattr/cgroup_xattr.c
@@ -66,7 +66,9 @@ struct tst_key {
 static struct tst_key tkeys[] = {
 	{ .name = "security.",		.good = 1,	},
 	{ .name = "trusted.test",	.good = 1,	},
+#if 0
 	{ .name = "trusted.",		.good = 1,	},
+#endif
 	{ .name = "user.",		.good = 0,	},
 	{ .name = "system.",		.good = 0,	},
 };

[-- Attachment #3: LTP_RUN_ON-2016_05_30-21h_15m_19s.log --]
[-- Type: application/octet-stream, Size: 959 bytes --]

Test Start Time: Mon May 30 21:15:21 2016
-----------------------------------------
Testcase                       Result     Exit Value
--------                       ------     ----------
getxattr01                     PASS       0    
getxattr02                     PASS       0    
getxattr03                     PASS       0    
llistxattr01                   PASS       0    
llistxattr02                   PASS       0    
llistxattr03                   PASS       0    
removexattr01                  PASS       0    
removexattr02                  PASS       0    
setxattr01                     PASS       0    
setxattr02                     PASS       0    
setxattr03                     PASS       0    
cgroup_xattr                   PASS       0    

-----------------------------------------------
Total Tests: 12
Total Skipped Tests: 0
Total Failures: 0
Kernel Version: 4.7.0-rc1-2-iniza-small
Machine Architecture: x86_64
Hostname: fambox


[-- Attachment #4: xattr.log --]
[-- Type: application/octet-stream, Size: 163378 bytes --]

INFO: creating /opt/ltp/results directory

    INFO: no command files were provided. Will execute the following
          runtest scenario files:

syscalls fs fs_perms_simple fsx dio io mm ipc sched math nptl pty containers fs_bind controllers filecaps cap_bounds fcntl-locktests connectors admin_tools timers power_management_tests numa hugetlb commands hyperthreading kernel_misc modules fs_ext4 pipes can cpuhotplug ipv6_lib input 

Checking for required user/group ids

'nobody' user id and group found.
'bin' user id and group found.
'daemon' user id and group found.
Users group found.
Sys group found.
Required users/groups exist.
If some fields are empty or look unusual you may have an old version.
Compare to the current minimal requirements in Documentation/Changes.
 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION="Ubuntu 12.04.5 LTS"
NAME="Ubuntu"
VERSION="12.04.5 LTS, Precise Pangolin"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu precise (12.04.5 LTS)"
VERSION_ID="12.04"
Linux fambox 4.7.0-rc1-2-iniza-small #1 SMP Mon May 30 11:36:11 CEST 2016 x86_64 x86_64 x86_64 GNU/Linux
 
Gnu C                  gcc (Ubuntu 4.9.2-0ubuntu1~12.04) 4.9.2
Gnu make               3.81
util-linux             linux 2.20.1
mount                  linux 2.20.1 (with libblkid and selinux support)
modutils               6
e2fsprogs              1.42
PPP                    2.4.5
Linux C Library        > libc.2.15
Dynamic linker (ldd)   2.15
Procps                 3.2.8
Net-tools              1.60
iproute2              iproute2-ss121211
Kbd                    1.15.2
Sh-utils               8.13
Modules Loaded         ppp_deflate bsd_comp ppp_async crc_ccitt option usb_wwan cdc_ether usbserial usbnet bnep rfcomm arc4 parport_pc iwldvm ppdev mac80211 uvcvideo i915 snd_hda_codec_hdmi snd_hda_codec_realtek kvm_intel snd_hda_codec_generic videobuf2_vmalloc videobuf2_memops snd_hda_intel kvm videobuf2_v4l2 snd_hda_codec joydev videobuf2_core videodev snd_hwdep usb_storage btusb snd_hda_core btrtl iwlwifi snd_pcm i2c_algo_bit btbcm drm_kms_helper btintel snd_seq_midi irqbypass bluetooth psmouse snd_seq_midi_event syscopyarea snd_rawmidi sysfillrect snd_seq sysimgblt snd_timer samsung_laptop serio_raw cfg80211 fb_sys_fops snd_seq_device drm lpc_ich snd soundcore video wmi intel_rst mac_hid acpi_cpufreq binfmt_misc lp parport hid_generic usbhid hid r8169 mii

free reports:
             total       used       free     shared    buffers     cached
Mem:       3924488    3676004     248484          0     962024    2048628
-/+ buffers/cache:     665352    3259136
Swap:       262140          0     262140

/proc/cpuinfo
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 42
model name	: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping	: 7
microcode	: 0x28
cpu MHz		: 1500.000
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 2
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs		:
bogomips	: 3192.77
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 6
model		: 42
model name	: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping	: 7
microcode	: 0x28
cpu MHz		: 1601.000
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 2
apicid		: 1
initial apicid	: 1
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs		:
bogomips	: 3199.91
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

processor	: 2
vendor_id	: GenuineIntel
cpu family	: 6
model		: 42
model name	: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping	: 7
microcode	: 0x28
cpu MHz		: 1601.000
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 2
apicid		: 2
initial apicid	: 2
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs		:
bogomips	: 3197.22
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

processor	: 3
vendor_id	: GenuineIntel
cpu family	: 6
model		: 42
model name	: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping	: 7
microcode	: 0x28
cpu MHz		: 1300.000
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 2
apicid		: 3
initial apicid	: 3
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs		:
bogomips	: 3197.24
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

no big block device was specified on commandline.
Tests which require a big block device are disabled.
You can specify it with option -z
COMMAND:    /opt/ltp/bin/ltp-pan  -e -S   -a 27857     -n 27857  -p  -f /tmp/ltp-ufG9VfhUML/alltests -l /opt/ltp/results/LTP_RUN_ON-2016_05_30-21h_15m_19s.log  -C /opt/ltp/output/LTP_RUN_ON-2016_05_30-21h_15m_19s.failed -T /opt/ltp/output/LTP_RUN_ON-2016_05_30-21h_15m_19s.tconf
INFO: Restricted to xattr
LOG File: /opt/ltp/results/LTP_RUN_ON-2016_05_30-21h_15m_19s.log
FAILED COMMAND File: /opt/ltp/output/LTP_RUN_ON-2016_05_30-21h_15m_19s.failed
TCONF COMMAND File: /opt/ltp/output/LTP_RUN_ON-2016_05_30-21h_15m_19s.tconf
Running tests.......
<<<test_start>>>
tag=getxattr01 stime=1464635721
cmdline="getxattr01"
contacts=""
analysis=exit
<<<test_output>>>
getxattr01    1  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
getxattr01    2  TPASS  :  expected behavior: TEST_ERRNO=ERANGE(34): Numerical result out of range
getxattr01    3  TPASS  :  expected behavior: TEST_ERRNO=SUCCESS(0): Success
getxattr01    4  TPASS  :  Got the right value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getxattr02 stime=1464635721
cmdline="getxattr02"
contacts=""
analysis=exit
<<<test_output>>>
getxattr02    1  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
getxattr02    2  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
getxattr02    3  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
getxattr02    4  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getxattr03 stime=1464635721
cmdline="getxattr03"
contacts=""
analysis=exit
<<<test_output>>>
getxattr03    1  TPASS  :  getxattr(2) returned correct value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=llistxattr01 stime=1464635721
cmdline="llistxattr01"
contacts=""
analysis=exit
<<<test_output>>>
llistxattr01.c:100: PASS: llistxattr() succeeded

Summary:
passed   1
failed   0
skipped  0
warnings 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=llistxattr02 stime=1464635721
cmdline="llistxattr02"
contacts=""
analysis=exit
<<<test_output>>>
llistxattr02.c:76: PASS: llistxattr() failed as expected: ERANGE
llistxattr02.c:76: PASS: llistxattr() failed as expected: ENOENT
llistxattr02.c:76: PASS: llistxattr() failed as expected: EFAULT

Summary:
passed   3
failed   0
skipped  0
warnings 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=llistxattr03 stime=1464635721
cmdline="llistxattr03"
contacts=""
analysis=exit
<<<test_output>>>
llistxattr03.c:67: PASS: llistxattr() succeed with suitable buffer
llistxattr03.c:67: PASS: llistxattr() succeed with suitable buffer

Summary:
passed   2
failed   0
skipped  0
warnings 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=removexattr01 stime=1464635721
cmdline="removexattr01"
contacts=""
analysis=exit
<<<test_output>>>
removexattr01    1  TPASS  :  removexattr() succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=removexattr02 stime=1464635721
cmdline="removexattr02"
contacts=""
analysis=exit
<<<test_output>>>
removexattr02    1  TPASS  :  removexattr() failed as expected: TEST_ERRNO=ENODATA(61): No data available
removexattr02    2  TPASS  :  removexattr() failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
removexattr02    3  TPASS  :  removexattr() failed as expected: TEST_ERRNO=EFAULT(14): Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setxattr01 stime=1464635721
cmdline="setxattr01"
contacts=""
analysis=exit
<<<test_output>>>
setxattr01    1  TPASS  :  expected behavior: TEST_ERRNO=EINVAL(22): Invalid argument
setxattr01    2  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
setxattr01    3  TPASS  :  expected behavior: TEST_ERRNO=ERANGE(34): Numerical result out of range
setxattr01    4  TPASS  :  expected behavior: TEST_ERRNO=E2BIG(7): Argument list too long
setxattr01    5  TPASS  :  expected behavior: TEST_ERRNO=SUCCESS(0): Success
setxattr01    6  TPASS  :  expected behavior: TEST_ERRNO=EEXIST(17): File exists
setxattr01    7  TPASS  :  expected behavior: TEST_ERRNO=SUCCESS(0): Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setxattr02 stime=1464635721
cmdline="setxattr02"
contacts=""
analysis=exit
<<<test_output>>>
setxattr02    1  TPASS  :  expected behavior: TEST_ERRNO=SUCCESS(0): Success
setxattr02    2  TPASS  :  expected behavior: TEST_ERRNO=SUCCESS(0): Success
setxattr02    3  TPASS  :  expected behavior: TEST_ERRNO=EEXIST(17): File exists
setxattr02    4  TPASS  :  expected behavior: TEST_ERRNO=EPERM(1): Operation not permitted
setxattr02    5  TPASS  :  expected behavior: TEST_ERRNO=EPERM(1): Operation not permitted
setxattr02    6  TPASS  :  expected behavior: TEST_ERRNO=EPERM(1): Operation not permitted
setxattr02    7  TPASS  :  expected behavior: TEST_ERRNO=EPERM(1): Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setxattr03 stime=1464635721
cmdline="setxattr03"
contacts=""
analysis=exit
<<<test_output>>>
setxattr03    1  TPASS  :  Set attr to immutable file: TEST_ERRNO=EPERM(1): Operation not permitted
setxattr03    2  TPASS  :  Set attr to append-only file: TEST_ERRNO=EPERM(1): Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=cgroup_xattr stime=1464635721
cmdline="cgroup_xattr"
contacts=""
analysis=exit
<<<test_output>>>
cgroup_xattr    0  TINFO  :  mount options 0: xattr,cpuset,cpu,cpuacct,blkio,memory,devices,freezer,perf_event,hugetlb (hier = 1)
cgroup_xattr    0  TINFO  :  In dir .
cgroup_xattr    1  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu'
cgroup_xattr    2  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu'
cgroup_xattr    3  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu'
cgroup_xattr    4  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu'
cgroup_xattr    0  TINFO  :  In dir test
cgroup_xattr    5  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu'
cgroup_xattr    6  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu'
cgroup_xattr    7  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu'
cgroup_xattr    8  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu'
cgroup_xattr    9  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.io_serviced'
cgroup_xattr   10  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.io_serviced'
cgroup_xattr   11  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.io_serviced'
cgroup_xattr   12  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.io_serviced'
cgroup_xattr   13  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.pressure_level'
cgroup_xattr   14  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.pressure_level'
cgroup_xattr   15  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.pressure_level'
cgroup_xattr   16  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.pressure_level'
cgroup_xattr   17  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr   18  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr   19  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr   20  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr   21  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr   22  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr   23  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr   24  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr   25  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.use_hierarchy'
cgroup_xattr   26  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.use_hierarchy'
cgroup_xattr   27  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.use_hierarchy'
cgroup_xattr   28  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.use_hierarchy'
cgroup_xattr   29  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.swappiness'
cgroup_xattr   30  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.swappiness'
cgroup_xattr   31  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.swappiness'
cgroup_xattr   32  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.swappiness'
cgroup_xattr   33  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_serviced_recursive'
cgroup_xattr   34  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_serviced_recursive'
cgroup_xattr   35  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_serviced_recursive'
cgroup_xattr   36  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_serviced_recursive'
cgroup_xattr   37  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.time'
cgroup_xattr   38  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.time'
cgroup_xattr   39  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.time'
cgroup_xattr   40  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.time'
cgroup_xattr   41  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr   42  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr   43  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr   44  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr   45  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mem_hardwall'
cgroup_xattr   46  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mem_hardwall'
cgroup_xattr   47  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mem_hardwall'
cgroup_xattr   48  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mem_hardwall'
cgroup_xattr   49  TPASS  :  Expect: can't set xattr key 'security.' to file 'tasks'
cgroup_xattr   50  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'tasks'
cgroup_xattr   51  TPASS  :  Expect: can't set xattr key 'user.' to file 'tasks'
cgroup_xattr   52  TPASS  :  Expect: can't set xattr key 'system.' to file 'tasks'
cgroup_xattr   53  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_serviced'
cgroup_xattr   54  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_serviced'
cgroup_xattr   55  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_serviced'
cgroup_xattr   56  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_serviced'
cgroup_xattr   57  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr   58  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr   59  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr   60  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr   61  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.reset_stats'
cgroup_xattr   62  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.reset_stats'
cgroup_xattr   63  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.reset_stats'
cgroup_xattr   64  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.reset_stats'
cgroup_xattr   65  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.limit_in_bytes'
cgroup_xattr   66  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.limit_in_bytes'
cgroup_xattr   67  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.limit_in_bytes'
cgroup_xattr   68  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.limit_in_bytes'
cgroup_xattr   69  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_wait_time'
cgroup_xattr   70  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_wait_time'
cgroup_xattr   71  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_wait_time'
cgroup_xattr   72  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_wait_time'
cgroup_xattr   73  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.weight'
cgroup_xattr   74  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.weight'
cgroup_xattr   75  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.weight'
cgroup_xattr   76  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.weight'
cgroup_xattr   77  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.procs'
cgroup_xattr   78  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.procs'
cgroup_xattr   79  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.procs'
cgroup_xattr   80  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.procs'
cgroup_xattr   81  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.leaf_weight_device'
cgroup_xattr   82  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.leaf_weight_device'
cgroup_xattr   83  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.leaf_weight_device'
cgroup_xattr   84  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.leaf_weight_device'
cgroup_xattr   85  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.allow'
cgroup_xattr   86  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.allow'
cgroup_xattr   87  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.allow'
cgroup_xattr   88  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.allow'
cgroup_xattr   89  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr   90  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.read_iops_device'
cgroup_xattr   91  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr   92  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr   93  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.rt_runtime_us'
cgroup_xattr   94  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.rt_runtime_us'
cgroup_xattr   95  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.rt_runtime_us'
cgroup_xattr   96  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.rt_runtime_us'
cgroup_xattr   97  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.shares'
cgroup_xattr   98  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.shares'
cgroup_xattr   99  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.shares'
cgroup_xattr  100  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.shares'
cgroup_xattr  101  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_merged_recursive'
cgroup_xattr  102  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_merged_recursive'
cgroup_xattr  103  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_merged_recursive'
cgroup_xattr  104  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_merged_recursive'
cgroup_xattr  105  TPASS  :  Expect: can't set xattr key 'security.' to file 'freezer.state'
cgroup_xattr  106  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'freezer.state'
cgroup_xattr  107  TPASS  :  Expect: can't set xattr key 'user.' to file 'freezer.state'
cgroup_xattr  108  TPASS  :  Expect: can't set xattr key 'system.' to file 'freezer.state'
cgroup_xattr  109  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  110  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  111  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  112  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  113  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.usage_in_bytes'
cgroup_xattr  114  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.usage_in_bytes'
cgroup_xattr  115  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.usage_in_bytes'
cgroup_xattr  116  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.usage_in_bytes'
cgroup_xattr  117  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.leaf_weight'
cgroup_xattr  118  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.leaf_weight'
cgroup_xattr  119  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.leaf_weight'
cgroup_xattr  120  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.leaf_weight'
cgroup_xattr  121  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.sectors_recursive'
cgroup_xattr  122  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.sectors_recursive'
cgroup_xattr  123  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.sectors_recursive'
cgroup_xattr  124  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.sectors_recursive'
cgroup_xattr  125  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.cpus'
cgroup_xattr  126  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.cpus'
cgroup_xattr  127  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.cpus'
cgroup_xattr  128  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.cpus'
cgroup_xattr  129  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mems'
cgroup_xattr  130  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mems'
cgroup_xattr  131  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mems'
cgroup_xattr  132  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mems'
cgroup_xattr  133  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.weight_device'
cgroup_xattr  134  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.weight_device'
cgroup_xattr  135  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.weight_device'
cgroup_xattr  136  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.weight_device'
cgroup_xattr  137  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  138  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  139  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  140  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  141  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_pressure'
cgroup_xattr  142  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_pressure'
cgroup_xattr  143  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_pressure'
cgroup_xattr  144  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_pressure'
cgroup_xattr  145  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_sys'
cgroup_xattr  146  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_sys'
cgroup_xattr  147  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_sys'
cgroup_xattr  148  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_sys'
cgroup_xattr  149  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.cfs_quota_us'
cgroup_xattr  150  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.cfs_quota_us'
cgroup_xattr  151  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.cfs_quota_us'
cgroup_xattr  152  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.cfs_quota_us'
cgroup_xattr  153  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_user'
cgroup_xattr  154  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_user'
cgroup_xattr  155  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_user'
cgroup_xattr  156  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_user'
cgroup_xattr  157  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_spread_page'
cgroup_xattr  158  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_spread_page'
cgroup_xattr  159  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_spread_page'
cgroup_xattr  160  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_spread_page'
cgroup_xattr  161  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  162  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_spread_slab'
cgroup_xattr  163  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  164  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  165  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.failcnt'
cgroup_xattr  166  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.failcnt'
cgroup_xattr  167  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.failcnt'
cgroup_xattr  168  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.failcnt'
cgroup_xattr  169  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  170  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_time_recursive'
cgroup_xattr  171  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  172  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  173  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  174  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  175  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  176  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  177  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  178  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.cpu_exclusive'
cgroup_xattr  179  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  180  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  181  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  182  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  183  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  184  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  185  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.force_empty'
cgroup_xattr  186  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.force_empty'
cgroup_xattr  187  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.force_empty'
cgroup_xattr  188  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.force_empty'
cgroup_xattr  189  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  190  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  191  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  192  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  193  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_bytes'
cgroup_xattr  194  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_bytes'
cgroup_xattr  195  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_bytes'
cgroup_xattr  196  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_bytes'
cgroup_xattr  197  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mem_exclusive'
cgroup_xattr  198  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mem_exclusive'
cgroup_xattr  199  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mem_exclusive'
cgroup_xattr  200  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mem_exclusive'
cgroup_xattr  201  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.stat'
cgroup_xattr  202  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.stat'
cgroup_xattr  203  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.stat'
cgroup_xattr  204  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.stat'
cgroup_xattr  205  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.slabinfo'
cgroup_xattr  206  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.slabinfo'
cgroup_xattr  207  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.slabinfo'
cgroup_xattr  208  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.slabinfo'
cgroup_xattr  209  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.stat'
cgroup_xattr  210  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.stat'
cgroup_xattr  211  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.stat'
cgroup_xattr  212  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.stat'
cgroup_xattr  213  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.effective_cpus'
cgroup_xattr  214  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.effective_cpus'
cgroup_xattr  215  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.effective_cpus'
cgroup_xattr  216  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.effective_cpus'
cgroup_xattr  217  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.effective_mems'
cgroup_xattr  218  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.effective_mems'
cgroup_xattr  219  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.effective_mems'
cgroup_xattr  220  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.effective_mems'
cgroup_xattr  221  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  222  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.max_usage_in_bytes'
cgroup_xattr  223  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  224  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  225  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.numa_stat'
cgroup_xattr  226  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.numa_stat'
cgroup_xattr  227  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.numa_stat'
cgroup_xattr  228  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.numa_stat'
cgroup_xattr  229  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.clone_children'
cgroup_xattr  230  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.clone_children'
cgroup_xattr  231  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.clone_children'
cgroup_xattr  232  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.clone_children'
cgroup_xattr  233  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  234  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  235  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  236  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  237  TPASS  :  Expect: can't set xattr key 'security.' to file 'freezer.parent_freezing'
cgroup_xattr  238  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'freezer.parent_freezing'
cgroup_xattr  239  TPASS  :  Expect: can't set xattr key 'user.' to file 'freezer.parent_freezing'
cgroup_xattr  240  TPASS  :  Expect: can't set xattr key 'system.' to file 'freezer.parent_freezing'
cgroup_xattr  241  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  242  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  243  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  244  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  245  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  246  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  247  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  248  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  249  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.sched_load_balance'
cgroup_xattr  250  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.sched_load_balance'
cgroup_xattr  251  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.sched_load_balance'
cgroup_xattr  252  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.sched_load_balance'
cgroup_xattr  253  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.cfs_period_us'
cgroup_xattr  254  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.cfs_period_us'
cgroup_xattr  255  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.cfs_period_us'
cgroup_xattr  256  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.cfs_period_us'
cgroup_xattr  257  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.oom_control'
cgroup_xattr  258  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.oom_control'
cgroup_xattr  259  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.oom_control'
cgroup_xattr  260  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.oom_control'
cgroup_xattr  261  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  262  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  263  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  264  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  265  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.failcnt'
cgroup_xattr  266  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.failcnt'
cgroup_xattr  267  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.failcnt'
cgroup_xattr  268  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.failcnt'
cgroup_xattr  269  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  270  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  271  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  272  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  273  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.rt_period_us'
cgroup_xattr  274  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.rt_period_us'
cgroup_xattr  275  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.rt_period_us'
cgroup_xattr  276  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.rt_period_us'
cgroup_xattr  277  TPASS  :  Expect: can't set xattr key 'security.' to file 'notify_on_release'
cgroup_xattr  278  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'notify_on_release'
cgroup_xattr  279  TPASS  :  Expect: can't set xattr key 'user.' to file 'notify_on_release'
cgroup_xattr  280  TPASS  :  Expect: can't set xattr key 'system.' to file 'notify_on_release'
cgroup_xattr  281  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_time'
cgroup_xattr  282  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_time'
cgroup_xattr  283  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_time'
cgroup_xattr  284  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_time'
cgroup_xattr  285  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  286  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  287  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  288  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  289  TPASS  :  Expect: can't set xattr key 'security.' to file 'freezer.self_freezing'
cgroup_xattr  290  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'freezer.self_freezing'
cgroup_xattr  291  TPASS  :  Expect: can't set xattr key 'user.' to file 'freezer.self_freezing'
cgroup_xattr  292  TPASS  :  Expect: can't set xattr key 'system.' to file 'freezer.self_freezing'
cgroup_xattr  293  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.stat'
cgroup_xattr  294  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.stat'
cgroup_xattr  295  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.stat'
cgroup_xattr  296  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.stat'
cgroup_xattr  297  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_migrate'
cgroup_xattr  298  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_migrate'
cgroup_xattr  299  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_migrate'
cgroup_xattr  300  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_migrate'
cgroup_xattr  301  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.deny'
cgroup_xattr  302  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.deny'
cgroup_xattr  303  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.deny'
cgroup_xattr  304  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.deny'
cgroup_xattr  305  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.list'
cgroup_xattr  306  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.list'
cgroup_xattr  307  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.list'
cgroup_xattr  308  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.list'
cgroup_xattr  309  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.event_control'
cgroup_xattr  310  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.event_control'
cgroup_xattr  311  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.event_control'
cgroup_xattr  312  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.event_control'
cgroup_xattr  313  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.time_recursive'
cgroup_xattr  314  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.time_recursive'
cgroup_xattr  315  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.time_recursive'
cgroup_xattr  316  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.time_recursive'
cgroup_xattr  317  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_merged'
cgroup_xattr  318  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_merged'
cgroup_xattr  319  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_merged'
cgroup_xattr  320  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_merged'
cgroup_xattr  321  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  322  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  323  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  324  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  325  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  326  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  327  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  328  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  329  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  330  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  331  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  332  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  333  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.sectors'
cgroup_xattr  334  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.sectors'
cgroup_xattr  335  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.sectors'
cgroup_xattr  336  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.sectors'
cgroup_xattr  337  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  338  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  339  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  340  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  341  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_queued'
cgroup_xattr  342  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_queued'
cgroup_xattr  343  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_queued'
cgroup_xattr  344  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_queued'
cgroup_xattr  345  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  346  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  347  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  348  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  349  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  350  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  351  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  352  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  353  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage'
cgroup_xattr  354  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage'
cgroup_xattr  355  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage'
cgroup_xattr  356  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage'
cgroup_xattr  357  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_queued_recursive'
cgroup_xattr  358  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_queued_recursive'
cgroup_xattr  359  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_queued_recursive'
cgroup_xattr  360  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_queued_recursive'
cgroup_xattr  361  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  362  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  363  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  364  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr    0  TINFO  :  In dir .
cgroup_xattr  365  TPASS  :  Expect: can't set xattr key 'security.' to file 'test'
cgroup_xattr  366  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'test'
cgroup_xattr  367  TPASS  :  Expect: can't set xattr key 'user.' to file 'test'
cgroup_xattr  368  TPASS  :  Expect: can't set xattr key 'system.' to file 'test'
cgroup_xattr  369  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.io_serviced'
cgroup_xattr  370  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.io_serviced'
cgroup_xattr  371  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.io_serviced'
cgroup_xattr  372  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.io_serviced'
cgroup_xattr  373  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.pressure_level'
cgroup_xattr  374  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.pressure_level'
cgroup_xattr  375  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.pressure_level'
cgroup_xattr  376  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.pressure_level'
cgroup_xattr  377  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr  378  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr  379  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr  380  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr  381  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  382  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  383  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  384  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  385  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.use_hierarchy'
cgroup_xattr  386  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.use_hierarchy'
cgroup_xattr  387  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.use_hierarchy'
cgroup_xattr  388  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.use_hierarchy'
cgroup_xattr  389  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.swappiness'
cgroup_xattr  390  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.swappiness'
cgroup_xattr  391  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.swappiness'
cgroup_xattr  392  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.swappiness'
cgroup_xattr  393  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_serviced_recursive'
cgroup_xattr  394  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_serviced_recursive'
cgroup_xattr  395  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_serviced_recursive'
cgroup_xattr  396  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_serviced_recursive'
cgroup_xattr  397  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.time'
cgroup_xattr  398  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.time'
cgroup_xattr  399  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.time'
cgroup_xattr  400  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.time'
cgroup_xattr  401  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  402  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  403  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  404  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  405  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mem_hardwall'
cgroup_xattr  406  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mem_hardwall'
cgroup_xattr  407  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mem_hardwall'
cgroup_xattr  408  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mem_hardwall'
cgroup_xattr  409  TPASS  :  Expect: can't set xattr key 'security.' to file 'tasks'
cgroup_xattr  410  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'tasks'
cgroup_xattr  411  TPASS  :  Expect: can't set xattr key 'user.' to file 'tasks'
cgroup_xattr  412  TPASS  :  Expect: can't set xattr key 'system.' to file 'tasks'
cgroup_xattr  413  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_serviced'
cgroup_xattr  414  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_serviced'
cgroup_xattr  415  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_serviced'
cgroup_xattr  416  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_serviced'
cgroup_xattr  417  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr  418  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr  419  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr  420  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr  421  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.reset_stats'
cgroup_xattr  422  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.reset_stats'
cgroup_xattr  423  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.reset_stats'
cgroup_xattr  424  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.reset_stats'
cgroup_xattr  425  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.limit_in_bytes'
cgroup_xattr  426  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.limit_in_bytes'
cgroup_xattr  427  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.limit_in_bytes'
cgroup_xattr  428  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.limit_in_bytes'
cgroup_xattr  429  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_wait_time'
cgroup_xattr  430  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_wait_time'
cgroup_xattr  431  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_wait_time'
cgroup_xattr  432  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_wait_time'
cgroup_xattr  433  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.weight'
cgroup_xattr  434  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.weight'
cgroup_xattr  435  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.weight'
cgroup_xattr  436  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.weight'
cgroup_xattr  437  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.procs'
cgroup_xattr  438  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.procs'
cgroup_xattr  439  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.procs'
cgroup_xattr  440  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.procs'
cgroup_xattr  441  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.leaf_weight_device'
cgroup_xattr  442  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.leaf_weight_device'
cgroup_xattr  443  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.leaf_weight_device'
cgroup_xattr  444  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.leaf_weight_device'
cgroup_xattr  445  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.allow'
cgroup_xattr  446  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.allow'
cgroup_xattr  447  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.allow'
cgroup_xattr  448  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.allow'
cgroup_xattr  449  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  450  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  451  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  452  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  453  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.rt_runtime_us'
cgroup_xattr  454  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.rt_runtime_us'
cgroup_xattr  455  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.rt_runtime_us'
cgroup_xattr  456  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.rt_runtime_us'
cgroup_xattr  457  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.shares'
cgroup_xattr  458  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.shares'
cgroup_xattr  459  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.shares'
cgroup_xattr  460  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.shares'
cgroup_xattr  461  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_merged_recursive'
cgroup_xattr  462  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_merged_recursive'
cgroup_xattr  463  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_merged_recursive'
cgroup_xattr  464  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_merged_recursive'
cgroup_xattr  465  TPASS  :  Expect: can't set xattr key 'security.' to file 'release_agent'
cgroup_xattr  466  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'release_agent'
cgroup_xattr  467  TPASS  :  Expect: can't set xattr key 'user.' to file 'release_agent'
cgroup_xattr  468  TPASS  :  Expect: can't set xattr key 'system.' to file 'release_agent'
cgroup_xattr  469  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  470  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  471  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  472  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  473  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.usage_in_bytes'
cgroup_xattr  474  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.usage_in_bytes'
cgroup_xattr  475  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.usage_in_bytes'
cgroup_xattr  476  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.usage_in_bytes'
cgroup_xattr  477  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.leaf_weight'
cgroup_xattr  478  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.leaf_weight'
cgroup_xattr  479  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.leaf_weight'
cgroup_xattr  480  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.leaf_weight'
cgroup_xattr  481  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.sectors_recursive'
cgroup_xattr  482  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.sectors_recursive'
cgroup_xattr  483  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.sectors_recursive'
cgroup_xattr  484  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.sectors_recursive'
cgroup_xattr  485  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.cpus'
cgroup_xattr  486  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.cpus'
cgroup_xattr  487  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.cpus'
cgroup_xattr  488  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.cpus'
cgroup_xattr  489  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mems'
cgroup_xattr  490  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mems'
cgroup_xattr  491  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mems'
cgroup_xattr  492  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mems'
cgroup_xattr  493  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.weight_device'
cgroup_xattr  494  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.weight_device'
cgroup_xattr  495  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.weight_device'
cgroup_xattr  496  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.weight_device'
cgroup_xattr  497  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  498  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  499  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  500  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  501  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_pressure'
cgroup_xattr  502  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_pressure'
cgroup_xattr  503  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_pressure'
cgroup_xattr  504  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_pressure'
cgroup_xattr  505  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_sys'
cgroup_xattr  506  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_sys'
cgroup_xattr  507  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_sys'
cgroup_xattr  508  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_sys'
cgroup_xattr  509  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.cfs_quota_us'
cgroup_xattr  510  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.cfs_quota_us'
cgroup_xattr  511  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.cfs_quota_us'
cgroup_xattr  512  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.cfs_quota_us'
cgroup_xattr  513  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_user'
cgroup_xattr  514  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_user'
cgroup_xattr  515  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_user'
cgroup_xattr  516  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_user'
cgroup_xattr  517  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_spread_page'
cgroup_xattr  518  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_spread_page'
cgroup_xattr  519  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_spread_page'
cgroup_xattr  520  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_spread_page'
cgroup_xattr  521  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  522  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_spread_slab'
cgroup_xattr  523  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  524  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  525  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.failcnt'
cgroup_xattr  526  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.failcnt'
cgroup_xattr  527  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.failcnt'
cgroup_xattr  528  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.failcnt'
cgroup_xattr  529  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  530  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_time_recursive'
cgroup_xattr  531  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  532  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  533  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  534  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  535  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  536  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  537  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  538  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.cpu_exclusive'
cgroup_xattr  539  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  540  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  541  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  542  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  543  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  544  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  545  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.force_empty'
cgroup_xattr  546  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.force_empty'
cgroup_xattr  547  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.force_empty'
cgroup_xattr  548  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.force_empty'
cgroup_xattr  549  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  550  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  551  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  552  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  553  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_bytes'
cgroup_xattr  554  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_bytes'
cgroup_xattr  555  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_bytes'
cgroup_xattr  556  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_bytes'
cgroup_xattr  557  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mem_exclusive'
cgroup_xattr  558  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mem_exclusive'
cgroup_xattr  559  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mem_exclusive'
cgroup_xattr  560  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mem_exclusive'
cgroup_xattr  561  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.stat'
cgroup_xattr  562  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.stat'
cgroup_xattr  563  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.stat'
cgroup_xattr  564  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.stat'
cgroup_xattr  565  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.slabinfo'
cgroup_xattr  566  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.slabinfo'
cgroup_xattr  567  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.slabinfo'
cgroup_xattr  568  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.slabinfo'
cgroup_xattr  569  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.stat'
cgroup_xattr  570  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.stat'
cgroup_xattr  571  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.stat'
cgroup_xattr  572  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.stat'
cgroup_xattr  573  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.effective_cpus'
cgroup_xattr  574  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.effective_cpus'
cgroup_xattr  575  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.effective_cpus'
cgroup_xattr  576  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.effective_cpus'
cgroup_xattr  577  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.effective_mems'
cgroup_xattr  578  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.effective_mems'
cgroup_xattr  579  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.effective_mems'
cgroup_xattr  580  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.effective_mems'
cgroup_xattr  581  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  582  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.max_usage_in_bytes'
cgroup_xattr  583  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  584  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  585  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.numa_stat'
cgroup_xattr  586  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.numa_stat'
cgroup_xattr  587  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.numa_stat'
cgroup_xattr  588  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.numa_stat'
cgroup_xattr  589  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.clone_children'
cgroup_xattr  590  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.clone_children'
cgroup_xattr  591  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.clone_children'
cgroup_xattr  592  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.clone_children'
cgroup_xattr  593  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  594  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  595  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  596  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  597  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  598  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  599  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  600  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  601  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  602  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  603  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  604  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  605  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.sched_load_balance'
cgroup_xattr  606  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.sched_load_balance'
cgroup_xattr  607  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.sched_load_balance'
cgroup_xattr  608  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.sched_load_balance'
cgroup_xattr  609  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.cfs_period_us'
cgroup_xattr  610  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.cfs_period_us'
cgroup_xattr  611  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.cfs_period_us'
cgroup_xattr  612  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.cfs_period_us'
cgroup_xattr  613  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.oom_control'
cgroup_xattr  614  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.oom_control'
cgroup_xattr  615  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.oom_control'
cgroup_xattr  616  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.oom_control'
cgroup_xattr  617  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.sane_behavior'
cgroup_xattr  618  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.sane_behavior'
cgroup_xattr  619  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.sane_behavior'
cgroup_xattr  620  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.sane_behavior'
cgroup_xattr  621  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  622  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  623  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  624  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  625  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.failcnt'
cgroup_xattr  626  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.failcnt'
cgroup_xattr  627  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.failcnt'
cgroup_xattr  628  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.failcnt'
cgroup_xattr  629  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  630  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  631  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  632  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  633  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.rt_period_us'
cgroup_xattr  634  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.rt_period_us'
cgroup_xattr  635  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.rt_period_us'
cgroup_xattr  636  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.rt_period_us'
cgroup_xattr  637  TPASS  :  Expect: can't set xattr key 'security.' to file 'notify_on_release'
cgroup_xattr  638  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'notify_on_release'
cgroup_xattr  639  TPASS  :  Expect: can't set xattr key 'user.' to file 'notify_on_release'
cgroup_xattr  640  TPASS  :  Expect: can't set xattr key 'system.' to file 'notify_on_release'
cgroup_xattr  641  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_time'
cgroup_xattr  642  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_time'
cgroup_xattr  643  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_time'
cgroup_xattr  644  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_time'
cgroup_xattr  645  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_pressure_enabled'
cgroup_xattr  646  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_pressure_enabled'
cgroup_xattr  647  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_pressure_enabled'
cgroup_xattr  648  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_pressure_enabled'
cgroup_xattr  649  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  650  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  651  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  652  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  653  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.stat'
cgroup_xattr  654  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.stat'
cgroup_xattr  655  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.stat'
cgroup_xattr  656  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.stat'
cgroup_xattr  657  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_migrate'
cgroup_xattr  658  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_migrate'
cgroup_xattr  659  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_migrate'
cgroup_xattr  660  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_migrate'
cgroup_xattr  661  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.deny'
cgroup_xattr  662  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.deny'
cgroup_xattr  663  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.deny'
cgroup_xattr  664  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.deny'
cgroup_xattr  665  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.list'
cgroup_xattr  666  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.list'
cgroup_xattr  667  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.list'
cgroup_xattr  668  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.list'
cgroup_xattr  669  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.event_control'
cgroup_xattr  670  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.event_control'
cgroup_xattr  671  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.event_control'
cgroup_xattr  672  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.event_control'
cgroup_xattr  673  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.time_recursive'
cgroup_xattr  674  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.time_recursive'
cgroup_xattr  675  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.time_recursive'
cgroup_xattr  676  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.time_recursive'
cgroup_xattr  677  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_merged'
cgroup_xattr  678  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_merged'
cgroup_xattr  679  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_merged'
cgroup_xattr  680  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_merged'
cgroup_xattr  681  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  682  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  683  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  684  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  685  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  686  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  687  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  688  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  689  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  690  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  691  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  692  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  693  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.sectors'
cgroup_xattr  694  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.sectors'
cgroup_xattr  695  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.sectors'
cgroup_xattr  696  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.sectors'
cgroup_xattr  697  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  698  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  699  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  700  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  701  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_queued'
cgroup_xattr  702  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_queued'
cgroup_xattr  703  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_queued'
cgroup_xattr  704  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_queued'
cgroup_xattr  705  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  706  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  707  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  708  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  709  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  710  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  711  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  712  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  713  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage'
cgroup_xattr  714  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage'
cgroup_xattr  715  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage'
cgroup_xattr  716  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage'
cgroup_xattr  717  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_queued_recursive'
cgroup_xattr  718  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_queued_recursive'
cgroup_xattr  719  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_queued_recursive'
cgroup_xattr  720  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_queued_recursive'
cgroup_xattr  721  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  722  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  723  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  724  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr    0  TINFO  :  In dir .
cgroup_xattr  725  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu'
cgroup_xattr  726  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu'
cgroup_xattr  727  TPASS  :  Expect: values equal
cgroup_xattr  728  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu'
cgroup_xattr  729  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu'
cgroup_xattr    0  TINFO  :  In dir test
cgroup_xattr  730  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu'
cgroup_xattr  731  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu'
cgroup_xattr  732  TPASS  :  Expect: values equal
cgroup_xattr  733  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu'
cgroup_xattr  734  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu'
cgroup_xattr  735  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.io_serviced'
cgroup_xattr  736  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.io_serviced'
cgroup_xattr  737  TPASS  :  Expect: values equal
cgroup_xattr  738  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.io_serviced'
cgroup_xattr  739  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.io_serviced'
cgroup_xattr  740  TPASS  :  Expect: can't read xattr security. of file 'memory.pressure_level'
cgroup_xattr  741  TPASS  :  Expect: can read xattr trusted.test of file 'memory.pressure_level'
cgroup_xattr  742  TPASS  :  Expect: values equal
cgroup_xattr  743  TPASS  :  Expect: can't read xattr user. of file 'memory.pressure_level'
cgroup_xattr  744  TPASS  :  Expect: can't read xattr system. of file 'memory.pressure_level'
cgroup_xattr  745  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr  746  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_bytes_recursive'
cgroup_xattr  747  TPASS  :  Expect: values equal
cgroup_xattr  748  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr  749  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr  750  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  751  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  752  TPASS  :  Expect: values equal
cgroup_xattr  753  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  754  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  755  TPASS  :  Expect: can't read xattr security. of file 'memory.use_hierarchy'
cgroup_xattr  756  TPASS  :  Expect: can read xattr trusted.test of file 'memory.use_hierarchy'
cgroup_xattr  757  TPASS  :  Expect: values equal
cgroup_xattr  758  TPASS  :  Expect: can't read xattr user. of file 'memory.use_hierarchy'
cgroup_xattr  759  TPASS  :  Expect: can't read xattr system. of file 'memory.use_hierarchy'
cgroup_xattr  760  TPASS  :  Expect: can't read xattr security. of file 'memory.swappiness'
cgroup_xattr  761  TPASS  :  Expect: can read xattr trusted.test of file 'memory.swappiness'
cgroup_xattr  762  TPASS  :  Expect: values equal
cgroup_xattr  763  TPASS  :  Expect: can't read xattr user. of file 'memory.swappiness'
cgroup_xattr  764  TPASS  :  Expect: can't read xattr system. of file 'memory.swappiness'
cgroup_xattr  765  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_serviced_recursive'
cgroup_xattr  766  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_serviced_recursive'
cgroup_xattr  767  TPASS  :  Expect: values equal
cgroup_xattr  768  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_serviced_recursive'
cgroup_xattr  769  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_serviced_recursive'
cgroup_xattr  770  TPASS  :  Expect: can't read xattr security. of file 'blkio.time'
cgroup_xattr  771  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.time'
cgroup_xattr  772  TPASS  :  Expect: values equal
cgroup_xattr  773  TPASS  :  Expect: can't read xattr user. of file 'blkio.time'
cgroup_xattr  774  TPASS  :  Expect: can't read xattr system. of file 'blkio.time'
cgroup_xattr  775  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  776  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  777  TPASS  :  Expect: values equal
cgroup_xattr  778  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  779  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  780  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mem_hardwall'
cgroup_xattr  781  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mem_hardwall'
cgroup_xattr  782  TPASS  :  Expect: values equal
cgroup_xattr  783  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mem_hardwall'
cgroup_xattr  784  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mem_hardwall'
cgroup_xattr  785  TPASS  :  Expect: can't read xattr security. of file 'tasks'
cgroup_xattr  786  TPASS  :  Expect: can read xattr trusted.test of file 'tasks'
cgroup_xattr  787  TPASS  :  Expect: values equal
cgroup_xattr  788  TPASS  :  Expect: can't read xattr user. of file 'tasks'
cgroup_xattr  789  TPASS  :  Expect: can't read xattr system. of file 'tasks'
cgroup_xattr  790  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_serviced'
cgroup_xattr  791  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_serviced'
cgroup_xattr  792  TPASS  :  Expect: values equal
cgroup_xattr  793  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_serviced'
cgroup_xattr  794  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_serviced'
cgroup_xattr  795  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr  796  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu_sys'
cgroup_xattr  797  TPASS  :  Expect: values equal
cgroup_xattr  798  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr  799  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr  800  TPASS  :  Expect: can't read xattr security. of file 'blkio.reset_stats'
cgroup_xattr  801  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.reset_stats'
cgroup_xattr  802  TPASS  :  Expect: values equal
cgroup_xattr  803  TPASS  :  Expect: can't read xattr user. of file 'blkio.reset_stats'
cgroup_xattr  804  TPASS  :  Expect: can't read xattr system. of file 'blkio.reset_stats'
cgroup_xattr  805  TPASS  :  Expect: can't read xattr security. of file 'memory.limit_in_bytes'
cgroup_xattr  806  TPASS  :  Expect: can read xattr trusted.test of file 'memory.limit_in_bytes'
cgroup_xattr  807  TPASS  :  Expect: values equal
cgroup_xattr  808  TPASS  :  Expect: can't read xattr user. of file 'memory.limit_in_bytes'
cgroup_xattr  809  TPASS  :  Expect: can't read xattr system. of file 'memory.limit_in_bytes'
cgroup_xattr  810  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_wait_time'
cgroup_xattr  811  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_wait_time'
cgroup_xattr  812  TPASS  :  Expect: values equal
cgroup_xattr  813  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_wait_time'
cgroup_xattr  814  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_wait_time'
cgroup_xattr  815  TPASS  :  Expect: can't read xattr security. of file 'blkio.weight'
cgroup_xattr  816  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.weight'
cgroup_xattr  817  TPASS  :  Expect: values equal
cgroup_xattr  818  TPASS  :  Expect: can't read xattr user. of file 'blkio.weight'
cgroup_xattr  819  TPASS  :  Expect: can't read xattr system. of file 'blkio.weight'
cgroup_xattr  820  TPASS  :  Expect: can't read xattr security. of file 'cgroup.procs'
cgroup_xattr  821  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.procs'
cgroup_xattr  822  TPASS  :  Expect: values equal
cgroup_xattr  823  TPASS  :  Expect: can't read xattr user. of file 'cgroup.procs'
cgroup_xattr  824  TPASS  :  Expect: can't read xattr system. of file 'cgroup.procs'
cgroup_xattr  825  TPASS  :  Expect: can't read xattr security. of file 'blkio.leaf_weight_device'
cgroup_xattr  826  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.leaf_weight_device'
cgroup_xattr  827  TPASS  :  Expect: values equal
cgroup_xattr  828  TPASS  :  Expect: can't read xattr user. of file 'blkio.leaf_weight_device'
cgroup_xattr  829  TPASS  :  Expect: can't read xattr system. of file 'blkio.leaf_weight_device'
cgroup_xattr  830  TPASS  :  Expect: can't read xattr security. of file 'devices.allow'
cgroup_xattr  831  TPASS  :  Expect: can read xattr trusted.test of file 'devices.allow'
cgroup_xattr  832  TPASS  :  Expect: values equal
cgroup_xattr  833  TPASS  :  Expect: can't read xattr user. of file 'devices.allow'
cgroup_xattr  834  TPASS  :  Expect: can't read xattr system. of file 'devices.allow'
cgroup_xattr  835  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.read_iops_device'
cgroup_xattr  836  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.read_iops_device'
cgroup_xattr  837  TPASS  :  Expect: values equal
cgroup_xattr  838  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.read_iops_device'
cgroup_xattr  839  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.read_iops_device'
cgroup_xattr  840  TPASS  :  Expect: can't read xattr security. of file 'cpu.rt_runtime_us'
cgroup_xattr  841  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.rt_runtime_us'
cgroup_xattr  842  TPASS  :  Expect: values equal
cgroup_xattr  843  TPASS  :  Expect: can't read xattr user. of file 'cpu.rt_runtime_us'
cgroup_xattr  844  TPASS  :  Expect: can't read xattr system. of file 'cpu.rt_runtime_us'
cgroup_xattr  845  TPASS  :  Expect: can't read xattr security. of file 'cpu.shares'
cgroup_xattr  846  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.shares'
cgroup_xattr  847  TPASS  :  Expect: values equal
cgroup_xattr  848  TPASS  :  Expect: can't read xattr user. of file 'cpu.shares'
cgroup_xattr  849  TPASS  :  Expect: can't read xattr system. of file 'cpu.shares'
cgroup_xattr  850  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_merged_recursive'
cgroup_xattr  851  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_merged_recursive'
cgroup_xattr  852  TPASS  :  Expect: values equal
cgroup_xattr  853  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_merged_recursive'
cgroup_xattr  854  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_merged_recursive'
cgroup_xattr  855  TPASS  :  Expect: can't read xattr security. of file 'freezer.state'
cgroup_xattr  856  TPASS  :  Expect: can read xattr trusted.test of file 'freezer.state'
cgroup_xattr  857  TPASS  :  Expect: values equal
cgroup_xattr  858  TPASS  :  Expect: can't read xattr user. of file 'freezer.state'
cgroup_xattr  859  TPASS  :  Expect: can't read xattr system. of file 'freezer.state'
cgroup_xattr  860  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.write_bps_device'
cgroup_xattr  861  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.write_bps_device'
cgroup_xattr  862  TPASS  :  Expect: values equal
cgroup_xattr  863  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.write_bps_device'
cgroup_xattr  864  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.write_bps_device'
cgroup_xattr  865  TPASS  :  Expect: can't read xattr security. of file 'memory.usage_in_bytes'
cgroup_xattr  866  TPASS  :  Expect: can read xattr trusted.test of file 'memory.usage_in_bytes'
cgroup_xattr  867  TPASS  :  Expect: values equal
cgroup_xattr  868  TPASS  :  Expect: can't read xattr user. of file 'memory.usage_in_bytes'
cgroup_xattr  869  TPASS  :  Expect: can't read xattr system. of file 'memory.usage_in_bytes'
cgroup_xattr  870  TPASS  :  Expect: can't read xattr security. of file 'blkio.leaf_weight'
cgroup_xattr  871  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.leaf_weight'
cgroup_xattr  872  TPASS  :  Expect: values equal
cgroup_xattr  873  TPASS  :  Expect: can't read xattr user. of file 'blkio.leaf_weight'
cgroup_xattr  874  TPASS  :  Expect: can't read xattr system. of file 'blkio.leaf_weight'
cgroup_xattr  875  TPASS  :  Expect: can't read xattr security. of file 'blkio.sectors_recursive'
cgroup_xattr  876  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.sectors_recursive'
cgroup_xattr  877  TPASS  :  Expect: values equal
cgroup_xattr  878  TPASS  :  Expect: can't read xattr user. of file 'blkio.sectors_recursive'
cgroup_xattr  879  TPASS  :  Expect: can't read xattr system. of file 'blkio.sectors_recursive'
cgroup_xattr  880  TPASS  :  Expect: can't read xattr security. of file 'cpuset.cpus'
cgroup_xattr  881  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.cpus'
cgroup_xattr  882  TPASS  :  Expect: values equal
cgroup_xattr  883  TPASS  :  Expect: can't read xattr user. of file 'cpuset.cpus'
cgroup_xattr  884  TPASS  :  Expect: can't read xattr system. of file 'cpuset.cpus'
cgroup_xattr  885  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mems'
cgroup_xattr  886  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mems'
cgroup_xattr  887  TPASS  :  Expect: values equal
cgroup_xattr  888  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mems'
cgroup_xattr  889  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mems'
cgroup_xattr  890  TPASS  :  Expect: can't read xattr security. of file 'blkio.weight_device'
cgroup_xattr  891  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.weight_device'
cgroup_xattr  892  TPASS  :  Expect: values equal
cgroup_xattr  893  TPASS  :  Expect: can't read xattr user. of file 'blkio.weight_device'
cgroup_xattr  894  TPASS  :  Expect: can't read xattr system. of file 'blkio.weight_device'
cgroup_xattr  895  TPASS  :  Expect: can't read xattr security. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr  896  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.sched_relax_domain_level'
cgroup_xattr  897  TPASS  :  Expect: values equal
cgroup_xattr  898  TPASS  :  Expect: can't read xattr user. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr  899  TPASS  :  Expect: can't read xattr system. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr  900  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_pressure'
cgroup_xattr  901  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_pressure'
cgroup_xattr  902  TPASS  :  Expect: values equal
cgroup_xattr  903  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_pressure'
cgroup_xattr  904  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_pressure'
cgroup_xattr  905  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_sys'
cgroup_xattr  906  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_sys'
cgroup_xattr  907  TPASS  :  Expect: values equal
cgroup_xattr  908  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_sys'
cgroup_xattr  909  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_sys'
cgroup_xattr  910  TPASS  :  Expect: can't read xattr security. of file 'cpu.cfs_quota_us'
cgroup_xattr  911  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.cfs_quota_us'
cgroup_xattr  912  TPASS  :  Expect: values equal
cgroup_xattr  913  TPASS  :  Expect: can't read xattr user. of file 'cpu.cfs_quota_us'
cgroup_xattr  914  TPASS  :  Expect: can't read xattr system. of file 'cpu.cfs_quota_us'
cgroup_xattr  915  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_user'
cgroup_xattr  916  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_user'
cgroup_xattr  917  TPASS  :  Expect: values equal
cgroup_xattr  918  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_user'
cgroup_xattr  919  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_user'
cgroup_xattr  920  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_spread_page'
cgroup_xattr  921  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_spread_page'
cgroup_xattr  922  TPASS  :  Expect: values equal
cgroup_xattr  923  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_spread_page'
cgroup_xattr  924  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_spread_page'
cgroup_xattr  925  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_spread_slab'
cgroup_xattr  926  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_spread_slab'
cgroup_xattr  927  TPASS  :  Expect: values equal
cgroup_xattr  928  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_spread_slab'
cgroup_xattr  929  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_spread_slab'
cgroup_xattr  930  TPASS  :  Expect: can't read xattr security. of file 'memory.failcnt'
cgroup_xattr  931  TPASS  :  Expect: can read xattr trusted.test of file 'memory.failcnt'
cgroup_xattr  932  TPASS  :  Expect: values equal
cgroup_xattr  933  TPASS  :  Expect: can't read xattr user. of file 'memory.failcnt'
cgroup_xattr  934  TPASS  :  Expect: can't read xattr system. of file 'memory.failcnt'
cgroup_xattr  935  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_time_recursive'
cgroup_xattr  936  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_time_recursive'
cgroup_xattr  937  TPASS  :  Expect: values equal
cgroup_xattr  938  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_time_recursive'
cgroup_xattr  939  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_time_recursive'
cgroup_xattr  940  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.write_iops_device'
cgroup_xattr  941  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.write_iops_device'
cgroup_xattr  942  TPASS  :  Expect: values equal
cgroup_xattr  943  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.write_iops_device'
cgroup_xattr  944  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.write_iops_device'
cgroup_xattr  945  TPASS  :  Expect: can't read xattr security. of file 'cpuset.cpu_exclusive'
cgroup_xattr  946  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.cpu_exclusive'
cgroup_xattr  947  TPASS  :  Expect: values equal
cgroup_xattr  948  TPASS  :  Expect: can't read xattr user. of file 'cpuset.cpu_exclusive'
cgroup_xattr  949  TPASS  :  Expect: can't read xattr system. of file 'cpuset.cpu_exclusive'
cgroup_xattr  950  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr  951  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.limit_in_bytes'
cgroup_xattr  952  TPASS  :  Expect: values equal
cgroup_xattr  953  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr  954  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr  955  TPASS  :  Expect: can't read xattr security. of file 'memory.force_empty'
cgroup_xattr  956  TPASS  :  Expect: can read xattr trusted.test of file 'memory.force_empty'
cgroup_xattr  957  TPASS  :  Expect: values equal
cgroup_xattr  958  TPASS  :  Expect: can't read xattr user. of file 'memory.force_empty'
cgroup_xattr  959  TPASS  :  Expect: can't read xattr system. of file 'memory.force_empty'
cgroup_xattr  960  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr  961  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.io_service_bytes'
cgroup_xattr  962  TPASS  :  Expect: values equal
cgroup_xattr  963  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr  964  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr  965  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_bytes'
cgroup_xattr  966  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_bytes'
cgroup_xattr  967  TPASS  :  Expect: values equal
cgroup_xattr  968  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_bytes'
cgroup_xattr  969  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_bytes'
cgroup_xattr  970  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mem_exclusive'
cgroup_xattr  971  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mem_exclusive'
cgroup_xattr  972  TPASS  :  Expect: values equal
cgroup_xattr  973  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mem_exclusive'
cgroup_xattr  974  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mem_exclusive'
cgroup_xattr  975  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.stat'
cgroup_xattr  976  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.stat'
cgroup_xattr  977  TPASS  :  Expect: values equal
cgroup_xattr  978  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.stat'
cgroup_xattr  979  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.stat'
cgroup_xattr  980  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.slabinfo'
cgroup_xattr  981  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.slabinfo'
cgroup_xattr  982  TPASS  :  Expect: values equal
cgroup_xattr  983  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.slabinfo'
cgroup_xattr  984  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.slabinfo'
cgroup_xattr  985  TPASS  :  Expect: can't read xattr security. of file 'cpu.stat'
cgroup_xattr  986  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.stat'
cgroup_xattr  987  TPASS  :  Expect: values equal
cgroup_xattr  988  TPASS  :  Expect: can't read xattr user. of file 'cpu.stat'
cgroup_xattr  989  TPASS  :  Expect: can't read xattr system. of file 'cpu.stat'
cgroup_xattr  990  TPASS  :  Expect: can't read xattr security. of file 'cpuset.effective_cpus'
cgroup_xattr  991  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.effective_cpus'
cgroup_xattr  992  TPASS  :  Expect: values equal
cgroup_xattr  993  TPASS  :  Expect: can't read xattr user. of file 'cpuset.effective_cpus'
cgroup_xattr  994  TPASS  :  Expect: can't read xattr system. of file 'cpuset.effective_cpus'
cgroup_xattr  995  TPASS  :  Expect: can't read xattr security. of file 'cpuset.effective_mems'
cgroup_xattr  996  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.effective_mems'
cgroup_xattr  997  TPASS  :  Expect: values equal
cgroup_xattr  998  TPASS  :  Expect: can't read xattr user. of file 'cpuset.effective_mems'
cgroup_xattr  999  TPASS  :  Expect: can't read xattr system. of file 'cpuset.effective_mems'
cgroup_xattr 1000  TPASS  :  Expect: can't read xattr security. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1001  TPASS  :  Expect: can read xattr trusted.test of file 'memory.max_usage_in_bytes'
cgroup_xattr 1002  TPASS  :  Expect: values equal
cgroup_xattr 1003  TPASS  :  Expect: can't read xattr user. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1004  TPASS  :  Expect: can't read xattr system. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1005  TPASS  :  Expect: can't read xattr security. of file 'memory.numa_stat'
cgroup_xattr 1006  TPASS  :  Expect: can read xattr trusted.test of file 'memory.numa_stat'
cgroup_xattr 1007  TPASS  :  Expect: values equal
cgroup_xattr 1008  TPASS  :  Expect: can't read xattr user. of file 'memory.numa_stat'
cgroup_xattr 1009  TPASS  :  Expect: can't read xattr system. of file 'memory.numa_stat'
cgroup_xattr 1010  TPASS  :  Expect: can't read xattr security. of file 'cgroup.clone_children'
cgroup_xattr 1011  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.clone_children'
cgroup_xattr 1012  TPASS  :  Expect: values equal
cgroup_xattr 1013  TPASS  :  Expect: can't read xattr user. of file 'cgroup.clone_children'
cgroup_xattr 1014  TPASS  :  Expect: can't read xattr system. of file 'cgroup.clone_children'
cgroup_xattr 1015  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1016  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1017  TPASS  :  Expect: values equal
cgroup_xattr 1018  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1019  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1020  TPASS  :  Expect: can't read xattr security. of file 'freezer.parent_freezing'
cgroup_xattr 1021  TPASS  :  Expect: can read xattr trusted.test of file 'freezer.parent_freezing'
cgroup_xattr 1022  TPASS  :  Expect: values equal
cgroup_xattr 1023  TPASS  :  Expect: can't read xattr user. of file 'freezer.parent_freezing'
cgroup_xattr 1024  TPASS  :  Expect: can't read xattr system. of file 'freezer.parent_freezing'
cgroup_xattr 1025  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1026  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1027  TPASS  :  Expect: values equal
cgroup_xattr 1028  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1029  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1030  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1031  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1032  TPASS  :  Expect: values equal
cgroup_xattr 1033  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1034  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1035  TPASS  :  Expect: can't read xattr security. of file 'cpuset.sched_load_balance'
cgroup_xattr 1036  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.sched_load_balance'
cgroup_xattr 1037  TPASS  :  Expect: values equal
cgroup_xattr 1038  TPASS  :  Expect: can't read xattr user. of file 'cpuset.sched_load_balance'
cgroup_xattr 1039  TPASS  :  Expect: can't read xattr system. of file 'cpuset.sched_load_balance'
cgroup_xattr 1040  TPASS  :  Expect: can't read xattr security. of file 'cpu.cfs_period_us'
cgroup_xattr 1041  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.cfs_period_us'
cgroup_xattr 1042  TPASS  :  Expect: values equal
cgroup_xattr 1043  TPASS  :  Expect: can't read xattr user. of file 'cpu.cfs_period_us'
cgroup_xattr 1044  TPASS  :  Expect: can't read xattr system. of file 'cpu.cfs_period_us'
cgroup_xattr 1045  TPASS  :  Expect: can't read xattr security. of file 'memory.oom_control'
cgroup_xattr 1046  TPASS  :  Expect: can read xattr trusted.test of file 'memory.oom_control'
cgroup_xattr 1047  TPASS  :  Expect: values equal
cgroup_xattr 1048  TPASS  :  Expect: can't read xattr user. of file 'memory.oom_control'
cgroup_xattr 1049  TPASS  :  Expect: can't read xattr system. of file 'memory.oom_control'
cgroup_xattr 1050  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1051  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1052  TPASS  :  Expect: values equal
cgroup_xattr 1053  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1054  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1055  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.failcnt'
cgroup_xattr 1056  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.failcnt'
cgroup_xattr 1057  TPASS  :  Expect: values equal
cgroup_xattr 1058  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.failcnt'
cgroup_xattr 1059  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.failcnt'
cgroup_xattr 1060  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1061  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1062  TPASS  :  Expect: values equal
cgroup_xattr 1063  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1064  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1065  TPASS  :  Expect: can't read xattr security. of file 'cpu.rt_period_us'
cgroup_xattr 1066  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.rt_period_us'
cgroup_xattr 1067  TPASS  :  Expect: values equal
cgroup_xattr 1068  TPASS  :  Expect: can't read xattr user. of file 'cpu.rt_period_us'
cgroup_xattr 1069  TPASS  :  Expect: can't read xattr system. of file 'cpu.rt_period_us'
cgroup_xattr 1070  TPASS  :  Expect: can't read xattr security. of file 'notify_on_release'
cgroup_xattr 1071  TPASS  :  Expect: can read xattr trusted.test of file 'notify_on_release'
cgroup_xattr 1072  TPASS  :  Expect: values equal
cgroup_xattr 1073  TPASS  :  Expect: can't read xattr user. of file 'notify_on_release'
cgroup_xattr 1074  TPASS  :  Expect: can't read xattr system. of file 'notify_on_release'
cgroup_xattr 1075  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_time'
cgroup_xattr 1076  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_time'
cgroup_xattr 1077  TPASS  :  Expect: values equal
cgroup_xattr 1078  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_time'
cgroup_xattr 1079  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_time'
cgroup_xattr 1080  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1081  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1082  TPASS  :  Expect: values equal
cgroup_xattr 1083  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1084  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1085  TPASS  :  Expect: can't read xattr security. of file 'freezer.self_freezing'
cgroup_xattr 1086  TPASS  :  Expect: can read xattr trusted.test of file 'freezer.self_freezing'
cgroup_xattr 1087  TPASS  :  Expect: values equal
cgroup_xattr 1088  TPASS  :  Expect: can't read xattr user. of file 'freezer.self_freezing'
cgroup_xattr 1089  TPASS  :  Expect: can't read xattr system. of file 'freezer.self_freezing'
cgroup_xattr 1090  TPASS  :  Expect: can't read xattr security. of file 'memory.stat'
cgroup_xattr 1091  TPASS  :  Expect: can read xattr trusted.test of file 'memory.stat'
cgroup_xattr 1092  TPASS  :  Expect: values equal
cgroup_xattr 1093  TPASS  :  Expect: can't read xattr user. of file 'memory.stat'
cgroup_xattr 1094  TPASS  :  Expect: can't read xattr system. of file 'memory.stat'
cgroup_xattr 1095  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_migrate'
cgroup_xattr 1096  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_migrate'
cgroup_xattr 1097  TPASS  :  Expect: values equal
cgroup_xattr 1098  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_migrate'
cgroup_xattr 1099  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_migrate'
cgroup_xattr 1100  TPASS  :  Expect: can't read xattr security. of file 'devices.deny'
cgroup_xattr 1101  TPASS  :  Expect: can read xattr trusted.test of file 'devices.deny'
cgroup_xattr 1102  TPASS  :  Expect: values equal
cgroup_xattr 1103  TPASS  :  Expect: can't read xattr user. of file 'devices.deny'
cgroup_xattr 1104  TPASS  :  Expect: can't read xattr system. of file 'devices.deny'
cgroup_xattr 1105  TPASS  :  Expect: can't read xattr security. of file 'devices.list'
cgroup_xattr 1106  TPASS  :  Expect: can read xattr trusted.test of file 'devices.list'
cgroup_xattr 1107  TPASS  :  Expect: values equal
cgroup_xattr 1108  TPASS  :  Expect: can't read xattr user. of file 'devices.list'
cgroup_xattr 1109  TPASS  :  Expect: can't read xattr system. of file 'devices.list'
cgroup_xattr 1110  TPASS  :  Expect: can't read xattr security. of file 'cgroup.event_control'
cgroup_xattr 1111  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.event_control'
cgroup_xattr 1112  TPASS  :  Expect: values equal
cgroup_xattr 1113  TPASS  :  Expect: can't read xattr user. of file 'cgroup.event_control'
cgroup_xattr 1114  TPASS  :  Expect: can't read xattr system. of file 'cgroup.event_control'
cgroup_xattr 1115  TPASS  :  Expect: can't read xattr security. of file 'blkio.time_recursive'
cgroup_xattr 1116  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.time_recursive'
cgroup_xattr 1117  TPASS  :  Expect: values equal
cgroup_xattr 1118  TPASS  :  Expect: can't read xattr user. of file 'blkio.time_recursive'
cgroup_xattr 1119  TPASS  :  Expect: can't read xattr system. of file 'blkio.time_recursive'
cgroup_xattr 1120  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_merged'
cgroup_xattr 1121  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_merged'
cgroup_xattr 1122  TPASS  :  Expect: values equal
cgroup_xattr 1123  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_merged'
cgroup_xattr 1124  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_merged'
cgroup_xattr 1125  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1126  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1127  TPASS  :  Expect: values equal
cgroup_xattr 1128  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1129  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1130  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1131  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1132  TPASS  :  Expect: values equal
cgroup_xattr 1133  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1134  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1135  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1136  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1137  TPASS  :  Expect: values equal
cgroup_xattr 1138  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1139  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1140  TPASS  :  Expect: can't read xattr security. of file 'blkio.sectors'
cgroup_xattr 1141  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.sectors'
cgroup_xattr 1142  TPASS  :  Expect: values equal
cgroup_xattr 1143  TPASS  :  Expect: can't read xattr user. of file 'blkio.sectors'
cgroup_xattr 1144  TPASS  :  Expect: can't read xattr system. of file 'blkio.sectors'
cgroup_xattr 1145  TPASS  :  Expect: can't read xattr security. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1146  TPASS  :  Expect: can read xattr trusted.test of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1147  TPASS  :  Expect: values equal
cgroup_xattr 1148  TPASS  :  Expect: can't read xattr user. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1149  TPASS  :  Expect: can't read xattr system. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1150  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_queued'
cgroup_xattr 1151  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_queued'
cgroup_xattr 1152  TPASS  :  Expect: values equal
cgroup_xattr 1153  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_queued'
cgroup_xattr 1154  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_queued'
cgroup_xattr 1155  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1156  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1157  TPASS  :  Expect: values equal
cgroup_xattr 1158  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1159  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1160  TPASS  :  Expect: can't read xattr security. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1161  TPASS  :  Expect: can read xattr trusted.test of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1162  TPASS  :  Expect: values equal
cgroup_xattr 1163  TPASS  :  Expect: can't read xattr user. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1164  TPASS  :  Expect: can't read xattr system. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1165  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage'
cgroup_xattr 1166  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage'
cgroup_xattr 1167  TPASS  :  Expect: values equal
cgroup_xattr 1168  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage'
cgroup_xattr 1169  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage'
cgroup_xattr 1170  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_queued_recursive'
cgroup_xattr 1171  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_queued_recursive'
cgroup_xattr 1172  TPASS  :  Expect: values equal
cgroup_xattr 1173  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_queued_recursive'
cgroup_xattr 1174  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_queued_recursive'
cgroup_xattr 1175  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1176  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1177  TPASS  :  Expect: values equal
cgroup_xattr 1178  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1179  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr    0  TINFO  :  In dir .
cgroup_xattr 1180  TPASS  :  Expect: can't read xattr security. of file 'test'
cgroup_xattr 1181  TPASS  :  Expect: can read xattr trusted.test of file 'test'
cgroup_xattr 1182  TPASS  :  Expect: values equal
cgroup_xattr 1183  TPASS  :  Expect: can't read xattr user. of file 'test'
cgroup_xattr 1184  TPASS  :  Expect: can't read xattr system. of file 'test'
cgroup_xattr 1185  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.io_serviced'
cgroup_xattr 1186  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.io_serviced'
cgroup_xattr 1187  TPASS  :  Expect: values equal
cgroup_xattr 1188  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.io_serviced'
cgroup_xattr 1189  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.io_serviced'
cgroup_xattr 1190  TPASS  :  Expect: can't read xattr security. of file 'memory.pressure_level'
cgroup_xattr 1191  TPASS  :  Expect: can read xattr trusted.test of file 'memory.pressure_level'
cgroup_xattr 1192  TPASS  :  Expect: values equal
cgroup_xattr 1193  TPASS  :  Expect: can't read xattr user. of file 'memory.pressure_level'
cgroup_xattr 1194  TPASS  :  Expect: can't read xattr system. of file 'memory.pressure_level'
cgroup_xattr 1195  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr 1196  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_bytes_recursive'
cgroup_xattr 1197  TPASS  :  Expect: values equal
cgroup_xattr 1198  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr 1199  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr 1200  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr 1201  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr 1202  TPASS  :  Expect: values equal
cgroup_xattr 1203  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr 1204  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr 1205  TPASS  :  Expect: can't read xattr security. of file 'memory.use_hierarchy'
cgroup_xattr 1206  TPASS  :  Expect: can read xattr trusted.test of file 'memory.use_hierarchy'
cgroup_xattr 1207  TPASS  :  Expect: values equal
cgroup_xattr 1208  TPASS  :  Expect: can't read xattr user. of file 'memory.use_hierarchy'
cgroup_xattr 1209  TPASS  :  Expect: can't read xattr system. of file 'memory.use_hierarchy'
cgroup_xattr 1210  TPASS  :  Expect: can't read xattr security. of file 'memory.swappiness'
cgroup_xattr 1211  TPASS  :  Expect: can read xattr trusted.test of file 'memory.swappiness'
cgroup_xattr 1212  TPASS  :  Expect: values equal
cgroup_xattr 1213  TPASS  :  Expect: can't read xattr user. of file 'memory.swappiness'
cgroup_xattr 1214  TPASS  :  Expect: can't read xattr system. of file 'memory.swappiness'
cgroup_xattr 1215  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_serviced_recursive'
cgroup_xattr 1216  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_serviced_recursive'
cgroup_xattr 1217  TPASS  :  Expect: values equal
cgroup_xattr 1218  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_serviced_recursive'
cgroup_xattr 1219  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_serviced_recursive'
cgroup_xattr 1220  TPASS  :  Expect: can't read xattr security. of file 'blkio.time'
cgroup_xattr 1221  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.time'
cgroup_xattr 1222  TPASS  :  Expect: values equal
cgroup_xattr 1223  TPASS  :  Expect: can't read xattr user. of file 'blkio.time'
cgroup_xattr 1224  TPASS  :  Expect: can't read xattr system. of file 'blkio.time'
cgroup_xattr 1225  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr 1226  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr 1227  TPASS  :  Expect: values equal
cgroup_xattr 1228  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr 1229  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr 1230  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mem_hardwall'
cgroup_xattr 1231  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mem_hardwall'
cgroup_xattr 1232  TPASS  :  Expect: values equal
cgroup_xattr 1233  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mem_hardwall'
cgroup_xattr 1234  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mem_hardwall'
cgroup_xattr 1235  TPASS  :  Expect: can't read xattr security. of file 'tasks'
cgroup_xattr 1236  TPASS  :  Expect: can read xattr trusted.test of file 'tasks'
cgroup_xattr 1237  TPASS  :  Expect: values equal
cgroup_xattr 1238  TPASS  :  Expect: can't read xattr user. of file 'tasks'
cgroup_xattr 1239  TPASS  :  Expect: can't read xattr system. of file 'tasks'
cgroup_xattr 1240  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_serviced'
cgroup_xattr 1241  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_serviced'
cgroup_xattr 1242  TPASS  :  Expect: values equal
cgroup_xattr 1243  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_serviced'
cgroup_xattr 1244  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_serviced'
cgroup_xattr 1245  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr 1246  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu_sys'
cgroup_xattr 1247  TPASS  :  Expect: values equal
cgroup_xattr 1248  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr 1249  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr 1250  TPASS  :  Expect: can't read xattr security. of file 'blkio.reset_stats'
cgroup_xattr 1251  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.reset_stats'
cgroup_xattr 1252  TPASS  :  Expect: values equal
cgroup_xattr 1253  TPASS  :  Expect: can't read xattr user. of file 'blkio.reset_stats'
cgroup_xattr 1254  TPASS  :  Expect: can't read xattr system. of file 'blkio.reset_stats'
cgroup_xattr 1255  TPASS  :  Expect: can't read xattr security. of file 'memory.limit_in_bytes'
cgroup_xattr 1256  TPASS  :  Expect: can read xattr trusted.test of file 'memory.limit_in_bytes'
cgroup_xattr 1257  TPASS  :  Expect: values equal
cgroup_xattr 1258  TPASS  :  Expect: can't read xattr user. of file 'memory.limit_in_bytes'
cgroup_xattr 1259  TPASS  :  Expect: can't read xattr system. of file 'memory.limit_in_bytes'
cgroup_xattr 1260  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_wait_time'
cgroup_xattr 1261  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_wait_time'
cgroup_xattr 1262  TPASS  :  Expect: values equal
cgroup_xattr 1263  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_wait_time'
cgroup_xattr 1264  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_wait_time'
cgroup_xattr 1265  TPASS  :  Expect: can't read xattr security. of file 'blkio.weight'
cgroup_xattr 1266  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.weight'
cgroup_xattr 1267  TPASS  :  Expect: values equal
cgroup_xattr 1268  TPASS  :  Expect: can't read xattr user. of file 'blkio.weight'
cgroup_xattr 1269  TPASS  :  Expect: can't read xattr system. of file 'blkio.weight'
cgroup_xattr 1270  TPASS  :  Expect: can't read xattr security. of file 'cgroup.procs'
cgroup_xattr 1271  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.procs'
cgroup_xattr 1272  TPASS  :  Expect: values equal
cgroup_xattr 1273  TPASS  :  Expect: can't read xattr user. of file 'cgroup.procs'
cgroup_xattr 1274  TPASS  :  Expect: can't read xattr system. of file 'cgroup.procs'
cgroup_xattr 1275  TPASS  :  Expect: can't read xattr security. of file 'blkio.leaf_weight_device'
cgroup_xattr 1276  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.leaf_weight_device'
cgroup_xattr 1277  TPASS  :  Expect: values equal
cgroup_xattr 1278  TPASS  :  Expect: can't read xattr user. of file 'blkio.leaf_weight_device'
cgroup_xattr 1279  TPASS  :  Expect: can't read xattr system. of file 'blkio.leaf_weight_device'
cgroup_xattr 1280  TPASS  :  Expect: can't read xattr security. of file 'devices.allow'
cgroup_xattr 1281  TPASS  :  Expect: can read xattr trusted.test of file 'devices.allow'
cgroup_xattr 1282  TPASS  :  Expect: values equal
cgroup_xattr 1283  TPASS  :  Expect: can't read xattr user. of file 'devices.allow'
cgroup_xattr 1284  TPASS  :  Expect: can't read xattr system. of file 'devices.allow'
cgroup_xattr 1285  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1286  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1287  TPASS  :  Expect: values equal
cgroup_xattr 1288  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1289  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1290  TPASS  :  Expect: can't read xattr security. of file 'cpu.rt_runtime_us'
cgroup_xattr 1291  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.rt_runtime_us'
cgroup_xattr 1292  TPASS  :  Expect: values equal
cgroup_xattr 1293  TPASS  :  Expect: can't read xattr user. of file 'cpu.rt_runtime_us'
cgroup_xattr 1294  TPASS  :  Expect: can't read xattr system. of file 'cpu.rt_runtime_us'
cgroup_xattr 1295  TPASS  :  Expect: can't read xattr security. of file 'cpu.shares'
cgroup_xattr 1296  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.shares'
cgroup_xattr 1297  TPASS  :  Expect: values equal
cgroup_xattr 1298  TPASS  :  Expect: can't read xattr user. of file 'cpu.shares'
cgroup_xattr 1299  TPASS  :  Expect: can't read xattr system. of file 'cpu.shares'
cgroup_xattr 1300  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_merged_recursive'
cgroup_xattr 1301  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_merged_recursive'
cgroup_xattr 1302  TPASS  :  Expect: values equal
cgroup_xattr 1303  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_merged_recursive'
cgroup_xattr 1304  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_merged_recursive'
cgroup_xattr 1305  TPASS  :  Expect: can't read xattr security. of file 'release_agent'
cgroup_xattr 1306  TPASS  :  Expect: can read xattr trusted.test of file 'release_agent'
cgroup_xattr 1307  TPASS  :  Expect: values equal
cgroup_xattr 1308  TPASS  :  Expect: can't read xattr user. of file 'release_agent'
cgroup_xattr 1309  TPASS  :  Expect: can't read xattr system. of file 'release_agent'
cgroup_xattr 1310  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1311  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1312  TPASS  :  Expect: values equal
cgroup_xattr 1313  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1314  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1315  TPASS  :  Expect: can't read xattr security. of file 'memory.usage_in_bytes'
cgroup_xattr 1316  TPASS  :  Expect: can read xattr trusted.test of file 'memory.usage_in_bytes'
cgroup_xattr 1317  TPASS  :  Expect: values equal
cgroup_xattr 1318  TPASS  :  Expect: can't read xattr user. of file 'memory.usage_in_bytes'
cgroup_xattr 1319  TPASS  :  Expect: can't read xattr system. of file 'memory.usage_in_bytes'
cgroup_xattr 1320  TPASS  :  Expect: can't read xattr security. of file 'blkio.leaf_weight'
cgroup_xattr 1321  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.leaf_weight'
cgroup_xattr 1322  TPASS  :  Expect: values equal
cgroup_xattr 1323  TPASS  :  Expect: can't read xattr user. of file 'blkio.leaf_weight'
cgroup_xattr 1324  TPASS  :  Expect: can't read xattr system. of file 'blkio.leaf_weight'
cgroup_xattr 1325  TPASS  :  Expect: can't read xattr security. of file 'blkio.sectors_recursive'
cgroup_xattr 1326  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.sectors_recursive'
cgroup_xattr 1327  TPASS  :  Expect: values equal
cgroup_xattr 1328  TPASS  :  Expect: can't read xattr user. of file 'blkio.sectors_recursive'
cgroup_xattr 1329  TPASS  :  Expect: can't read xattr system. of file 'blkio.sectors_recursive'
cgroup_xattr 1330  TPASS  :  Expect: can't read xattr security. of file 'cpuset.cpus'
cgroup_xattr 1331  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.cpus'
cgroup_xattr 1332  TPASS  :  Expect: values equal
cgroup_xattr 1333  TPASS  :  Expect: can't read xattr user. of file 'cpuset.cpus'
cgroup_xattr 1334  TPASS  :  Expect: can't read xattr system. of file 'cpuset.cpus'
cgroup_xattr 1335  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mems'
cgroup_xattr 1336  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mems'
cgroup_xattr 1337  TPASS  :  Expect: values equal
cgroup_xattr 1338  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mems'
cgroup_xattr 1339  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mems'
cgroup_xattr 1340  TPASS  :  Expect: can't read xattr security. of file 'blkio.weight_device'
cgroup_xattr 1341  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.weight_device'
cgroup_xattr 1342  TPASS  :  Expect: values equal
cgroup_xattr 1343  TPASS  :  Expect: can't read xattr user. of file 'blkio.weight_device'
cgroup_xattr 1344  TPASS  :  Expect: can't read xattr system. of file 'blkio.weight_device'
cgroup_xattr 1345  TPASS  :  Expect: can't read xattr security. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1346  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1347  TPASS  :  Expect: values equal
cgroup_xattr 1348  TPASS  :  Expect: can't read xattr user. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1349  TPASS  :  Expect: can't read xattr system. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1350  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_pressure'
cgroup_xattr 1351  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_pressure'
cgroup_xattr 1352  TPASS  :  Expect: values equal
cgroup_xattr 1353  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_pressure'
cgroup_xattr 1354  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_pressure'
cgroup_xattr 1355  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_sys'
cgroup_xattr 1356  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_sys'
cgroup_xattr 1357  TPASS  :  Expect: values equal
cgroup_xattr 1358  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_sys'
cgroup_xattr 1359  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_sys'
cgroup_xattr 1360  TPASS  :  Expect: can't read xattr security. of file 'cpu.cfs_quota_us'
cgroup_xattr 1361  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.cfs_quota_us'
cgroup_xattr 1362  TPASS  :  Expect: values equal
cgroup_xattr 1363  TPASS  :  Expect: can't read xattr user. of file 'cpu.cfs_quota_us'
cgroup_xattr 1364  TPASS  :  Expect: can't read xattr system. of file 'cpu.cfs_quota_us'
cgroup_xattr 1365  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_user'
cgroup_xattr 1366  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_user'
cgroup_xattr 1367  TPASS  :  Expect: values equal
cgroup_xattr 1368  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_user'
cgroup_xattr 1369  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_user'
cgroup_xattr 1370  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_spread_page'
cgroup_xattr 1371  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_spread_page'
cgroup_xattr 1372  TPASS  :  Expect: values equal
cgroup_xattr 1373  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_spread_page'
cgroup_xattr 1374  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_spread_page'
cgroup_xattr 1375  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1376  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_spread_slab'
cgroup_xattr 1377  TPASS  :  Expect: values equal
cgroup_xattr 1378  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1379  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1380  TPASS  :  Expect: can't read xattr security. of file 'memory.failcnt'
cgroup_xattr 1381  TPASS  :  Expect: can read xattr trusted.test of file 'memory.failcnt'
cgroup_xattr 1382  TPASS  :  Expect: values equal
cgroup_xattr 1383  TPASS  :  Expect: can't read xattr user. of file 'memory.failcnt'
cgroup_xattr 1384  TPASS  :  Expect: can't read xattr system. of file 'memory.failcnt'
cgroup_xattr 1385  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1386  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_time_recursive'
cgroup_xattr 1387  TPASS  :  Expect: values equal
cgroup_xattr 1388  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1389  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1390  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1391  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1392  TPASS  :  Expect: values equal
cgroup_xattr 1393  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1394  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1395  TPASS  :  Expect: can't read xattr security. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1396  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.cpu_exclusive'
cgroup_xattr 1397  TPASS  :  Expect: values equal
cgroup_xattr 1398  TPASS  :  Expect: can't read xattr user. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1399  TPASS  :  Expect: can't read xattr system. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1400  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1401  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1402  TPASS  :  Expect: values equal
cgroup_xattr 1403  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1404  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1405  TPASS  :  Expect: can't read xattr security. of file 'memory.force_empty'
cgroup_xattr 1406  TPASS  :  Expect: can read xattr trusted.test of file 'memory.force_empty'
cgroup_xattr 1407  TPASS  :  Expect: values equal
cgroup_xattr 1408  TPASS  :  Expect: can't read xattr user. of file 'memory.force_empty'
cgroup_xattr 1409  TPASS  :  Expect: can't read xattr system. of file 'memory.force_empty'
cgroup_xattr 1410  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1411  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1412  TPASS  :  Expect: values equal
cgroup_xattr 1413  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1414  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1415  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_bytes'
cgroup_xattr 1416  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_bytes'
cgroup_xattr 1417  TPASS  :  Expect: values equal
cgroup_xattr 1418  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_bytes'
cgroup_xattr 1419  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_bytes'
cgroup_xattr 1420  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mem_exclusive'
cgroup_xattr 1421  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mem_exclusive'
cgroup_xattr 1422  TPASS  :  Expect: values equal
cgroup_xattr 1423  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mem_exclusive'
cgroup_xattr 1424  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mem_exclusive'
cgroup_xattr 1425  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.stat'
cgroup_xattr 1426  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.stat'
cgroup_xattr 1427  TPASS  :  Expect: values equal
cgroup_xattr 1428  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.stat'
cgroup_xattr 1429  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.stat'
cgroup_xattr 1430  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.slabinfo'
cgroup_xattr 1431  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.slabinfo'
cgroup_xattr 1432  TPASS  :  Expect: values equal
cgroup_xattr 1433  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.slabinfo'
cgroup_xattr 1434  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.slabinfo'
cgroup_xattr 1435  TPASS  :  Expect: can't read xattr security. of file 'cpu.stat'
cgroup_xattr 1436  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.stat'
cgroup_xattr 1437  TPASS  :  Expect: values equal
cgroup_xattr 1438  TPASS  :  Expect: can't read xattr user. of file 'cpu.stat'
cgroup_xattr 1439  TPASS  :  Expect: can't read xattr system. of file 'cpu.stat'
cgroup_xattr 1440  TPASS  :  Expect: can't read xattr security. of file 'cpuset.effective_cpus'
cgroup_xattr 1441  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.effective_cpus'
cgroup_xattr 1442  TPASS  :  Expect: values equal
cgroup_xattr 1443  TPASS  :  Expect: can't read xattr user. of file 'cpuset.effective_cpus'
cgroup_xattr 1444  TPASS  :  Expect: can't read xattr system. of file 'cpuset.effective_cpus'
cgroup_xattr 1445  TPASS  :  Expect: can't read xattr security. of file 'cpuset.effective_mems'
cgroup_xattr 1446  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.effective_mems'
cgroup_xattr 1447  TPASS  :  Expect: values equal
cgroup_xattr 1448  TPASS  :  Expect: can't read xattr user. of file 'cpuset.effective_mems'
cgroup_xattr 1449  TPASS  :  Expect: can't read xattr system. of file 'cpuset.effective_mems'
cgroup_xattr 1450  TPASS  :  Expect: can't read xattr security. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1451  TPASS  :  Expect: can read xattr trusted.test of file 'memory.max_usage_in_bytes'
cgroup_xattr 1452  TPASS  :  Expect: values equal
cgroup_xattr 1453  TPASS  :  Expect: can't read xattr user. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1454  TPASS  :  Expect: can't read xattr system. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1455  TPASS  :  Expect: can't read xattr security. of file 'memory.numa_stat'
cgroup_xattr 1456  TPASS  :  Expect: can read xattr trusted.test of file 'memory.numa_stat'
cgroup_xattr 1457  TPASS  :  Expect: values equal
cgroup_xattr 1458  TPASS  :  Expect: can't read xattr user. of file 'memory.numa_stat'
cgroup_xattr 1459  TPASS  :  Expect: can't read xattr system. of file 'memory.numa_stat'
cgroup_xattr 1460  TPASS  :  Expect: can't read xattr security. of file 'cgroup.clone_children'
cgroup_xattr 1461  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.clone_children'
cgroup_xattr 1462  TPASS  :  Expect: values equal
cgroup_xattr 1463  TPASS  :  Expect: can't read xattr user. of file 'cgroup.clone_children'
cgroup_xattr 1464  TPASS  :  Expect: can't read xattr system. of file 'cgroup.clone_children'
cgroup_xattr 1465  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1466  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1467  TPASS  :  Expect: values equal
cgroup_xattr 1468  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1469  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1470  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1471  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1472  TPASS  :  Expect: values equal
cgroup_xattr 1473  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1474  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1475  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1476  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1477  TPASS  :  Expect: values equal
cgroup_xattr 1478  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1479  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1480  TPASS  :  Expect: can't read xattr security. of file 'cpuset.sched_load_balance'
cgroup_xattr 1481  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.sched_load_balance'
cgroup_xattr 1482  TPASS  :  Expect: values equal
cgroup_xattr 1483  TPASS  :  Expect: can't read xattr user. of file 'cpuset.sched_load_balance'
cgroup_xattr 1484  TPASS  :  Expect: can't read xattr system. of file 'cpuset.sched_load_balance'
cgroup_xattr 1485  TPASS  :  Expect: can't read xattr security. of file 'cpu.cfs_period_us'
cgroup_xattr 1486  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.cfs_period_us'
cgroup_xattr 1487  TPASS  :  Expect: values equal
cgroup_xattr 1488  TPASS  :  Expect: can't read xattr user. of file 'cpu.cfs_period_us'
cgroup_xattr 1489  TPASS  :  Expect: can't read xattr system. of file 'cpu.cfs_period_us'
cgroup_xattr 1490  TPASS  :  Expect: can't read xattr security. of file 'memory.oom_control'
cgroup_xattr 1491  TPASS  :  Expect: can read xattr trusted.test of file 'memory.oom_control'
cgroup_xattr 1492  TPASS  :  Expect: values equal
cgroup_xattr 1493  TPASS  :  Expect: can't read xattr user. of file 'memory.oom_control'
cgroup_xattr 1494  TPASS  :  Expect: can't read xattr system. of file 'memory.oom_control'
cgroup_xattr 1495  TPASS  :  Expect: can't read xattr security. of file 'cgroup.sane_behavior'
cgroup_xattr 1496  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.sane_behavior'
cgroup_xattr 1497  TPASS  :  Expect: values equal
cgroup_xattr 1498  TPASS  :  Expect: can't read xattr user. of file 'cgroup.sane_behavior'
cgroup_xattr 1499  TPASS  :  Expect: can't read xattr system. of file 'cgroup.sane_behavior'
cgroup_xattr 1500  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1501  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1502  TPASS  :  Expect: values equal
cgroup_xattr 1503  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1504  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1505  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.failcnt'
cgroup_xattr 1506  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.failcnt'
cgroup_xattr 1507  TPASS  :  Expect: values equal
cgroup_xattr 1508  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.failcnt'
cgroup_xattr 1509  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.failcnt'
cgroup_xattr 1510  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1511  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1512  TPASS  :  Expect: values equal
cgroup_xattr 1513  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1514  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1515  TPASS  :  Expect: can't read xattr security. of file 'cpu.rt_period_us'
cgroup_xattr 1516  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.rt_period_us'
cgroup_xattr 1517  TPASS  :  Expect: values equal
cgroup_xattr 1518  TPASS  :  Expect: can't read xattr user. of file 'cpu.rt_period_us'
cgroup_xattr 1519  TPASS  :  Expect: can't read xattr system. of file 'cpu.rt_period_us'
cgroup_xattr 1520  TPASS  :  Expect: can't read xattr security. of file 'notify_on_release'
cgroup_xattr 1521  TPASS  :  Expect: can read xattr trusted.test of file 'notify_on_release'
cgroup_xattr 1522  TPASS  :  Expect: values equal
cgroup_xattr 1523  TPASS  :  Expect: can't read xattr user. of file 'notify_on_release'
cgroup_xattr 1524  TPASS  :  Expect: can't read xattr system. of file 'notify_on_release'
cgroup_xattr 1525  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_time'
cgroup_xattr 1526  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_time'
cgroup_xattr 1527  TPASS  :  Expect: values equal
cgroup_xattr 1528  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_time'
cgroup_xattr 1529  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_time'
cgroup_xattr 1530  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_pressure_enabled'
cgroup_xattr 1531  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_pressure_enabled'
cgroup_xattr 1532  TPASS  :  Expect: values equal
cgroup_xattr 1533  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_pressure_enabled'
cgroup_xattr 1534  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_pressure_enabled'
cgroup_xattr 1535  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1536  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1537  TPASS  :  Expect: values equal
cgroup_xattr 1538  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1539  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1540  TPASS  :  Expect: can't read xattr security. of file 'memory.stat'
cgroup_xattr 1541  TPASS  :  Expect: can read xattr trusted.test of file 'memory.stat'
cgroup_xattr 1542  TPASS  :  Expect: values equal
cgroup_xattr 1543  TPASS  :  Expect: can't read xattr user. of file 'memory.stat'
cgroup_xattr 1544  TPASS  :  Expect: can't read xattr system. of file 'memory.stat'
cgroup_xattr 1545  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_migrate'
cgroup_xattr 1546  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_migrate'
cgroup_xattr 1547  TPASS  :  Expect: values equal
cgroup_xattr 1548  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_migrate'
cgroup_xattr 1549  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_migrate'
cgroup_xattr 1550  TPASS  :  Expect: can't read xattr security. of file 'devices.deny'
cgroup_xattr 1551  TPASS  :  Expect: can read xattr trusted.test of file 'devices.deny'
cgroup_xattr 1552  TPASS  :  Expect: values equal
cgroup_xattr 1553  TPASS  :  Expect: can't read xattr user. of file 'devices.deny'
cgroup_xattr 1554  TPASS  :  Expect: can't read xattr system. of file 'devices.deny'
cgroup_xattr 1555  TPASS  :  Expect: can't read xattr security. of file 'devices.list'
cgroup_xattr 1556  TPASS  :  Expect: can read xattr trusted.test of file 'devices.list'
cgroup_xattr 1557  TPASS  :  Expect: values equal
cgroup_xattr 1558  TPASS  :  Expect: can't read xattr user. of file 'devices.list'
cgroup_xattr 1559  TPASS  :  Expect: can't read xattr system. of file 'devices.list'
cgroup_xattr 1560  TPASS  :  Expect: can't read xattr security. of file 'cgroup.event_control'
cgroup_xattr 1561  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.event_control'
cgroup_xattr 1562  TPASS  :  Expect: values equal
cgroup_xattr 1563  TPASS  :  Expect: can't read xattr user. of file 'cgroup.event_control'
cgroup_xattr 1564  TPASS  :  Expect: can't read xattr system. of file 'cgroup.event_control'
cgroup_xattr 1565  TPASS  :  Expect: can't read xattr security. of file 'blkio.time_recursive'
cgroup_xattr 1566  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.time_recursive'
cgroup_xattr 1567  TPASS  :  Expect: values equal
cgroup_xattr 1568  TPASS  :  Expect: can't read xattr user. of file 'blkio.time_recursive'
cgroup_xattr 1569  TPASS  :  Expect: can't read xattr system. of file 'blkio.time_recursive'
cgroup_xattr 1570  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_merged'
cgroup_xattr 1571  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_merged'
cgroup_xattr 1572  TPASS  :  Expect: values equal
cgroup_xattr 1573  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_merged'
cgroup_xattr 1574  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_merged'
cgroup_xattr 1575  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1576  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1577  TPASS  :  Expect: values equal
cgroup_xattr 1578  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1579  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1580  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1581  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1582  TPASS  :  Expect: values equal
cgroup_xattr 1583  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1584  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1585  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1586  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1587  TPASS  :  Expect: values equal
cgroup_xattr 1588  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1589  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1590  TPASS  :  Expect: can't read xattr security. of file 'blkio.sectors'
cgroup_xattr 1591  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.sectors'
cgroup_xattr 1592  TPASS  :  Expect: values equal
cgroup_xattr 1593  TPASS  :  Expect: can't read xattr user. of file 'blkio.sectors'
cgroup_xattr 1594  TPASS  :  Expect: can't read xattr system. of file 'blkio.sectors'
cgroup_xattr 1595  TPASS  :  Expect: can't read xattr security. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1596  TPASS  :  Expect: can read xattr trusted.test of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1597  TPASS  :  Expect: values equal
cgroup_xattr 1598  TPASS  :  Expect: can't read xattr user. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1599  TPASS  :  Expect: can't read xattr system. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1600  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_queued'
cgroup_xattr 1601  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_queued'
cgroup_xattr 1602  TPASS  :  Expect: values equal
cgroup_xattr 1603  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_queued'
cgroup_xattr 1604  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_queued'
cgroup_xattr 1605  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1606  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1607  TPASS  :  Expect: values equal
cgroup_xattr 1608  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1609  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1610  TPASS  :  Expect: can't read xattr security. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1611  TPASS  :  Expect: can read xattr trusted.test of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1612  TPASS  :  Expect: values equal
cgroup_xattr 1613  TPASS  :  Expect: can't read xattr user. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1614  TPASS  :  Expect: can't read xattr system. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1615  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage'
cgroup_xattr 1616  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage'
cgroup_xattr 1617  TPASS  :  Expect: values equal
cgroup_xattr 1618  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage'
cgroup_xattr 1619  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage'
cgroup_xattr 1620  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_queued_recursive'
cgroup_xattr 1621  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_queued_recursive'
cgroup_xattr 1622  TPASS  :  Expect: values equal
cgroup_xattr 1623  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_queued_recursive'
cgroup_xattr 1624  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_queued_recursive'
cgroup_xattr 1625  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1626  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1627  TPASS  :  Expect: values equal
cgroup_xattr 1628  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1629  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr    0  TINFO  :  All test-cases have been completed, summary:
cgroup_xattr    0  TINFO  :  Set tests result: PASS
cgroup_xattr    0  TINFO  :  Get tests result: PASS
incrementing stop
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=3
<<<test_end>>>
INFO: ltp-pan reported all tests PASS
LTP Version: 20160510

       ###############################################################

            Done executing testcases.
            LTP Version:  20160510
       ###############################################################


^ permalink raw reply	[flat|nested] 27+ messages in thread

* Re: [PATCH v3 00/17] Xattr inode operation removal
  2016-05-30 18:51           ` Sedat Dilek
  2016-05-30 19:19             ` Sedat Dilek
@ 2016-05-30 19:29             ` Andreas Gruenbacher
  2016-05-30 19:55               ` Sedat Dilek
  1 sibling, 1 reply; 27+ messages in thread
From: Andreas Gruenbacher @ 2016-05-30 19:29 UTC (permalink / raw)
  To: sedat.dilek
  Cc: Alexander Viro, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel, LSM,
	David Howells, Serge Hallyn, Dmitry Kasatkin, Paul Moore,
	Stephen Smalley, Eric Paris, Casey Schaufler, Oleg Drokin,
	Andreas Dilger

[-- Attachment #1: Type: text/plain, Size: 239 bytes --]

On Mon, May 30, 2016 at 8:51 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> Which "trusted." line or lines shall I remove?

You can try something like the attached patch. Ovetall, the test case
doesn't seem very useful.

Thanks,
Andreas

[-- Attachment #2: ltp-xattr.patch --]
[-- Type: text/x-patch, Size: 1629 bytes --]

diff --git a/testcases/kernel/controllers/cgroup_xattr/cgroup_xattr.c b/testcases/kernel/controllers/cgroup_xattr/cgroup_xattr.c
index 492ddc7..a7c131f 100644
--- a/testcases/kernel/controllers/cgroup_xattr/cgroup_xattr.c
+++ b/testcases/kernel/controllers/cgroup_xattr/cgroup_xattr.c
@@ -64,9 +64,9 @@ struct tst_key {
 
 /* only security.* & trusted.* are valid key names */
 static struct tst_key tkeys[] = {
-	{ .name = "security.",		.good = 1,	},
+	{ .name = "security.",		.good = 0,	},  /* see setup() */
 	{ .name = "trusted.test",	.good = 1,	},
-	{ .name = "trusted.",		.good = 1,	},
+	{ .name = "trusted.",		.good = 0,	},  /* see setup() */
 	{ .name = "user.",		.good = 0,	},
 	{ .name = "system.",		.good = 0,	},
 };
@@ -141,6 +141,8 @@ static void help(void)
 
 void setup(int argc, char *argv[])
 {
+	unsigned int i;
+
 	tst_parse_opts(argc, argv, options, help);
 
 	tst_require_root();
@@ -153,17 +155,11 @@ void setup(int argc, char *argv[])
 			"Test must be run with kernel 3.7 or newer");
 	}
 
-	if (tst_kvercmp(3, 15, 0) >= 0) {
-		/* In kernel v3.15 cgroup was converted to kernfs
-		 * that doesn't provide simple security namespace handlers.
-		 * Setting just 'security.' should return EOPNOTSUPP.
-		 */
-		unsigned int i;
-		for (i = 0; i < ARRAY_SIZE(tkeys); ++i) {
-			if (!strcmp(tkeys[i].name, "security.")) {
-				tkeys[i].good = 0;
-				break;
-			}
+	for (i = 0; i < ARRAY_SIZE(tkeys); ++i) {
+		if (!strcmp(tkeys[i].name, "security.")) {
+			tkeys[i].good = tst_kvercmp(3, 15, 0) < 0;
+		} else if (!strcmp(tkeys[i].name, "trusted.")) {
+			tkeys[i].good = tst_kvercmp(4, 5, 0) < 0;
 		}
 	}
 

^ permalink raw reply related	[flat|nested] 27+ messages in thread

* Re: [PATCH v3 00/17] Xattr inode operation removal
  2016-05-30 19:29             ` Andreas Gruenbacher
@ 2016-05-30 19:55               ` Sedat Dilek
  0 siblings, 0 replies; 27+ messages in thread
From: Sedat Dilek @ 2016-05-30 19:55 UTC (permalink / raw)
  To: Andreas Gruenbacher
  Cc: Alexander Viro, linux-fsdevel, Tyler Hicks, ecryptfs,
	Miklos Szeredi, linux-unionfs, Mimi Zohar, linux-ima-devel, LSM,
	David Howells, Serge Hallyn, Dmitry Kasatkin, Paul Moore,
	Stephen Smalley, Eric Paris, Casey Schaufler, Oleg Drokin,
	Andreas Dilger

[-- Attachment #1: Type: text/plain, Size: 330 bytes --]

On 5/30/16, Andreas Gruenbacher <agruenba@redhat.com> wrote:
> On Mon, May 30, 2016 at 8:51 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>> Which "trusted." line or lines shall I remove?
>
> You can try something like the attached patch. Ovetall, the test case
> doesn't seem very useful.
>

This looks good, thanks.

- Sedat -

[-- Attachment #2: LTP_RUN_ON-2016_05_30-21h_52m_52s.log --]
[-- Type: application/octet-stream, Size: 959 bytes --]

Test Start Time: Mon May 30 21:52:54 2016
-----------------------------------------
Testcase                       Result     Exit Value
--------                       ------     ----------
getxattr01                     PASS       0    
getxattr02                     PASS       0    
getxattr03                     PASS       0    
llistxattr01                   PASS       0    
llistxattr02                   PASS       0    
llistxattr03                   PASS       0    
removexattr01                  PASS       0    
removexattr02                  PASS       0    
setxattr01                     PASS       0    
setxattr02                     PASS       0    
setxattr03                     PASS       0    
cgroup_xattr                   PASS       0    

-----------------------------------------------
Total Tests: 12
Total Skipped Tests: 0
Total Failures: 0
Kernel Version: 4.7.0-rc1-2-iniza-small
Machine Architecture: x86_64
Hostname: fambox


[-- Attachment #3: xattr.log --]
[-- Type: application/octet-stream, Size: 198585 bytes --]

INFO: creating /opt/ltp/output directory
INFO: creating /opt/ltp/results directory

    INFO: no command files were provided. Will execute the following
          runtest scenario files:

syscalls fs fs_perms_simple fsx dio io mm ipc sched math nptl pty containers fs_bind controllers filecaps cap_bounds fcntl-locktests connectors admin_tools timers power_management_tests numa hugetlb commands hyperthreading kernel_misc modules fs_ext4 pipes can cpuhotplug ipv6_lib input 

Checking for required user/group ids

'nobody' user id and group found.
'bin' user id and group found.
'daemon' user id and group found.
Users group found.
Sys group found.
Required users/groups exist.
If some fields are empty or look unusual you may have an old version.
Compare to the current minimal requirements in Documentation/Changes.
 
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=12.04
DISTRIB_CODENAME=precise
DISTRIB_DESCRIPTION="Ubuntu 12.04.5 LTS"
NAME="Ubuntu"
VERSION="12.04.5 LTS, Precise Pangolin"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu precise (12.04.5 LTS)"
VERSION_ID="12.04"
Linux fambox 4.7.0-rc1-2-iniza-small #1 SMP Mon May 30 11:36:11 CEST 2016 x86_64 x86_64 x86_64 GNU/Linux
 
Gnu C                  gcc (Ubuntu 4.9.2-0ubuntu1~12.04) 4.9.2
Gnu make               3.81
util-linux             linux 2.20.1
mount                  linux 2.20.1 (with libblkid and selinux support)
modutils               6
e2fsprogs              1.42
PPP                    2.4.5
Linux C Library        > libc.2.15
Dynamic linker (ldd)   2.15
Procps                 3.2.8
Net-tools              1.60
iproute2              iproute2-ss121211
Kbd                    1.15.2
Sh-utils               8.13
Modules Loaded         ppp_deflate bsd_comp ppp_async crc_ccitt option usb_wwan cdc_ether usbserial usbnet bnep rfcomm arc4 parport_pc iwldvm ppdev mac80211 uvcvideo i915 snd_hda_codec_hdmi snd_hda_codec_realtek kvm_intel snd_hda_codec_generic videobuf2_vmalloc videobuf2_memops snd_hda_intel kvm videobuf2_v4l2 snd_hda_codec joydev videobuf2_core videodev snd_hwdep usb_storage btusb snd_hda_core btrtl iwlwifi snd_pcm i2c_algo_bit btbcm drm_kms_helper btintel snd_seq_midi irqbypass bluetooth psmouse snd_seq_midi_event syscopyarea snd_rawmidi sysfillrect snd_seq sysimgblt snd_timer samsung_laptop serio_raw cfg80211 fb_sys_fops snd_seq_device drm lpc_ich snd soundcore video wmi intel_rst mac_hid acpi_cpufreq binfmt_misc lp parport hid_generic usbhid hid r8169 mii

free reports:
             total       used       free     shared    buffers     cached
Mem:       3924488    3800812     123676          0    1035596    2058144
-/+ buffers/cache:     707072    3217416
Swap:       262140         12     262128

/proc/cpuinfo
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 42
model name	: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping	: 7
microcode	: 0x28
cpu MHz		: 900.000
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 2
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs		:
bogomips	: 3192.77
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 6
model		: 42
model name	: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping	: 7
microcode	: 0x28
cpu MHz		: 800.000
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 0
cpu cores	: 2
apicid		: 1
initial apicid	: 1
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs		:
bogomips	: 3199.91
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

processor	: 2
vendor_id	: GenuineIntel
cpu family	: 6
model		: 42
model name	: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping	: 7
microcode	: 0x28
cpu MHz		: 1300.000
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 2
apicid		: 2
initial apicid	: 2
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs		:
bogomips	: 3197.22
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

processor	: 3
vendor_id	: GenuineIntel
cpu family	: 6
model		: 42
model name	: Intel(R) Core(TM) i5-2467M CPU @ 1.60GHz
stepping	: 7
microcode	: 0x28
cpu MHz		: 800.000
cache size	: 3072 KB
physical id	: 0
siblings	: 4
core id		: 1
cpu cores	: 2
apicid		: 3
initial apicid	: 3
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm epb tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts
bugs		:
bogomips	: 3197.24
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

no big block device was specified on commandline.
Tests which require a big block device are disabled.
You can specify it with option -z
COMMAND:    /opt/ltp/bin/ltp-pan  -e -S   -a 19793     -n 19793  -p  -f /tmp/ltp-Hf84Vvh1V3/alltests -l /opt/ltp/results/LTP_RUN_ON-2016_05_30-21h_52m_52s.log  -C /opt/ltp/output/LTP_RUN_ON-2016_05_30-21h_52m_52s.failed -T /opt/ltp/output/LTP_RUN_ON-2016_05_30-21h_52m_52s.tconf
INFO: Restricted to xattr
LOG File: /opt/ltp/results/LTP_RUN_ON-2016_05_30-21h_52m_52s.log
FAILED COMMAND File: /opt/ltp/output/LTP_RUN_ON-2016_05_30-21h_52m_52s.failed
TCONF COMMAND File: /opt/ltp/output/LTP_RUN_ON-2016_05_30-21h_52m_52s.tconf
Running tests.......
<<<test_start>>>
tag=getxattr01 stime=1464637974
cmdline="getxattr01"
contacts=""
analysis=exit
<<<test_output>>>
getxattr01    1  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
getxattr01    2  TPASS  :  expected behavior: TEST_ERRNO=ERANGE(34): Numerical result out of range
getxattr01    3  TPASS  :  expected behavior: TEST_ERRNO=SUCCESS(0): Success
getxattr01    4  TPASS  :  Got the right value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=getxattr02 stime=1464637974
cmdline="getxattr02"
contacts=""
analysis=exit
<<<test_output>>>
getxattr02    1  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
getxattr02    2  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
getxattr02    3  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
getxattr02    4  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=getxattr03 stime=1464637974
cmdline="getxattr03"
contacts=""
analysis=exit
<<<test_output>>>
getxattr03    1  TPASS  :  getxattr(2) returned correct value
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=llistxattr01 stime=1464637974
cmdline="llistxattr01"
contacts=""
analysis=exit
<<<test_output>>>
llistxattr01.c:100: PASS: llistxattr() succeeded

Summary:
passed   1
failed   0
skipped  0
warnings 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=llistxattr02 stime=1464637974
cmdline="llistxattr02"
contacts=""
analysis=exit
<<<test_output>>>
llistxattr02.c:76: PASS: llistxattr() failed as expected: ERANGE
llistxattr02.c:76: PASS: llistxattr() failed as expected: ENOENT
llistxattr02.c:76: PASS: llistxattr() failed as expected: EFAULT

Summary:
passed   3
failed   0
skipped  0
warnings 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=llistxattr03 stime=1464637974
cmdline="llistxattr03"
contacts=""
analysis=exit
<<<test_output>>>
llistxattr03.c:67: PASS: llistxattr() succeed with suitable buffer
llistxattr03.c:67: PASS: llistxattr() succeed with suitable buffer

Summary:
passed   2
failed   0
skipped  0
warnings 0
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=removexattr01 stime=1464637974
cmdline="removexattr01"
contacts=""
analysis=exit
<<<test_output>>>
removexattr01    1  TPASS  :  removexattr() succeeded
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=removexattr02 stime=1464637974
cmdline="removexattr02"
contacts=""
analysis=exit
<<<test_output>>>
removexattr02    1  TPASS  :  removexattr() failed as expected: TEST_ERRNO=ENODATA(61): No data available
removexattr02    2  TPASS  :  removexattr() failed as expected: TEST_ERRNO=ENOENT(2): No such file or directory
removexattr02    3  TPASS  :  removexattr() failed as expected: TEST_ERRNO=EFAULT(14): Bad address
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setxattr01 stime=1464637974
cmdline="setxattr01"
contacts=""
analysis=exit
<<<test_output>>>
setxattr01    1  TPASS  :  expected behavior: TEST_ERRNO=EINVAL(22): Invalid argument
setxattr01    2  TPASS  :  expected behavior: TEST_ERRNO=ENODATA(61): No data available
setxattr01    3  TPASS  :  expected behavior: TEST_ERRNO=ERANGE(34): Numerical result out of range
setxattr01    4  TPASS  :  expected behavior: TEST_ERRNO=E2BIG(7): Argument list too long
setxattr01    5  TPASS  :  expected behavior: TEST_ERRNO=SUCCESS(0): Success
setxattr01    6  TPASS  :  expected behavior: TEST_ERRNO=EEXIST(17): File exists
setxattr01    7  TPASS  :  expected behavior: TEST_ERRNO=SUCCESS(0): Success
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=1
<<<test_end>>>
<<<test_start>>>
tag=setxattr02 stime=1464637974
cmdline="setxattr02"
contacts=""
analysis=exit
<<<test_output>>>
setxattr02    1  TPASS  :  expected behavior: TEST_ERRNO=SUCCESS(0): Success
setxattr02    2  TPASS  :  expected behavior: TEST_ERRNO=SUCCESS(0): Success
setxattr02    3  TPASS  :  expected behavior: TEST_ERRNO=EEXIST(17): File exists
setxattr02    4  TPASS  :  expected behavior: TEST_ERRNO=EPERM(1): Operation not permitted
setxattr02    5  TPASS  :  expected behavior: TEST_ERRNO=EPERM(1): Operation not permitted
setxattr02    6  TPASS  :  expected behavior: TEST_ERRNO=EPERM(1): Operation not permitted
setxattr02    7  TPASS  :  expected behavior: TEST_ERRNO=EPERM(1): Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=setxattr03 stime=1464637974
cmdline="setxattr03"
contacts=""
analysis=exit
<<<test_output>>>
setxattr03    1  TPASS  :  Set attr to immutable file: TEST_ERRNO=EPERM(1): Operation not permitted
setxattr03    2  TPASS  :  Set attr to append-only file: TEST_ERRNO=EPERM(1): Operation not permitted
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=0 cstime=0
<<<test_end>>>
<<<test_start>>>
tag=cgroup_xattr stime=1464637974
cmdline="cgroup_xattr"
contacts=""
analysis=exit
<<<test_output>>>
cgroup_xattr    0  TINFO  :  mount options 0: xattr,cpuset,cpu,cpuacct,blkio,memory,devices,freezer,perf_event,hugetlb (hier = 1)
cgroup_xattr    0  TINFO  :  In dir .
cgroup_xattr    1  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu'
cgroup_xattr    2  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu'
cgroup_xattr    3  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuacct.usage_percpu'
cgroup_xattr    4  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu'
cgroup_xattr    5  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu'
cgroup_xattr    0  TINFO  :  In dir test
cgroup_xattr    6  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu'
cgroup_xattr    7  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu'
cgroup_xattr    8  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuacct.usage_percpu'
cgroup_xattr    9  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu'
cgroup_xattr   10  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu'
cgroup_xattr   11  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.io_serviced'
cgroup_xattr   12  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.io_serviced'
cgroup_xattr   13  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.throttle.io_serviced'
cgroup_xattr   14  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.io_serviced'
cgroup_xattr   15  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.io_serviced'
cgroup_xattr   16  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.pressure_level'
cgroup_xattr   17  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.pressure_level'
cgroup_xattr   18  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.pressure_level'
cgroup_xattr   19  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.pressure_level'
cgroup_xattr   20  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.pressure_level'
cgroup_xattr   21  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr   22  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr   23  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr   24  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr   25  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr   26  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr   27  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr   28  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr   29  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr   30  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr   31  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.use_hierarchy'
cgroup_xattr   32  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.use_hierarchy'
cgroup_xattr   33  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.use_hierarchy'
cgroup_xattr   34  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.use_hierarchy'
cgroup_xattr   35  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.use_hierarchy'
cgroup_xattr   36  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.swappiness'
cgroup_xattr   37  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.swappiness'
cgroup_xattr   38  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.swappiness'
cgroup_xattr   39  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.swappiness'
cgroup_xattr   40  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.swappiness'
cgroup_xattr   41  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_serviced_recursive'
cgroup_xattr   42  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_serviced_recursive'
cgroup_xattr   43  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_serviced_recursive'
cgroup_xattr   44  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_serviced_recursive'
cgroup_xattr   45  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_serviced_recursive'
cgroup_xattr   46  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.time'
cgroup_xattr   47  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.time'
cgroup_xattr   48  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.time'
cgroup_xattr   49  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.time'
cgroup_xattr   50  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.time'
cgroup_xattr   51  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr   52  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr   53  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr   54  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr   55  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr   56  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mem_hardwall'
cgroup_xattr   57  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mem_hardwall'
cgroup_xattr   58  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.mem_hardwall'
cgroup_xattr   59  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mem_hardwall'
cgroup_xattr   60  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mem_hardwall'
cgroup_xattr   61  TPASS  :  Expect: can't set xattr key 'security.' to file 'tasks'
cgroup_xattr   62  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'tasks'
cgroup_xattr   63  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'tasks'
cgroup_xattr   64  TPASS  :  Expect: can't set xattr key 'user.' to file 'tasks'
cgroup_xattr   65  TPASS  :  Expect: can't set xattr key 'system.' to file 'tasks'
cgroup_xattr   66  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_serviced'
cgroup_xattr   67  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_serviced'
cgroup_xattr   68  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_serviced'
cgroup_xattr   69  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_serviced'
cgroup_xattr   70  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_serviced'
cgroup_xattr   71  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr   72  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr   73  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr   74  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr   75  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr   76  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.reset_stats'
cgroup_xattr   77  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.reset_stats'
cgroup_xattr   78  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.reset_stats'
cgroup_xattr   79  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.reset_stats'
cgroup_xattr   80  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.reset_stats'
cgroup_xattr   81  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.limit_in_bytes'
cgroup_xattr   82  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.limit_in_bytes'
cgroup_xattr   83  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.limit_in_bytes'
cgroup_xattr   84  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.limit_in_bytes'
cgroup_xattr   85  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.limit_in_bytes'
cgroup_xattr   86  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_wait_time'
cgroup_xattr   87  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_wait_time'
cgroup_xattr   88  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_wait_time'
cgroup_xattr   89  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_wait_time'
cgroup_xattr   90  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_wait_time'
cgroup_xattr   91  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.weight'
cgroup_xattr   92  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.weight'
cgroup_xattr   93  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.weight'
cgroup_xattr   94  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.weight'
cgroup_xattr   95  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.weight'
cgroup_xattr   96  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.procs'
cgroup_xattr   97  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.procs'
cgroup_xattr   98  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cgroup.procs'
cgroup_xattr   99  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.procs'
cgroup_xattr  100  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.procs'
cgroup_xattr  101  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.leaf_weight_device'
cgroup_xattr  102  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.leaf_weight_device'
cgroup_xattr  103  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.leaf_weight_device'
cgroup_xattr  104  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.leaf_weight_device'
cgroup_xattr  105  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.leaf_weight_device'
cgroup_xattr  106  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.allow'
cgroup_xattr  107  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.allow'
cgroup_xattr  108  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'devices.allow'
cgroup_xattr  109  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.allow'
cgroup_xattr  110  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.allow'
cgroup_xattr  111  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  112  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  113  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  114  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  115  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  116  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.rt_runtime_us'
cgroup_xattr  117  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.rt_runtime_us'
cgroup_xattr  118  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpu.rt_runtime_us'
cgroup_xattr  119  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.rt_runtime_us'
cgroup_xattr  120  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.rt_runtime_us'
cgroup_xattr  121  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.shares'
cgroup_xattr  122  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.shares'
cgroup_xattr  123  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpu.shares'
cgroup_xattr  124  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.shares'
cgroup_xattr  125  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.shares'
cgroup_xattr  126  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_merged_recursive'
cgroup_xattr  127  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_merged_recursive'
cgroup_xattr  128  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_merged_recursive'
cgroup_xattr  129  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_merged_recursive'
cgroup_xattr  130  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_merged_recursive'
cgroup_xattr  131  TPASS  :  Expect: can't set xattr key 'security.' to file 'freezer.state'
cgroup_xattr  132  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'freezer.state'
cgroup_xattr  133  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'freezer.state'
cgroup_xattr  134  TPASS  :  Expect: can't set xattr key 'user.' to file 'freezer.state'
cgroup_xattr  135  TPASS  :  Expect: can't set xattr key 'system.' to file 'freezer.state'
cgroup_xattr  136  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  137  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  138  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  139  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  140  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  141  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.usage_in_bytes'
cgroup_xattr  142  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.usage_in_bytes'
cgroup_xattr  143  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.usage_in_bytes'
cgroup_xattr  144  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.usage_in_bytes'
cgroup_xattr  145  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.usage_in_bytes'
cgroup_xattr  146  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.leaf_weight'
cgroup_xattr  147  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.leaf_weight'
cgroup_xattr  148  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.leaf_weight'
cgroup_xattr  149  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.leaf_weight'
cgroup_xattr  150  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.leaf_weight'
cgroup_xattr  151  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.sectors_recursive'
cgroup_xattr  152  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.sectors_recursive'
cgroup_xattr  153  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.sectors_recursive'
cgroup_xattr  154  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.sectors_recursive'
cgroup_xattr  155  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.sectors_recursive'
cgroup_xattr  156  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.cpus'
cgroup_xattr  157  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.cpus'
cgroup_xattr  158  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.cpus'
cgroup_xattr  159  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.cpus'
cgroup_xattr  160  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.cpus'
cgroup_xattr  161  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mems'
cgroup_xattr  162  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mems'
cgroup_xattr  163  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.mems'
cgroup_xattr  164  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mems'
cgroup_xattr  165  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mems'
cgroup_xattr  166  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.weight_device'
cgroup_xattr  167  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.weight_device'
cgroup_xattr  168  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.weight_device'
cgroup_xattr  169  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.weight_device'
cgroup_xattr  170  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.weight_device'
cgroup_xattr  171  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  172  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  173  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  174  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  175  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  176  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_pressure'
cgroup_xattr  177  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_pressure'
cgroup_xattr  178  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.memory_pressure'
cgroup_xattr  179  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_pressure'
cgroup_xattr  180  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_pressure'
cgroup_xattr  181  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_sys'
cgroup_xattr  182  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_sys'
cgroup_xattr  183  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuacct.usage_sys'
cgroup_xattr  184  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_sys'
cgroup_xattr  185  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_sys'
cgroup_xattr  186  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.cfs_quota_us'
cgroup_xattr  187  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.cfs_quota_us'
cgroup_xattr  188  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpu.cfs_quota_us'
cgroup_xattr  189  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.cfs_quota_us'
cgroup_xattr  190  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.cfs_quota_us'
cgroup_xattr  191  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_user'
cgroup_xattr  192  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_user'
cgroup_xattr  193  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuacct.usage_user'
cgroup_xattr  194  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_user'
cgroup_xattr  195  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_user'
cgroup_xattr  196  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_spread_page'
cgroup_xattr  197  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_spread_page'
cgroup_xattr  198  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.memory_spread_page'
cgroup_xattr  199  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_spread_page'
cgroup_xattr  200  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_spread_page'
cgroup_xattr  201  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  202  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_spread_slab'
cgroup_xattr  203  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  204  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  205  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  206  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.failcnt'
cgroup_xattr  207  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.failcnt'
cgroup_xattr  208  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.failcnt'
cgroup_xattr  209  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.failcnt'
cgroup_xattr  210  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.failcnt'
cgroup_xattr  211  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  212  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_time_recursive'
cgroup_xattr  213  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  214  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  215  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  216  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  217  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  218  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  219  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  220  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  221  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  222  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.cpu_exclusive'
cgroup_xattr  223  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  224  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  225  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  226  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  227  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  228  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  229  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  230  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  231  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.force_empty'
cgroup_xattr  232  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.force_empty'
cgroup_xattr  233  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.force_empty'
cgroup_xattr  234  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.force_empty'
cgroup_xattr  235  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.force_empty'
cgroup_xattr  236  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  237  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  238  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  239  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  240  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  241  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_bytes'
cgroup_xattr  242  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_bytes'
cgroup_xattr  243  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_service_bytes'
cgroup_xattr  244  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_bytes'
cgroup_xattr  245  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_bytes'
cgroup_xattr  246  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mem_exclusive'
cgroup_xattr  247  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mem_exclusive'
cgroup_xattr  248  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.mem_exclusive'
cgroup_xattr  249  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mem_exclusive'
cgroup_xattr  250  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mem_exclusive'
cgroup_xattr  251  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.stat'
cgroup_xattr  252  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.stat'
cgroup_xattr  253  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuacct.stat'
cgroup_xattr  254  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.stat'
cgroup_xattr  255  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.stat'
cgroup_xattr  256  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.slabinfo'
cgroup_xattr  257  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.slabinfo'
cgroup_xattr  258  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.slabinfo'
cgroup_xattr  259  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.slabinfo'
cgroup_xattr  260  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.slabinfo'
cgroup_xattr  261  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.stat'
cgroup_xattr  262  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.stat'
cgroup_xattr  263  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpu.stat'
cgroup_xattr  264  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.stat'
cgroup_xattr  265  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.stat'
cgroup_xattr  266  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.effective_cpus'
cgroup_xattr  267  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.effective_cpus'
cgroup_xattr  268  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.effective_cpus'
cgroup_xattr  269  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.effective_cpus'
cgroup_xattr  270  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.effective_cpus'
cgroup_xattr  271  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.effective_mems'
cgroup_xattr  272  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.effective_mems'
cgroup_xattr  273  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.effective_mems'
cgroup_xattr  274  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.effective_mems'
cgroup_xattr  275  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.effective_mems'
cgroup_xattr  276  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  277  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.max_usage_in_bytes'
cgroup_xattr  278  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  279  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  280  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  281  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.numa_stat'
cgroup_xattr  282  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.numa_stat'
cgroup_xattr  283  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.numa_stat'
cgroup_xattr  284  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.numa_stat'
cgroup_xattr  285  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.numa_stat'
cgroup_xattr  286  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.clone_children'
cgroup_xattr  287  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.clone_children'
cgroup_xattr  288  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cgroup.clone_children'
cgroup_xattr  289  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.clone_children'
cgroup_xattr  290  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.clone_children'
cgroup_xattr  291  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  292  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  293  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  294  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  295  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  296  TPASS  :  Expect: can't set xattr key 'security.' to file 'freezer.parent_freezing'
cgroup_xattr  297  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'freezer.parent_freezing'
cgroup_xattr  298  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'freezer.parent_freezing'
cgroup_xattr  299  TPASS  :  Expect: can't set xattr key 'user.' to file 'freezer.parent_freezing'
cgroup_xattr  300  TPASS  :  Expect: can't set xattr key 'system.' to file 'freezer.parent_freezing'
cgroup_xattr  301  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  302  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  303  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  304  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  305  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  306  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  307  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  308  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  309  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  310  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  311  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.sched_load_balance'
cgroup_xattr  312  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.sched_load_balance'
cgroup_xattr  313  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.sched_load_balance'
cgroup_xattr  314  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.sched_load_balance'
cgroup_xattr  315  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.sched_load_balance'
cgroup_xattr  316  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.cfs_period_us'
cgroup_xattr  317  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.cfs_period_us'
cgroup_xattr  318  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpu.cfs_period_us'
cgroup_xattr  319  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.cfs_period_us'
cgroup_xattr  320  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.cfs_period_us'
cgroup_xattr  321  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.oom_control'
cgroup_xattr  322  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.oom_control'
cgroup_xattr  323  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.oom_control'
cgroup_xattr  324  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.oom_control'
cgroup_xattr  325  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.oom_control'
cgroup_xattr  326  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  327  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  328  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  329  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  330  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  331  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.failcnt'
cgroup_xattr  332  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.failcnt'
cgroup_xattr  333  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.failcnt'
cgroup_xattr  334  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.failcnt'
cgroup_xattr  335  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.failcnt'
cgroup_xattr  336  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  337  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  338  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  339  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  340  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  341  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.rt_period_us'
cgroup_xattr  342  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.rt_period_us'
cgroup_xattr  343  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpu.rt_period_us'
cgroup_xattr  344  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.rt_period_us'
cgroup_xattr  345  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.rt_period_us'
cgroup_xattr  346  TPASS  :  Expect: can't set xattr key 'security.' to file 'notify_on_release'
cgroup_xattr  347  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'notify_on_release'
cgroup_xattr  348  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'notify_on_release'
cgroup_xattr  349  TPASS  :  Expect: can't set xattr key 'user.' to file 'notify_on_release'
cgroup_xattr  350  TPASS  :  Expect: can't set xattr key 'system.' to file 'notify_on_release'
cgroup_xattr  351  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_time'
cgroup_xattr  352  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_time'
cgroup_xattr  353  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_service_time'
cgroup_xattr  354  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_time'
cgroup_xattr  355  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_time'
cgroup_xattr  356  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  357  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  358  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  359  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  360  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  361  TPASS  :  Expect: can't set xattr key 'security.' to file 'freezer.self_freezing'
cgroup_xattr  362  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'freezer.self_freezing'
cgroup_xattr  363  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'freezer.self_freezing'
cgroup_xattr  364  TPASS  :  Expect: can't set xattr key 'user.' to file 'freezer.self_freezing'
cgroup_xattr  365  TPASS  :  Expect: can't set xattr key 'system.' to file 'freezer.self_freezing'
cgroup_xattr  366  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.stat'
cgroup_xattr  367  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.stat'
cgroup_xattr  368  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.stat'
cgroup_xattr  369  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.stat'
cgroup_xattr  370  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.stat'
cgroup_xattr  371  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_migrate'
cgroup_xattr  372  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_migrate'
cgroup_xattr  373  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.memory_migrate'
cgroup_xattr  374  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_migrate'
cgroup_xattr  375  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_migrate'
cgroup_xattr  376  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.deny'
cgroup_xattr  377  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.deny'
cgroup_xattr  378  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'devices.deny'
cgroup_xattr  379  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.deny'
cgroup_xattr  380  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.deny'
cgroup_xattr  381  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.list'
cgroup_xattr  382  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.list'
cgroup_xattr  383  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'devices.list'
cgroup_xattr  384  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.list'
cgroup_xattr  385  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.list'
cgroup_xattr  386  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.event_control'
cgroup_xattr  387  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.event_control'
cgroup_xattr  388  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cgroup.event_control'
cgroup_xattr  389  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.event_control'
cgroup_xattr  390  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.event_control'
cgroup_xattr  391  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.time_recursive'
cgroup_xattr  392  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.time_recursive'
cgroup_xattr  393  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.time_recursive'
cgroup_xattr  394  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.time_recursive'
cgroup_xattr  395  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.time_recursive'
cgroup_xattr  396  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_merged'
cgroup_xattr  397  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_merged'
cgroup_xattr  398  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_merged'
cgroup_xattr  399  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_merged'
cgroup_xattr  400  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_merged'
cgroup_xattr  401  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  402  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  403  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  404  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  405  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  406  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  407  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  408  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  409  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  410  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  411  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  412  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  413  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  414  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  415  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  416  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.sectors'
cgroup_xattr  417  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.sectors'
cgroup_xattr  418  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.sectors'
cgroup_xattr  419  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.sectors'
cgroup_xattr  420  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.sectors'
cgroup_xattr  421  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  422  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  423  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  424  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  425  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  426  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_queued'
cgroup_xattr  427  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_queued'
cgroup_xattr  428  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_queued'
cgroup_xattr  429  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_queued'
cgroup_xattr  430  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_queued'
cgroup_xattr  431  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  432  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  433  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  434  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  435  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  436  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  437  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  438  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  439  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  440  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  441  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage'
cgroup_xattr  442  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage'
cgroup_xattr  443  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuacct.usage'
cgroup_xattr  444  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage'
cgroup_xattr  445  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage'
cgroup_xattr  446  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_queued_recursive'
cgroup_xattr  447  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_queued_recursive'
cgroup_xattr  448  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_queued_recursive'
cgroup_xattr  449  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_queued_recursive'
cgroup_xattr  450  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_queued_recursive'
cgroup_xattr  451  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  452  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  453  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  454  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  455  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr    0  TINFO  :  In dir .
cgroup_xattr  456  TPASS  :  Expect: can't set xattr key 'security.' to file 'test'
cgroup_xattr  457  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'test'
cgroup_xattr  458  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'test'
cgroup_xattr  459  TPASS  :  Expect: can't set xattr key 'user.' to file 'test'
cgroup_xattr  460  TPASS  :  Expect: can't set xattr key 'system.' to file 'test'
cgroup_xattr  461  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.io_serviced'
cgroup_xattr  462  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.io_serviced'
cgroup_xattr  463  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.throttle.io_serviced'
cgroup_xattr  464  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.io_serviced'
cgroup_xattr  465  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.io_serviced'
cgroup_xattr  466  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.pressure_level'
cgroup_xattr  467  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.pressure_level'
cgroup_xattr  468  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.pressure_level'
cgroup_xattr  469  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.pressure_level'
cgroup_xattr  470  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.pressure_level'
cgroup_xattr  471  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr  472  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr  473  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr  474  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr  475  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_bytes_recursive'
cgroup_xattr  476  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  477  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  478  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  479  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  480  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  481  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.use_hierarchy'
cgroup_xattr  482  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.use_hierarchy'
cgroup_xattr  483  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.use_hierarchy'
cgroup_xattr  484  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.use_hierarchy'
cgroup_xattr  485  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.use_hierarchy'
cgroup_xattr  486  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.swappiness'
cgroup_xattr  487  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.swappiness'
cgroup_xattr  488  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.swappiness'
cgroup_xattr  489  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.swappiness'
cgroup_xattr  490  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.swappiness'
cgroup_xattr  491  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_serviced_recursive'
cgroup_xattr  492  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_serviced_recursive'
cgroup_xattr  493  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_serviced_recursive'
cgroup_xattr  494  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_serviced_recursive'
cgroup_xattr  495  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_serviced_recursive'
cgroup_xattr  496  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.time'
cgroup_xattr  497  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.time'
cgroup_xattr  498  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.time'
cgroup_xattr  499  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.time'
cgroup_xattr  500  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.time'
cgroup_xattr  501  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  502  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  503  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  504  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  505  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  506  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mem_hardwall'
cgroup_xattr  507  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mem_hardwall'
cgroup_xattr  508  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.mem_hardwall'
cgroup_xattr  509  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mem_hardwall'
cgroup_xattr  510  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mem_hardwall'
cgroup_xattr  511  TPASS  :  Expect: can't set xattr key 'security.' to file 'tasks'
cgroup_xattr  512  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'tasks'
cgroup_xattr  513  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'tasks'
cgroup_xattr  514  TPASS  :  Expect: can't set xattr key 'user.' to file 'tasks'
cgroup_xattr  515  TPASS  :  Expect: can't set xattr key 'system.' to file 'tasks'
cgroup_xattr  516  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_serviced'
cgroup_xattr  517  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_serviced'
cgroup_xattr  518  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_serviced'
cgroup_xattr  519  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_serviced'
cgroup_xattr  520  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_serviced'
cgroup_xattr  521  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr  522  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr  523  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr  524  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr  525  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu_sys'
cgroup_xattr  526  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.reset_stats'
cgroup_xattr  527  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.reset_stats'
cgroup_xattr  528  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.reset_stats'
cgroup_xattr  529  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.reset_stats'
cgroup_xattr  530  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.reset_stats'
cgroup_xattr  531  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.limit_in_bytes'
cgroup_xattr  532  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.limit_in_bytes'
cgroup_xattr  533  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.limit_in_bytes'
cgroup_xattr  534  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.limit_in_bytes'
cgroup_xattr  535  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.limit_in_bytes'
cgroup_xattr  536  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_wait_time'
cgroup_xattr  537  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_wait_time'
cgroup_xattr  538  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_wait_time'
cgroup_xattr  539  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_wait_time'
cgroup_xattr  540  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_wait_time'
cgroup_xattr  541  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.weight'
cgroup_xattr  542  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.weight'
cgroup_xattr  543  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.weight'
cgroup_xattr  544  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.weight'
cgroup_xattr  545  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.weight'
cgroup_xattr  546  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.procs'
cgroup_xattr  547  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.procs'
cgroup_xattr  548  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cgroup.procs'
cgroup_xattr  549  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.procs'
cgroup_xattr  550  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.procs'
cgroup_xattr  551  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.leaf_weight_device'
cgroup_xattr  552  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.leaf_weight_device'
cgroup_xattr  553  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.leaf_weight_device'
cgroup_xattr  554  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.leaf_weight_device'
cgroup_xattr  555  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.leaf_weight_device'
cgroup_xattr  556  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.allow'
cgroup_xattr  557  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.allow'
cgroup_xattr  558  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'devices.allow'
cgroup_xattr  559  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.allow'
cgroup_xattr  560  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.allow'
cgroup_xattr  561  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  562  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  563  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  564  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  565  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.read_iops_device'
cgroup_xattr  566  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.rt_runtime_us'
cgroup_xattr  567  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.rt_runtime_us'
cgroup_xattr  568  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpu.rt_runtime_us'
cgroup_xattr  569  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.rt_runtime_us'
cgroup_xattr  570  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.rt_runtime_us'
cgroup_xattr  571  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.shares'
cgroup_xattr  572  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.shares'
cgroup_xattr  573  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpu.shares'
cgroup_xattr  574  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.shares'
cgroup_xattr  575  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.shares'
cgroup_xattr  576  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_merged_recursive'
cgroup_xattr  577  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_merged_recursive'
cgroup_xattr  578  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_merged_recursive'
cgroup_xattr  579  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_merged_recursive'
cgroup_xattr  580  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_merged_recursive'
cgroup_xattr  581  TPASS  :  Expect: can't set xattr key 'security.' to file 'release_agent'
cgroup_xattr  582  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'release_agent'
cgroup_xattr  583  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'release_agent'
cgroup_xattr  584  TPASS  :  Expect: can't set xattr key 'user.' to file 'release_agent'
cgroup_xattr  585  TPASS  :  Expect: can't set xattr key 'system.' to file 'release_agent'
cgroup_xattr  586  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  587  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  588  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  589  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  590  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.write_bps_device'
cgroup_xattr  591  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.usage_in_bytes'
cgroup_xattr  592  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.usage_in_bytes'
cgroup_xattr  593  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.usage_in_bytes'
cgroup_xattr  594  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.usage_in_bytes'
cgroup_xattr  595  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.usage_in_bytes'
cgroup_xattr  596  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.leaf_weight'
cgroup_xattr  597  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.leaf_weight'
cgroup_xattr  598  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.leaf_weight'
cgroup_xattr  599  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.leaf_weight'
cgroup_xattr  600  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.leaf_weight'
cgroup_xattr  601  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.sectors_recursive'
cgroup_xattr  602  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.sectors_recursive'
cgroup_xattr  603  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.sectors_recursive'
cgroup_xattr  604  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.sectors_recursive'
cgroup_xattr  605  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.sectors_recursive'
cgroup_xattr  606  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.cpus'
cgroup_xattr  607  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.cpus'
cgroup_xattr  608  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.cpus'
cgroup_xattr  609  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.cpus'
cgroup_xattr  610  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.cpus'
cgroup_xattr  611  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mems'
cgroup_xattr  612  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mems'
cgroup_xattr  613  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.mems'
cgroup_xattr  614  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mems'
cgroup_xattr  615  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mems'
cgroup_xattr  616  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.weight_device'
cgroup_xattr  617  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.weight_device'
cgroup_xattr  618  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.weight_device'
cgroup_xattr  619  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.weight_device'
cgroup_xattr  620  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.weight_device'
cgroup_xattr  621  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  622  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  623  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  624  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  625  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.sched_relax_domain_level'
cgroup_xattr  626  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_pressure'
cgroup_xattr  627  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_pressure'
cgroup_xattr  628  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.memory_pressure'
cgroup_xattr  629  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_pressure'
cgroup_xattr  630  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_pressure'
cgroup_xattr  631  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_sys'
cgroup_xattr  632  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_sys'
cgroup_xattr  633  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuacct.usage_sys'
cgroup_xattr  634  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_sys'
cgroup_xattr  635  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_sys'
cgroup_xattr  636  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.cfs_quota_us'
cgroup_xattr  637  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.cfs_quota_us'
cgroup_xattr  638  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpu.cfs_quota_us'
cgroup_xattr  639  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.cfs_quota_us'
cgroup_xattr  640  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.cfs_quota_us'
cgroup_xattr  641  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_user'
cgroup_xattr  642  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_user'
cgroup_xattr  643  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuacct.usage_user'
cgroup_xattr  644  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_user'
cgroup_xattr  645  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_user'
cgroup_xattr  646  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_spread_page'
cgroup_xattr  647  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_spread_page'
cgroup_xattr  648  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.memory_spread_page'
cgroup_xattr  649  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_spread_page'
cgroup_xattr  650  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_spread_page'
cgroup_xattr  651  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  652  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_spread_slab'
cgroup_xattr  653  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  654  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  655  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_spread_slab'
cgroup_xattr  656  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.failcnt'
cgroup_xattr  657  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.failcnt'
cgroup_xattr  658  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.failcnt'
cgroup_xattr  659  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.failcnt'
cgroup_xattr  660  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.failcnt'
cgroup_xattr  661  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  662  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_time_recursive'
cgroup_xattr  663  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  664  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  665  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_time_recursive'
cgroup_xattr  666  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  667  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  668  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  669  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  670  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.write_iops_device'
cgroup_xattr  671  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  672  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.cpu_exclusive'
cgroup_xattr  673  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  674  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  675  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.cpu_exclusive'
cgroup_xattr  676  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  677  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  678  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  679  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  680  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.limit_in_bytes'
cgroup_xattr  681  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.force_empty'
cgroup_xattr  682  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.force_empty'
cgroup_xattr  683  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.force_empty'
cgroup_xattr  684  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.force_empty'
cgroup_xattr  685  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.force_empty'
cgroup_xattr  686  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  687  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  688  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  689  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  690  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.io_service_bytes'
cgroup_xattr  691  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_bytes'
cgroup_xattr  692  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_bytes'
cgroup_xattr  693  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_service_bytes'
cgroup_xattr  694  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_bytes'
cgroup_xattr  695  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_bytes'
cgroup_xattr  696  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.mem_exclusive'
cgroup_xattr  697  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.mem_exclusive'
cgroup_xattr  698  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.mem_exclusive'
cgroup_xattr  699  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.mem_exclusive'
cgroup_xattr  700  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.mem_exclusive'
cgroup_xattr  701  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.stat'
cgroup_xattr  702  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.stat'
cgroup_xattr  703  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuacct.stat'
cgroup_xattr  704  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.stat'
cgroup_xattr  705  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.stat'
cgroup_xattr  706  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.slabinfo'
cgroup_xattr  707  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.slabinfo'
cgroup_xattr  708  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.slabinfo'
cgroup_xattr  709  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.slabinfo'
cgroup_xattr  710  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.slabinfo'
cgroup_xattr  711  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.stat'
cgroup_xattr  712  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.stat'
cgroup_xattr  713  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpu.stat'
cgroup_xattr  714  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.stat'
cgroup_xattr  715  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.stat'
cgroup_xattr  716  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.effective_cpus'
cgroup_xattr  717  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.effective_cpus'
cgroup_xattr  718  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.effective_cpus'
cgroup_xattr  719  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.effective_cpus'
cgroup_xattr  720  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.effective_cpus'
cgroup_xattr  721  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.effective_mems'
cgroup_xattr  722  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.effective_mems'
cgroup_xattr  723  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.effective_mems'
cgroup_xattr  724  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.effective_mems'
cgroup_xattr  725  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.effective_mems'
cgroup_xattr  726  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  727  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.max_usage_in_bytes'
cgroup_xattr  728  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  729  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  730  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.max_usage_in_bytes'
cgroup_xattr  731  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.numa_stat'
cgroup_xattr  732  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.numa_stat'
cgroup_xattr  733  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.numa_stat'
cgroup_xattr  734  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.numa_stat'
cgroup_xattr  735  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.numa_stat'
cgroup_xattr  736  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.clone_children'
cgroup_xattr  737  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.clone_children'
cgroup_xattr  738  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cgroup.clone_children'
cgroup_xattr  739  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.clone_children'
cgroup_xattr  740  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.clone_children'
cgroup_xattr  741  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  742  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  743  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  744  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  745  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr  746  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  747  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  748  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  749  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  750  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage_percpu_user'
cgroup_xattr  751  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  752  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  753  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  754  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  755  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr  756  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.sched_load_balance'
cgroup_xattr  757  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.sched_load_balance'
cgroup_xattr  758  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.sched_load_balance'
cgroup_xattr  759  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.sched_load_balance'
cgroup_xattr  760  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.sched_load_balance'
cgroup_xattr  761  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.cfs_period_us'
cgroup_xattr  762  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.cfs_period_us'
cgroup_xattr  763  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpu.cfs_period_us'
cgroup_xattr  764  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.cfs_period_us'
cgroup_xattr  765  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.cfs_period_us'
cgroup_xattr  766  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.oom_control'
cgroup_xattr  767  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.oom_control'
cgroup_xattr  768  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.oom_control'
cgroup_xattr  769  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.oom_control'
cgroup_xattr  770  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.oom_control'
cgroup_xattr  771  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.sane_behavior'
cgroup_xattr  772  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.sane_behavior'
cgroup_xattr  773  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cgroup.sane_behavior'
cgroup_xattr  774  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.sane_behavior'
cgroup_xattr  775  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.sane_behavior'
cgroup_xattr  776  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  777  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  778  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  779  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  780  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr  781  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.failcnt'
cgroup_xattr  782  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.failcnt'
cgroup_xattr  783  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.failcnt'
cgroup_xattr  784  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.failcnt'
cgroup_xattr  785  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.failcnt'
cgroup_xattr  786  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  787  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  788  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  789  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  790  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_wait_time_recursive'
cgroup_xattr  791  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpu.rt_period_us'
cgroup_xattr  792  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpu.rt_period_us'
cgroup_xattr  793  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpu.rt_period_us'
cgroup_xattr  794  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpu.rt_period_us'
cgroup_xattr  795  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpu.rt_period_us'
cgroup_xattr  796  TPASS  :  Expect: can't set xattr key 'security.' to file 'notify_on_release'
cgroup_xattr  797  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'notify_on_release'
cgroup_xattr  798  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'notify_on_release'
cgroup_xattr  799  TPASS  :  Expect: can't set xattr key 'user.' to file 'notify_on_release'
cgroup_xattr  800  TPASS  :  Expect: can't set xattr key 'system.' to file 'notify_on_release'
cgroup_xattr  801  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_service_time'
cgroup_xattr  802  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_service_time'
cgroup_xattr  803  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_service_time'
cgroup_xattr  804  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_service_time'
cgroup_xattr  805  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_service_time'
cgroup_xattr  806  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_pressure_enabled'
cgroup_xattr  807  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_pressure_enabled'
cgroup_xattr  808  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.memory_pressure_enabled'
cgroup_xattr  809  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_pressure_enabled'
cgroup_xattr  810  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_pressure_enabled'
cgroup_xattr  811  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  812  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  813  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  814  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  815  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.usage_in_bytes'
cgroup_xattr  816  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.stat'
cgroup_xattr  817  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.stat'
cgroup_xattr  818  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.stat'
cgroup_xattr  819  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.stat'
cgroup_xattr  820  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.stat'
cgroup_xattr  821  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuset.memory_migrate'
cgroup_xattr  822  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuset.memory_migrate'
cgroup_xattr  823  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuset.memory_migrate'
cgroup_xattr  824  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuset.memory_migrate'
cgroup_xattr  825  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuset.memory_migrate'
cgroup_xattr  826  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.deny'
cgroup_xattr  827  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.deny'
cgroup_xattr  828  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'devices.deny'
cgroup_xattr  829  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.deny'
cgroup_xattr  830  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.deny'
cgroup_xattr  831  TPASS  :  Expect: can't set xattr key 'security.' to file 'devices.list'
cgroup_xattr  832  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'devices.list'
cgroup_xattr  833  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'devices.list'
cgroup_xattr  834  TPASS  :  Expect: can't set xattr key 'user.' to file 'devices.list'
cgroup_xattr  835  TPASS  :  Expect: can't set xattr key 'system.' to file 'devices.list'
cgroup_xattr  836  TPASS  :  Expect: can't set xattr key 'security.' to file 'cgroup.event_control'
cgroup_xattr  837  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cgroup.event_control'
cgroup_xattr  838  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cgroup.event_control'
cgroup_xattr  839  TPASS  :  Expect: can't set xattr key 'user.' to file 'cgroup.event_control'
cgroup_xattr  840  TPASS  :  Expect: can't set xattr key 'system.' to file 'cgroup.event_control'
cgroup_xattr  841  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.time_recursive'
cgroup_xattr  842  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.time_recursive'
cgroup_xattr  843  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.time_recursive'
cgroup_xattr  844  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.time_recursive'
cgroup_xattr  845  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.time_recursive'
cgroup_xattr  846  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_merged'
cgroup_xattr  847  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_merged'
cgroup_xattr  848  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_merged'
cgroup_xattr  849  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_merged'
cgroup_xattr  850  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_merged'
cgroup_xattr  851  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  852  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  853  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  854  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  855  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.failcnt'
cgroup_xattr  856  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  857  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  858  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  859  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  860  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.throttle.read_bps_device'
cgroup_xattr  861  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  862  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  863  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  864  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  865  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr  866  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.sectors'
cgroup_xattr  867  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.sectors'
cgroup_xattr  868  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.sectors'
cgroup_xattr  869  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.sectors'
cgroup_xattr  870  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.sectors'
cgroup_xattr  871  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  872  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  873  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  874  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  875  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.move_charge_at_immigrate'
cgroup_xattr  876  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_queued'
cgroup_xattr  877  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_queued'
cgroup_xattr  878  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_queued'
cgroup_xattr  879  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_queued'
cgroup_xattr  880  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_queued'
cgroup_xattr  881  TPASS  :  Expect: can't set xattr key 'security.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  882  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  883  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  884  TPASS  :  Expect: can't set xattr key 'user.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  885  TPASS  :  Expect: can't set xattr key 'system.' to file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr  886  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  887  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  888  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  889  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  890  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.soft_limit_in_bytes'
cgroup_xattr  891  TPASS  :  Expect: can't set xattr key 'security.' to file 'cpuacct.usage'
cgroup_xattr  892  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'cpuacct.usage'
cgroup_xattr  893  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'cpuacct.usage'
cgroup_xattr  894  TPASS  :  Expect: can't set xattr key 'user.' to file 'cpuacct.usage'
cgroup_xattr  895  TPASS  :  Expect: can't set xattr key 'system.' to file 'cpuacct.usage'
cgroup_xattr  896  TPASS  :  Expect: can't set xattr key 'security.' to file 'blkio.io_queued_recursive'
cgroup_xattr  897  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'blkio.io_queued_recursive'
cgroup_xattr  898  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'blkio.io_queued_recursive'
cgroup_xattr  899  TPASS  :  Expect: can't set xattr key 'user.' to file 'blkio.io_queued_recursive'
cgroup_xattr  900  TPASS  :  Expect: can't set xattr key 'system.' to file 'blkio.io_queued_recursive'
cgroup_xattr  901  TPASS  :  Expect: can't set xattr key 'security.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  902  TPASS  :  Expect: can set xattr key 'trusted.test' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  903  TPASS  :  Expect: can't set xattr key 'trusted.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  904  TPASS  :  Expect: can't set xattr key 'user.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr  905  TPASS  :  Expect: can't set xattr key 'system.' to file 'memory.kmem.tcp.failcnt'
cgroup_xattr    0  TINFO  :  In dir .
cgroup_xattr  906  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu'
cgroup_xattr  907  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu'
cgroup_xattr  908  TPASS  :  Expect: values equal
cgroup_xattr  909  TPASS  :  Expect: can't read xattr trusted. of file 'cpuacct.usage_percpu'
cgroup_xattr  910  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu'
cgroup_xattr  911  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu'
cgroup_xattr    0  TINFO  :  In dir test
cgroup_xattr  912  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu'
cgroup_xattr  913  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu'
cgroup_xattr  914  TPASS  :  Expect: values equal
cgroup_xattr  915  TPASS  :  Expect: can't read xattr trusted. of file 'cpuacct.usage_percpu'
cgroup_xattr  916  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu'
cgroup_xattr  917  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu'
cgroup_xattr  918  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.io_serviced'
cgroup_xattr  919  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.io_serviced'
cgroup_xattr  920  TPASS  :  Expect: values equal
cgroup_xattr  921  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.throttle.io_serviced'
cgroup_xattr  922  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.io_serviced'
cgroup_xattr  923  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.io_serviced'
cgroup_xattr  924  TPASS  :  Expect: can't read xattr security. of file 'memory.pressure_level'
cgroup_xattr  925  TPASS  :  Expect: can read xattr trusted.test of file 'memory.pressure_level'
cgroup_xattr  926  TPASS  :  Expect: values equal
cgroup_xattr  927  TPASS  :  Expect: can't read xattr trusted. of file 'memory.pressure_level'
cgroup_xattr  928  TPASS  :  Expect: can't read xattr user. of file 'memory.pressure_level'
cgroup_xattr  929  TPASS  :  Expect: can't read xattr system. of file 'memory.pressure_level'
cgroup_xattr  930  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr  931  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_bytes_recursive'
cgroup_xattr  932  TPASS  :  Expect: values equal
cgroup_xattr  933  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr  934  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr  935  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr  936  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  937  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  938  TPASS  :  Expect: values equal
cgroup_xattr  939  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  940  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  941  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr  942  TPASS  :  Expect: can't read xattr security. of file 'memory.use_hierarchy'
cgroup_xattr  943  TPASS  :  Expect: can read xattr trusted.test of file 'memory.use_hierarchy'
cgroup_xattr  944  TPASS  :  Expect: values equal
cgroup_xattr  945  TPASS  :  Expect: can't read xattr trusted. of file 'memory.use_hierarchy'
cgroup_xattr  946  TPASS  :  Expect: can't read xattr user. of file 'memory.use_hierarchy'
cgroup_xattr  947  TPASS  :  Expect: can't read xattr system. of file 'memory.use_hierarchy'
cgroup_xattr  948  TPASS  :  Expect: can't read xattr security. of file 'memory.swappiness'
cgroup_xattr  949  TPASS  :  Expect: can read xattr trusted.test of file 'memory.swappiness'
cgroup_xattr  950  TPASS  :  Expect: values equal
cgroup_xattr  951  TPASS  :  Expect: can't read xattr trusted. of file 'memory.swappiness'
cgroup_xattr  952  TPASS  :  Expect: can't read xattr user. of file 'memory.swappiness'
cgroup_xattr  953  TPASS  :  Expect: can't read xattr system. of file 'memory.swappiness'
cgroup_xattr  954  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_serviced_recursive'
cgroup_xattr  955  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_serviced_recursive'
cgroup_xattr  956  TPASS  :  Expect: values equal
cgroup_xattr  957  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_serviced_recursive'
cgroup_xattr  958  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_serviced_recursive'
cgroup_xattr  959  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_serviced_recursive'
cgroup_xattr  960  TPASS  :  Expect: can't read xattr security. of file 'blkio.time'
cgroup_xattr  961  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.time'
cgroup_xattr  962  TPASS  :  Expect: values equal
cgroup_xattr  963  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.time'
cgroup_xattr  964  TPASS  :  Expect: can't read xattr user. of file 'blkio.time'
cgroup_xattr  965  TPASS  :  Expect: can't read xattr system. of file 'blkio.time'
cgroup_xattr  966  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  967  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  968  TPASS  :  Expect: values equal
cgroup_xattr  969  TPASS  :  Expect: can't read xattr trusted. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  970  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  971  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr  972  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mem_hardwall'
cgroup_xattr  973  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mem_hardwall'
cgroup_xattr  974  TPASS  :  Expect: values equal
cgroup_xattr  975  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.mem_hardwall'
cgroup_xattr  976  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mem_hardwall'
cgroup_xattr  977  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mem_hardwall'
cgroup_xattr  978  TPASS  :  Expect: can't read xattr security. of file 'tasks'
cgroup_xattr  979  TPASS  :  Expect: can read xattr trusted.test of file 'tasks'
cgroup_xattr  980  TPASS  :  Expect: values equal
cgroup_xattr  981  TPASS  :  Expect: can't read xattr trusted. of file 'tasks'
cgroup_xattr  982  TPASS  :  Expect: can't read xattr user. of file 'tasks'
cgroup_xattr  983  TPASS  :  Expect: can't read xattr system. of file 'tasks'
cgroup_xattr  984  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_serviced'
cgroup_xattr  985  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_serviced'
cgroup_xattr  986  TPASS  :  Expect: values equal
cgroup_xattr  987  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_serviced'
cgroup_xattr  988  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_serviced'
cgroup_xattr  989  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_serviced'
cgroup_xattr  990  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr  991  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu_sys'
cgroup_xattr  992  TPASS  :  Expect: values equal
cgroup_xattr  993  TPASS  :  Expect: can't read xattr trusted. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr  994  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr  995  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr  996  TPASS  :  Expect: can't read xattr security. of file 'blkio.reset_stats'
cgroup_xattr  997  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.reset_stats'
cgroup_xattr  998  TPASS  :  Expect: values equal
cgroup_xattr  999  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.reset_stats'
cgroup_xattr 1000  TPASS  :  Expect: can't read xattr user. of file 'blkio.reset_stats'
cgroup_xattr 1001  TPASS  :  Expect: can't read xattr system. of file 'blkio.reset_stats'
cgroup_xattr 1002  TPASS  :  Expect: can't read xattr security. of file 'memory.limit_in_bytes'
cgroup_xattr 1003  TPASS  :  Expect: can read xattr trusted.test of file 'memory.limit_in_bytes'
cgroup_xattr 1004  TPASS  :  Expect: values equal
cgroup_xattr 1005  TPASS  :  Expect: can't read xattr trusted. of file 'memory.limit_in_bytes'
cgroup_xattr 1006  TPASS  :  Expect: can't read xattr user. of file 'memory.limit_in_bytes'
cgroup_xattr 1007  TPASS  :  Expect: can't read xattr system. of file 'memory.limit_in_bytes'
cgroup_xattr 1008  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_wait_time'
cgroup_xattr 1009  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_wait_time'
cgroup_xattr 1010  TPASS  :  Expect: values equal
cgroup_xattr 1011  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_wait_time'
cgroup_xattr 1012  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_wait_time'
cgroup_xattr 1013  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_wait_time'
cgroup_xattr 1014  TPASS  :  Expect: can't read xattr security. of file 'blkio.weight'
cgroup_xattr 1015  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.weight'
cgroup_xattr 1016  TPASS  :  Expect: values equal
cgroup_xattr 1017  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.weight'
cgroup_xattr 1018  TPASS  :  Expect: can't read xattr user. of file 'blkio.weight'
cgroup_xattr 1019  TPASS  :  Expect: can't read xattr system. of file 'blkio.weight'
cgroup_xattr 1020  TPASS  :  Expect: can't read xattr security. of file 'cgroup.procs'
cgroup_xattr 1021  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.procs'
cgroup_xattr 1022  TPASS  :  Expect: values equal
cgroup_xattr 1023  TPASS  :  Expect: can't read xattr trusted. of file 'cgroup.procs'
cgroup_xattr 1024  TPASS  :  Expect: can't read xattr user. of file 'cgroup.procs'
cgroup_xattr 1025  TPASS  :  Expect: can't read xattr system. of file 'cgroup.procs'
cgroup_xattr 1026  TPASS  :  Expect: can't read xattr security. of file 'blkio.leaf_weight_device'
cgroup_xattr 1027  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.leaf_weight_device'
cgroup_xattr 1028  TPASS  :  Expect: values equal
cgroup_xattr 1029  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.leaf_weight_device'
cgroup_xattr 1030  TPASS  :  Expect: can't read xattr user. of file 'blkio.leaf_weight_device'
cgroup_xattr 1031  TPASS  :  Expect: can't read xattr system. of file 'blkio.leaf_weight_device'
cgroup_xattr 1032  TPASS  :  Expect: can't read xattr security. of file 'devices.allow'
cgroup_xattr 1033  TPASS  :  Expect: can read xattr trusted.test of file 'devices.allow'
cgroup_xattr 1034  TPASS  :  Expect: values equal
cgroup_xattr 1035  TPASS  :  Expect: can't read xattr trusted. of file 'devices.allow'
cgroup_xattr 1036  TPASS  :  Expect: can't read xattr user. of file 'devices.allow'
cgroup_xattr 1037  TPASS  :  Expect: can't read xattr system. of file 'devices.allow'
cgroup_xattr 1038  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1039  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1040  TPASS  :  Expect: values equal
cgroup_xattr 1041  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1042  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1043  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1044  TPASS  :  Expect: can't read xattr security. of file 'cpu.rt_runtime_us'
cgroup_xattr 1045  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.rt_runtime_us'
cgroup_xattr 1046  TPASS  :  Expect: values equal
cgroup_xattr 1047  TPASS  :  Expect: can't read xattr trusted. of file 'cpu.rt_runtime_us'
cgroup_xattr 1048  TPASS  :  Expect: can't read xattr user. of file 'cpu.rt_runtime_us'
cgroup_xattr 1049  TPASS  :  Expect: can't read xattr system. of file 'cpu.rt_runtime_us'
cgroup_xattr 1050  TPASS  :  Expect: can't read xattr security. of file 'cpu.shares'
cgroup_xattr 1051  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.shares'
cgroup_xattr 1052  TPASS  :  Expect: values equal
cgroup_xattr 1053  TPASS  :  Expect: can't read xattr trusted. of file 'cpu.shares'
cgroup_xattr 1054  TPASS  :  Expect: can't read xattr user. of file 'cpu.shares'
cgroup_xattr 1055  TPASS  :  Expect: can't read xattr system. of file 'cpu.shares'
cgroup_xattr 1056  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_merged_recursive'
cgroup_xattr 1057  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_merged_recursive'
cgroup_xattr 1058  TPASS  :  Expect: values equal
cgroup_xattr 1059  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_merged_recursive'
cgroup_xattr 1060  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_merged_recursive'
cgroup_xattr 1061  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_merged_recursive'
cgroup_xattr 1062  TPASS  :  Expect: can't read xattr security. of file 'freezer.state'
cgroup_xattr 1063  TPASS  :  Expect: can read xattr trusted.test of file 'freezer.state'
cgroup_xattr 1064  TPASS  :  Expect: values equal
cgroup_xattr 1065  TPASS  :  Expect: can't read xattr trusted. of file 'freezer.state'
cgroup_xattr 1066  TPASS  :  Expect: can't read xattr user. of file 'freezer.state'
cgroup_xattr 1067  TPASS  :  Expect: can't read xattr system. of file 'freezer.state'
cgroup_xattr 1068  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1069  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1070  TPASS  :  Expect: values equal
cgroup_xattr 1071  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1072  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1073  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1074  TPASS  :  Expect: can't read xattr security. of file 'memory.usage_in_bytes'
cgroup_xattr 1075  TPASS  :  Expect: can read xattr trusted.test of file 'memory.usage_in_bytes'
cgroup_xattr 1076  TPASS  :  Expect: values equal
cgroup_xattr 1077  TPASS  :  Expect: can't read xattr trusted. of file 'memory.usage_in_bytes'
cgroup_xattr 1078  TPASS  :  Expect: can't read xattr user. of file 'memory.usage_in_bytes'
cgroup_xattr 1079  TPASS  :  Expect: can't read xattr system. of file 'memory.usage_in_bytes'
cgroup_xattr 1080  TPASS  :  Expect: can't read xattr security. of file 'blkio.leaf_weight'
cgroup_xattr 1081  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.leaf_weight'
cgroup_xattr 1082  TPASS  :  Expect: values equal
cgroup_xattr 1083  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.leaf_weight'
cgroup_xattr 1084  TPASS  :  Expect: can't read xattr user. of file 'blkio.leaf_weight'
cgroup_xattr 1085  TPASS  :  Expect: can't read xattr system. of file 'blkio.leaf_weight'
cgroup_xattr 1086  TPASS  :  Expect: can't read xattr security. of file 'blkio.sectors_recursive'
cgroup_xattr 1087  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.sectors_recursive'
cgroup_xattr 1088  TPASS  :  Expect: values equal
cgroup_xattr 1089  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.sectors_recursive'
cgroup_xattr 1090  TPASS  :  Expect: can't read xattr user. of file 'blkio.sectors_recursive'
cgroup_xattr 1091  TPASS  :  Expect: can't read xattr system. of file 'blkio.sectors_recursive'
cgroup_xattr 1092  TPASS  :  Expect: can't read xattr security. of file 'cpuset.cpus'
cgroup_xattr 1093  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.cpus'
cgroup_xattr 1094  TPASS  :  Expect: values equal
cgroup_xattr 1095  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.cpus'
cgroup_xattr 1096  TPASS  :  Expect: can't read xattr user. of file 'cpuset.cpus'
cgroup_xattr 1097  TPASS  :  Expect: can't read xattr system. of file 'cpuset.cpus'
cgroup_xattr 1098  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mems'
cgroup_xattr 1099  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mems'
cgroup_xattr 1100  TPASS  :  Expect: values equal
cgroup_xattr 1101  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.mems'
cgroup_xattr 1102  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mems'
cgroup_xattr 1103  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mems'
cgroup_xattr 1104  TPASS  :  Expect: can't read xattr security. of file 'blkio.weight_device'
cgroup_xattr 1105  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.weight_device'
cgroup_xattr 1106  TPASS  :  Expect: values equal
cgroup_xattr 1107  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.weight_device'
cgroup_xattr 1108  TPASS  :  Expect: can't read xattr user. of file 'blkio.weight_device'
cgroup_xattr 1109  TPASS  :  Expect: can't read xattr system. of file 'blkio.weight_device'
cgroup_xattr 1110  TPASS  :  Expect: can't read xattr security. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1111  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1112  TPASS  :  Expect: values equal
cgroup_xattr 1113  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1114  TPASS  :  Expect: can't read xattr user. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1115  TPASS  :  Expect: can't read xattr system. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1116  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_pressure'
cgroup_xattr 1117  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_pressure'
cgroup_xattr 1118  TPASS  :  Expect: values equal
cgroup_xattr 1119  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.memory_pressure'
cgroup_xattr 1120  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_pressure'
cgroup_xattr 1121  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_pressure'
cgroup_xattr 1122  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_sys'
cgroup_xattr 1123  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_sys'
cgroup_xattr 1124  TPASS  :  Expect: values equal
cgroup_xattr 1125  TPASS  :  Expect: can't read xattr trusted. of file 'cpuacct.usage_sys'
cgroup_xattr 1126  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_sys'
cgroup_xattr 1127  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_sys'
cgroup_xattr 1128  TPASS  :  Expect: can't read xattr security. of file 'cpu.cfs_quota_us'
cgroup_xattr 1129  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.cfs_quota_us'
cgroup_xattr 1130  TPASS  :  Expect: values equal
cgroup_xattr 1131  TPASS  :  Expect: can't read xattr trusted. of file 'cpu.cfs_quota_us'
cgroup_xattr 1132  TPASS  :  Expect: can't read xattr user. of file 'cpu.cfs_quota_us'
cgroup_xattr 1133  TPASS  :  Expect: can't read xattr system. of file 'cpu.cfs_quota_us'
cgroup_xattr 1134  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_user'
cgroup_xattr 1135  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_user'
cgroup_xattr 1136  TPASS  :  Expect: values equal
cgroup_xattr 1137  TPASS  :  Expect: can't read xattr trusted. of file 'cpuacct.usage_user'
cgroup_xattr 1138  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_user'
cgroup_xattr 1139  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_user'
cgroup_xattr 1140  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_spread_page'
cgroup_xattr 1141  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_spread_page'
cgroup_xattr 1142  TPASS  :  Expect: values equal
cgroup_xattr 1143  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.memory_spread_page'
cgroup_xattr 1144  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_spread_page'
cgroup_xattr 1145  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_spread_page'
cgroup_xattr 1146  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1147  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_spread_slab'
cgroup_xattr 1148  TPASS  :  Expect: values equal
cgroup_xattr 1149  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1150  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1151  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1152  TPASS  :  Expect: can't read xattr security. of file 'memory.failcnt'
cgroup_xattr 1153  TPASS  :  Expect: can read xattr trusted.test of file 'memory.failcnt'
cgroup_xattr 1154  TPASS  :  Expect: values equal
cgroup_xattr 1155  TPASS  :  Expect: can't read xattr trusted. of file 'memory.failcnt'
cgroup_xattr 1156  TPASS  :  Expect: can't read xattr user. of file 'memory.failcnt'
cgroup_xattr 1157  TPASS  :  Expect: can't read xattr system. of file 'memory.failcnt'
cgroup_xattr 1158  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1159  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_time_recursive'
cgroup_xattr 1160  TPASS  :  Expect: values equal
cgroup_xattr 1161  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1162  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1163  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1164  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1165  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1166  TPASS  :  Expect: values equal
cgroup_xattr 1167  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1168  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1169  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1170  TPASS  :  Expect: can't read xattr security. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1171  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.cpu_exclusive'
cgroup_xattr 1172  TPASS  :  Expect: values equal
cgroup_xattr 1173  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1174  TPASS  :  Expect: can't read xattr user. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1175  TPASS  :  Expect: can't read xattr system. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1176  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1177  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1178  TPASS  :  Expect: values equal
cgroup_xattr 1179  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1180  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1181  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1182  TPASS  :  Expect: can't read xattr security. of file 'memory.force_empty'
cgroup_xattr 1183  TPASS  :  Expect: can read xattr trusted.test of file 'memory.force_empty'
cgroup_xattr 1184  TPASS  :  Expect: values equal
cgroup_xattr 1185  TPASS  :  Expect: can't read xattr trusted. of file 'memory.force_empty'
cgroup_xattr 1186  TPASS  :  Expect: can't read xattr user. of file 'memory.force_empty'
cgroup_xattr 1187  TPASS  :  Expect: can't read xattr system. of file 'memory.force_empty'
cgroup_xattr 1188  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1189  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1190  TPASS  :  Expect: values equal
cgroup_xattr 1191  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1192  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1193  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1194  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_bytes'
cgroup_xattr 1195  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_bytes'
cgroup_xattr 1196  TPASS  :  Expect: values equal
cgroup_xattr 1197  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_service_bytes'
cgroup_xattr 1198  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_bytes'
cgroup_xattr 1199  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_bytes'
cgroup_xattr 1200  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mem_exclusive'
cgroup_xattr 1201  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mem_exclusive'
cgroup_xattr 1202  TPASS  :  Expect: values equal
cgroup_xattr 1203  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.mem_exclusive'
cgroup_xattr 1204  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mem_exclusive'
cgroup_xattr 1205  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mem_exclusive'
cgroup_xattr 1206  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.stat'
cgroup_xattr 1207  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.stat'
cgroup_xattr 1208  TPASS  :  Expect: values equal
cgroup_xattr 1209  TPASS  :  Expect: can't read xattr trusted. of file 'cpuacct.stat'
cgroup_xattr 1210  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.stat'
cgroup_xattr 1211  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.stat'
cgroup_xattr 1212  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.slabinfo'
cgroup_xattr 1213  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.slabinfo'
cgroup_xattr 1214  TPASS  :  Expect: values equal
cgroup_xattr 1215  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.slabinfo'
cgroup_xattr 1216  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.slabinfo'
cgroup_xattr 1217  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.slabinfo'
cgroup_xattr 1218  TPASS  :  Expect: can't read xattr security. of file 'cpu.stat'
cgroup_xattr 1219  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.stat'
cgroup_xattr 1220  TPASS  :  Expect: values equal
cgroup_xattr 1221  TPASS  :  Expect: can't read xattr trusted. of file 'cpu.stat'
cgroup_xattr 1222  TPASS  :  Expect: can't read xattr user. of file 'cpu.stat'
cgroup_xattr 1223  TPASS  :  Expect: can't read xattr system. of file 'cpu.stat'
cgroup_xattr 1224  TPASS  :  Expect: can't read xattr security. of file 'cpuset.effective_cpus'
cgroup_xattr 1225  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.effective_cpus'
cgroup_xattr 1226  TPASS  :  Expect: values equal
cgroup_xattr 1227  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.effective_cpus'
cgroup_xattr 1228  TPASS  :  Expect: can't read xattr user. of file 'cpuset.effective_cpus'
cgroup_xattr 1229  TPASS  :  Expect: can't read xattr system. of file 'cpuset.effective_cpus'
cgroup_xattr 1230  TPASS  :  Expect: can't read xattr security. of file 'cpuset.effective_mems'
cgroup_xattr 1231  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.effective_mems'
cgroup_xattr 1232  TPASS  :  Expect: values equal
cgroup_xattr 1233  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.effective_mems'
cgroup_xattr 1234  TPASS  :  Expect: can't read xattr user. of file 'cpuset.effective_mems'
cgroup_xattr 1235  TPASS  :  Expect: can't read xattr system. of file 'cpuset.effective_mems'
cgroup_xattr 1236  TPASS  :  Expect: can't read xattr security. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1237  TPASS  :  Expect: can read xattr trusted.test of file 'memory.max_usage_in_bytes'
cgroup_xattr 1238  TPASS  :  Expect: values equal
cgroup_xattr 1239  TPASS  :  Expect: can't read xattr trusted. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1240  TPASS  :  Expect: can't read xattr user. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1241  TPASS  :  Expect: can't read xattr system. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1242  TPASS  :  Expect: can't read xattr security. of file 'memory.numa_stat'
cgroup_xattr 1243  TPASS  :  Expect: can read xattr trusted.test of file 'memory.numa_stat'
cgroup_xattr 1244  TPASS  :  Expect: values equal
cgroup_xattr 1245  TPASS  :  Expect: can't read xattr trusted. of file 'memory.numa_stat'
cgroup_xattr 1246  TPASS  :  Expect: can't read xattr user. of file 'memory.numa_stat'
cgroup_xattr 1247  TPASS  :  Expect: can't read xattr system. of file 'memory.numa_stat'
cgroup_xattr 1248  TPASS  :  Expect: can't read xattr security. of file 'cgroup.clone_children'
cgroup_xattr 1249  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.clone_children'
cgroup_xattr 1250  TPASS  :  Expect: values equal
cgroup_xattr 1251  TPASS  :  Expect: can't read xattr trusted. of file 'cgroup.clone_children'
cgroup_xattr 1252  TPASS  :  Expect: can't read xattr user. of file 'cgroup.clone_children'
cgroup_xattr 1253  TPASS  :  Expect: can't read xattr system. of file 'cgroup.clone_children'
cgroup_xattr 1254  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1255  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1256  TPASS  :  Expect: values equal
cgroup_xattr 1257  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1258  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1259  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1260  TPASS  :  Expect: can't read xattr security. of file 'freezer.parent_freezing'
cgroup_xattr 1261  TPASS  :  Expect: can read xattr trusted.test of file 'freezer.parent_freezing'
cgroup_xattr 1262  TPASS  :  Expect: values equal
cgroup_xattr 1263  TPASS  :  Expect: can't read xattr trusted. of file 'freezer.parent_freezing'
cgroup_xattr 1264  TPASS  :  Expect: can't read xattr user. of file 'freezer.parent_freezing'
cgroup_xattr 1265  TPASS  :  Expect: can't read xattr system. of file 'freezer.parent_freezing'
cgroup_xattr 1266  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1267  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1268  TPASS  :  Expect: values equal
cgroup_xattr 1269  TPASS  :  Expect: can't read xattr trusted. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1270  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1271  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1272  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1273  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1274  TPASS  :  Expect: values equal
cgroup_xattr 1275  TPASS  :  Expect: can't read xattr trusted. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1276  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1277  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1278  TPASS  :  Expect: can't read xattr security. of file 'cpuset.sched_load_balance'
cgroup_xattr 1279  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.sched_load_balance'
cgroup_xattr 1280  TPASS  :  Expect: values equal
cgroup_xattr 1281  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.sched_load_balance'
cgroup_xattr 1282  TPASS  :  Expect: can't read xattr user. of file 'cpuset.sched_load_balance'
cgroup_xattr 1283  TPASS  :  Expect: can't read xattr system. of file 'cpuset.sched_load_balance'
cgroup_xattr 1284  TPASS  :  Expect: can't read xattr security. of file 'cpu.cfs_period_us'
cgroup_xattr 1285  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.cfs_period_us'
cgroup_xattr 1286  TPASS  :  Expect: values equal
cgroup_xattr 1287  TPASS  :  Expect: can't read xattr trusted. of file 'cpu.cfs_period_us'
cgroup_xattr 1288  TPASS  :  Expect: can't read xattr user. of file 'cpu.cfs_period_us'
cgroup_xattr 1289  TPASS  :  Expect: can't read xattr system. of file 'cpu.cfs_period_us'
cgroup_xattr 1290  TPASS  :  Expect: can't read xattr security. of file 'memory.oom_control'
cgroup_xattr 1291  TPASS  :  Expect: can read xattr trusted.test of file 'memory.oom_control'
cgroup_xattr 1292  TPASS  :  Expect: values equal
cgroup_xattr 1293  TPASS  :  Expect: can't read xattr trusted. of file 'memory.oom_control'
cgroup_xattr 1294  TPASS  :  Expect: can't read xattr user. of file 'memory.oom_control'
cgroup_xattr 1295  TPASS  :  Expect: can't read xattr system. of file 'memory.oom_control'
cgroup_xattr 1296  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1297  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1298  TPASS  :  Expect: values equal
cgroup_xattr 1299  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1300  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1301  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1302  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.failcnt'
cgroup_xattr 1303  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.failcnt'
cgroup_xattr 1304  TPASS  :  Expect: values equal
cgroup_xattr 1305  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.failcnt'
cgroup_xattr 1306  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.failcnt'
cgroup_xattr 1307  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.failcnt'
cgroup_xattr 1308  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1309  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1310  TPASS  :  Expect: values equal
cgroup_xattr 1311  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1312  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1313  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1314  TPASS  :  Expect: can't read xattr security. of file 'cpu.rt_period_us'
cgroup_xattr 1315  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.rt_period_us'
cgroup_xattr 1316  TPASS  :  Expect: values equal
cgroup_xattr 1317  TPASS  :  Expect: can't read xattr trusted. of file 'cpu.rt_period_us'
cgroup_xattr 1318  TPASS  :  Expect: can't read xattr user. of file 'cpu.rt_period_us'
cgroup_xattr 1319  TPASS  :  Expect: can't read xattr system. of file 'cpu.rt_period_us'
cgroup_xattr 1320  TPASS  :  Expect: can't read xattr security. of file 'notify_on_release'
cgroup_xattr 1321  TPASS  :  Expect: can read xattr trusted.test of file 'notify_on_release'
cgroup_xattr 1322  TPASS  :  Expect: values equal
cgroup_xattr 1323  TPASS  :  Expect: can't read xattr trusted. of file 'notify_on_release'
cgroup_xattr 1324  TPASS  :  Expect: can't read xattr user. of file 'notify_on_release'
cgroup_xattr 1325  TPASS  :  Expect: can't read xattr system. of file 'notify_on_release'
cgroup_xattr 1326  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_time'
cgroup_xattr 1327  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_time'
cgroup_xattr 1328  TPASS  :  Expect: values equal
cgroup_xattr 1329  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_service_time'
cgroup_xattr 1330  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_time'
cgroup_xattr 1331  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_time'
cgroup_xattr 1332  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1333  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1334  TPASS  :  Expect: values equal
cgroup_xattr 1335  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1336  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1337  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1338  TPASS  :  Expect: can't read xattr security. of file 'freezer.self_freezing'
cgroup_xattr 1339  TPASS  :  Expect: can read xattr trusted.test of file 'freezer.self_freezing'
cgroup_xattr 1340  TPASS  :  Expect: values equal
cgroup_xattr 1341  TPASS  :  Expect: can't read xattr trusted. of file 'freezer.self_freezing'
cgroup_xattr 1342  TPASS  :  Expect: can't read xattr user. of file 'freezer.self_freezing'
cgroup_xattr 1343  TPASS  :  Expect: can't read xattr system. of file 'freezer.self_freezing'
cgroup_xattr 1344  TPASS  :  Expect: can't read xattr security. of file 'memory.stat'
cgroup_xattr 1345  TPASS  :  Expect: can read xattr trusted.test of file 'memory.stat'
cgroup_xattr 1346  TPASS  :  Expect: values equal
cgroup_xattr 1347  TPASS  :  Expect: can't read xattr trusted. of file 'memory.stat'
cgroup_xattr 1348  TPASS  :  Expect: can't read xattr user. of file 'memory.stat'
cgroup_xattr 1349  TPASS  :  Expect: can't read xattr system. of file 'memory.stat'
cgroup_xattr 1350  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_migrate'
cgroup_xattr 1351  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_migrate'
cgroup_xattr 1352  TPASS  :  Expect: values equal
cgroup_xattr 1353  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.memory_migrate'
cgroup_xattr 1354  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_migrate'
cgroup_xattr 1355  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_migrate'
cgroup_xattr 1356  TPASS  :  Expect: can't read xattr security. of file 'devices.deny'
cgroup_xattr 1357  TPASS  :  Expect: can read xattr trusted.test of file 'devices.deny'
cgroup_xattr 1358  TPASS  :  Expect: values equal
cgroup_xattr 1359  TPASS  :  Expect: can't read xattr trusted. of file 'devices.deny'
cgroup_xattr 1360  TPASS  :  Expect: can't read xattr user. of file 'devices.deny'
cgroup_xattr 1361  TPASS  :  Expect: can't read xattr system. of file 'devices.deny'
cgroup_xattr 1362  TPASS  :  Expect: can't read xattr security. of file 'devices.list'
cgroup_xattr 1363  TPASS  :  Expect: can read xattr trusted.test of file 'devices.list'
cgroup_xattr 1364  TPASS  :  Expect: values equal
cgroup_xattr 1365  TPASS  :  Expect: can't read xattr trusted. of file 'devices.list'
cgroup_xattr 1366  TPASS  :  Expect: can't read xattr user. of file 'devices.list'
cgroup_xattr 1367  TPASS  :  Expect: can't read xattr system. of file 'devices.list'
cgroup_xattr 1368  TPASS  :  Expect: can't read xattr security. of file 'cgroup.event_control'
cgroup_xattr 1369  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.event_control'
cgroup_xattr 1370  TPASS  :  Expect: values equal
cgroup_xattr 1371  TPASS  :  Expect: can't read xattr trusted. of file 'cgroup.event_control'
cgroup_xattr 1372  TPASS  :  Expect: can't read xattr user. of file 'cgroup.event_control'
cgroup_xattr 1373  TPASS  :  Expect: can't read xattr system. of file 'cgroup.event_control'
cgroup_xattr 1374  TPASS  :  Expect: can't read xattr security. of file 'blkio.time_recursive'
cgroup_xattr 1375  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.time_recursive'
cgroup_xattr 1376  TPASS  :  Expect: values equal
cgroup_xattr 1377  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.time_recursive'
cgroup_xattr 1378  TPASS  :  Expect: can't read xattr user. of file 'blkio.time_recursive'
cgroup_xattr 1379  TPASS  :  Expect: can't read xattr system. of file 'blkio.time_recursive'
cgroup_xattr 1380  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_merged'
cgroup_xattr 1381  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_merged'
cgroup_xattr 1382  TPASS  :  Expect: values equal
cgroup_xattr 1383  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_merged'
cgroup_xattr 1384  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_merged'
cgroup_xattr 1385  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_merged'
cgroup_xattr 1386  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1387  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1388  TPASS  :  Expect: values equal
cgroup_xattr 1389  TPASS  :  Expect: can't read xattr trusted. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1390  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1391  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1392  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1393  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1394  TPASS  :  Expect: values equal
cgroup_xattr 1395  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1396  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1397  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1398  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1399  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1400  TPASS  :  Expect: values equal
cgroup_xattr 1401  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1402  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1403  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1404  TPASS  :  Expect: can't read xattr security. of file 'blkio.sectors'
cgroup_xattr 1405  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.sectors'
cgroup_xattr 1406  TPASS  :  Expect: values equal
cgroup_xattr 1407  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.sectors'
cgroup_xattr 1408  TPASS  :  Expect: can't read xattr user. of file 'blkio.sectors'
cgroup_xattr 1409  TPASS  :  Expect: can't read xattr system. of file 'blkio.sectors'
cgroup_xattr 1410  TPASS  :  Expect: can't read xattr security. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1411  TPASS  :  Expect: can read xattr trusted.test of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1412  TPASS  :  Expect: values equal
cgroup_xattr 1413  TPASS  :  Expect: can't read xattr trusted. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1414  TPASS  :  Expect: can't read xattr user. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1415  TPASS  :  Expect: can't read xattr system. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1416  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_queued'
cgroup_xattr 1417  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_queued'
cgroup_xattr 1418  TPASS  :  Expect: values equal
cgroup_xattr 1419  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_queued'
cgroup_xattr 1420  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_queued'
cgroup_xattr 1421  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_queued'
cgroup_xattr 1422  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1423  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1424  TPASS  :  Expect: values equal
cgroup_xattr 1425  TPASS  :  Expect: can't read xattr trusted. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1426  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1427  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1428  TPASS  :  Expect: can't read xattr security. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1429  TPASS  :  Expect: can read xattr trusted.test of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1430  TPASS  :  Expect: values equal
cgroup_xattr 1431  TPASS  :  Expect: can't read xattr trusted. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1432  TPASS  :  Expect: can't read xattr user. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1433  TPASS  :  Expect: can't read xattr system. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1434  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage'
cgroup_xattr 1435  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage'
cgroup_xattr 1436  TPASS  :  Expect: values equal
cgroup_xattr 1437  TPASS  :  Expect: can't read xattr trusted. of file 'cpuacct.usage'
cgroup_xattr 1438  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage'
cgroup_xattr 1439  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage'
cgroup_xattr 1440  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_queued_recursive'
cgroup_xattr 1441  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_queued_recursive'
cgroup_xattr 1442  TPASS  :  Expect: values equal
cgroup_xattr 1443  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_queued_recursive'
cgroup_xattr 1444  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_queued_recursive'
cgroup_xattr 1445  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_queued_recursive'
cgroup_xattr 1446  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1447  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1448  TPASS  :  Expect: values equal
cgroup_xattr 1449  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1450  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1451  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr    0  TINFO  :  In dir .
cgroup_xattr 1452  TPASS  :  Expect: can't read xattr security. of file 'test'
cgroup_xattr 1453  TPASS  :  Expect: can read xattr trusted.test of file 'test'
cgroup_xattr 1454  TPASS  :  Expect: values equal
cgroup_xattr 1455  TPASS  :  Expect: can't read xattr trusted. of file 'test'
cgroup_xattr 1456  TPASS  :  Expect: can't read xattr user. of file 'test'
cgroup_xattr 1457  TPASS  :  Expect: can't read xattr system. of file 'test'
cgroup_xattr 1458  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.io_serviced'
cgroup_xattr 1459  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.io_serviced'
cgroup_xattr 1460  TPASS  :  Expect: values equal
cgroup_xattr 1461  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.throttle.io_serviced'
cgroup_xattr 1462  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.io_serviced'
cgroup_xattr 1463  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.io_serviced'
cgroup_xattr 1464  TPASS  :  Expect: can't read xattr security. of file 'memory.pressure_level'
cgroup_xattr 1465  TPASS  :  Expect: can read xattr trusted.test of file 'memory.pressure_level'
cgroup_xattr 1466  TPASS  :  Expect: values equal
cgroup_xattr 1467  TPASS  :  Expect: can't read xattr trusted. of file 'memory.pressure_level'
cgroup_xattr 1468  TPASS  :  Expect: can't read xattr user. of file 'memory.pressure_level'
cgroup_xattr 1469  TPASS  :  Expect: can't read xattr system. of file 'memory.pressure_level'
cgroup_xattr 1470  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr 1471  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_bytes_recursive'
cgroup_xattr 1472  TPASS  :  Expect: values equal
cgroup_xattr 1473  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr 1474  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr 1475  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_bytes_recursive'
cgroup_xattr 1476  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr 1477  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr 1478  TPASS  :  Expect: values equal
cgroup_xattr 1479  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr 1480  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr 1481  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.max_usage_in_bytes'
cgroup_xattr 1482  TPASS  :  Expect: can't read xattr security. of file 'memory.use_hierarchy'
cgroup_xattr 1483  TPASS  :  Expect: can read xattr trusted.test of file 'memory.use_hierarchy'
cgroup_xattr 1484  TPASS  :  Expect: values equal
cgroup_xattr 1485  TPASS  :  Expect: can't read xattr trusted. of file 'memory.use_hierarchy'
cgroup_xattr 1486  TPASS  :  Expect: can't read xattr user. of file 'memory.use_hierarchy'
cgroup_xattr 1487  TPASS  :  Expect: can't read xattr system. of file 'memory.use_hierarchy'
cgroup_xattr 1488  TPASS  :  Expect: can't read xattr security. of file 'memory.swappiness'
cgroup_xattr 1489  TPASS  :  Expect: can read xattr trusted.test of file 'memory.swappiness'
cgroup_xattr 1490  TPASS  :  Expect: values equal
cgroup_xattr 1491  TPASS  :  Expect: can't read xattr trusted. of file 'memory.swappiness'
cgroup_xattr 1492  TPASS  :  Expect: can't read xattr user. of file 'memory.swappiness'
cgroup_xattr 1493  TPASS  :  Expect: can't read xattr system. of file 'memory.swappiness'
cgroup_xattr 1494  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_serviced_recursive'
cgroup_xattr 1495  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_serviced_recursive'
cgroup_xattr 1496  TPASS  :  Expect: values equal
cgroup_xattr 1497  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_serviced_recursive'
cgroup_xattr 1498  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_serviced_recursive'
cgroup_xattr 1499  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_serviced_recursive'
cgroup_xattr 1500  TPASS  :  Expect: can't read xattr security. of file 'blkio.time'
cgroup_xattr 1501  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.time'
cgroup_xattr 1502  TPASS  :  Expect: values equal
cgroup_xattr 1503  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.time'
cgroup_xattr 1504  TPASS  :  Expect: can't read xattr user. of file 'blkio.time'
cgroup_xattr 1505  TPASS  :  Expect: can't read xattr system. of file 'blkio.time'
cgroup_xattr 1506  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr 1507  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr 1508  TPASS  :  Expect: values equal
cgroup_xattr 1509  TPASS  :  Expect: can't read xattr trusted. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr 1510  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr 1511  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.usage_in_bytes'
cgroup_xattr 1512  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mem_hardwall'
cgroup_xattr 1513  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mem_hardwall'
cgroup_xattr 1514  TPASS  :  Expect: values equal
cgroup_xattr 1515  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.mem_hardwall'
cgroup_xattr 1516  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mem_hardwall'
cgroup_xattr 1517  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mem_hardwall'
cgroup_xattr 1518  TPASS  :  Expect: can't read xattr security. of file 'tasks'
cgroup_xattr 1519  TPASS  :  Expect: can read xattr trusted.test of file 'tasks'
cgroup_xattr 1520  TPASS  :  Expect: values equal
cgroup_xattr 1521  TPASS  :  Expect: can't read xattr trusted. of file 'tasks'
cgroup_xattr 1522  TPASS  :  Expect: can't read xattr user. of file 'tasks'
cgroup_xattr 1523  TPASS  :  Expect: can't read xattr system. of file 'tasks'
cgroup_xattr 1524  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_serviced'
cgroup_xattr 1525  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_serviced'
cgroup_xattr 1526  TPASS  :  Expect: values equal
cgroup_xattr 1527  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_serviced'
cgroup_xattr 1528  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_serviced'
cgroup_xattr 1529  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_serviced'
cgroup_xattr 1530  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr 1531  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu_sys'
cgroup_xattr 1532  TPASS  :  Expect: values equal
cgroup_xattr 1533  TPASS  :  Expect: can't read xattr trusted. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr 1534  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr 1535  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu_sys'
cgroup_xattr 1536  TPASS  :  Expect: can't read xattr security. of file 'blkio.reset_stats'
cgroup_xattr 1537  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.reset_stats'
cgroup_xattr 1538  TPASS  :  Expect: values equal
cgroup_xattr 1539  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.reset_stats'
cgroup_xattr 1540  TPASS  :  Expect: can't read xattr user. of file 'blkio.reset_stats'
cgroup_xattr 1541  TPASS  :  Expect: can't read xattr system. of file 'blkio.reset_stats'
cgroup_xattr 1542  TPASS  :  Expect: can't read xattr security. of file 'memory.limit_in_bytes'
cgroup_xattr 1543  TPASS  :  Expect: can read xattr trusted.test of file 'memory.limit_in_bytes'
cgroup_xattr 1544  TPASS  :  Expect: values equal
cgroup_xattr 1545  TPASS  :  Expect: can't read xattr trusted. of file 'memory.limit_in_bytes'
cgroup_xattr 1546  TPASS  :  Expect: can't read xattr user. of file 'memory.limit_in_bytes'
cgroup_xattr 1547  TPASS  :  Expect: can't read xattr system. of file 'memory.limit_in_bytes'
cgroup_xattr 1548  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_wait_time'
cgroup_xattr 1549  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_wait_time'
cgroup_xattr 1550  TPASS  :  Expect: values equal
cgroup_xattr 1551  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_wait_time'
cgroup_xattr 1552  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_wait_time'
cgroup_xattr 1553  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_wait_time'
cgroup_xattr 1554  TPASS  :  Expect: can't read xattr security. of file 'blkio.weight'
cgroup_xattr 1555  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.weight'
cgroup_xattr 1556  TPASS  :  Expect: values equal
cgroup_xattr 1557  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.weight'
cgroup_xattr 1558  TPASS  :  Expect: can't read xattr user. of file 'blkio.weight'
cgroup_xattr 1559  TPASS  :  Expect: can't read xattr system. of file 'blkio.weight'
cgroup_xattr 1560  TPASS  :  Expect: can't read xattr security. of file 'cgroup.procs'
cgroup_xattr 1561  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.procs'
cgroup_xattr 1562  TPASS  :  Expect: values equal
cgroup_xattr 1563  TPASS  :  Expect: can't read xattr trusted. of file 'cgroup.procs'
cgroup_xattr 1564  TPASS  :  Expect: can't read xattr user. of file 'cgroup.procs'
cgroup_xattr 1565  TPASS  :  Expect: can't read xattr system. of file 'cgroup.procs'
cgroup_xattr 1566  TPASS  :  Expect: can't read xattr security. of file 'blkio.leaf_weight_device'
cgroup_xattr 1567  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.leaf_weight_device'
cgroup_xattr 1568  TPASS  :  Expect: values equal
cgroup_xattr 1569  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.leaf_weight_device'
cgroup_xattr 1570  TPASS  :  Expect: can't read xattr user. of file 'blkio.leaf_weight_device'
cgroup_xattr 1571  TPASS  :  Expect: can't read xattr system. of file 'blkio.leaf_weight_device'
cgroup_xattr 1572  TPASS  :  Expect: can't read xattr security. of file 'devices.allow'
cgroup_xattr 1573  TPASS  :  Expect: can read xattr trusted.test of file 'devices.allow'
cgroup_xattr 1574  TPASS  :  Expect: values equal
cgroup_xattr 1575  TPASS  :  Expect: can't read xattr trusted. of file 'devices.allow'
cgroup_xattr 1576  TPASS  :  Expect: can't read xattr user. of file 'devices.allow'
cgroup_xattr 1577  TPASS  :  Expect: can't read xattr system. of file 'devices.allow'
cgroup_xattr 1578  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1579  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1580  TPASS  :  Expect: values equal
cgroup_xattr 1581  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1582  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1583  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.read_iops_device'
cgroup_xattr 1584  TPASS  :  Expect: can't read xattr security. of file 'cpu.rt_runtime_us'
cgroup_xattr 1585  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.rt_runtime_us'
cgroup_xattr 1586  TPASS  :  Expect: values equal
cgroup_xattr 1587  TPASS  :  Expect: can't read xattr trusted. of file 'cpu.rt_runtime_us'
cgroup_xattr 1588  TPASS  :  Expect: can't read xattr user. of file 'cpu.rt_runtime_us'
cgroup_xattr 1589  TPASS  :  Expect: can't read xattr system. of file 'cpu.rt_runtime_us'
cgroup_xattr 1590  TPASS  :  Expect: can't read xattr security. of file 'cpu.shares'
cgroup_xattr 1591  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.shares'
cgroup_xattr 1592  TPASS  :  Expect: values equal
cgroup_xattr 1593  TPASS  :  Expect: can't read xattr trusted. of file 'cpu.shares'
cgroup_xattr 1594  TPASS  :  Expect: can't read xattr user. of file 'cpu.shares'
cgroup_xattr 1595  TPASS  :  Expect: can't read xattr system. of file 'cpu.shares'
cgroup_xattr 1596  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_merged_recursive'
cgroup_xattr 1597  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_merged_recursive'
cgroup_xattr 1598  TPASS  :  Expect: values equal
cgroup_xattr 1599  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_merged_recursive'
cgroup_xattr 1600  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_merged_recursive'
cgroup_xattr 1601  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_merged_recursive'
cgroup_xattr 1602  TPASS  :  Expect: can't read xattr security. of file 'release_agent'
cgroup_xattr 1603  TPASS  :  Expect: can read xattr trusted.test of file 'release_agent'
cgroup_xattr 1604  TPASS  :  Expect: values equal
cgroup_xattr 1605  TPASS  :  Expect: can't read xattr trusted. of file 'release_agent'
cgroup_xattr 1606  TPASS  :  Expect: can't read xattr user. of file 'release_agent'
cgroup_xattr 1607  TPASS  :  Expect: can't read xattr system. of file 'release_agent'
cgroup_xattr 1608  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1609  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1610  TPASS  :  Expect: values equal
cgroup_xattr 1611  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1612  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1613  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.write_bps_device'
cgroup_xattr 1614  TPASS  :  Expect: can't read xattr security. of file 'memory.usage_in_bytes'
cgroup_xattr 1615  TPASS  :  Expect: can read xattr trusted.test of file 'memory.usage_in_bytes'
cgroup_xattr 1616  TPASS  :  Expect: values equal
cgroup_xattr 1617  TPASS  :  Expect: can't read xattr trusted. of file 'memory.usage_in_bytes'
cgroup_xattr 1618  TPASS  :  Expect: can't read xattr user. of file 'memory.usage_in_bytes'
cgroup_xattr 1619  TPASS  :  Expect: can't read xattr system. of file 'memory.usage_in_bytes'
cgroup_xattr 1620  TPASS  :  Expect: can't read xattr security. of file 'blkio.leaf_weight'
cgroup_xattr 1621  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.leaf_weight'
cgroup_xattr 1622  TPASS  :  Expect: values equal
cgroup_xattr 1623  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.leaf_weight'
cgroup_xattr 1624  TPASS  :  Expect: can't read xattr user. of file 'blkio.leaf_weight'
cgroup_xattr 1625  TPASS  :  Expect: can't read xattr system. of file 'blkio.leaf_weight'
cgroup_xattr 1626  TPASS  :  Expect: can't read xattr security. of file 'blkio.sectors_recursive'
cgroup_xattr 1627  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.sectors_recursive'
cgroup_xattr 1628  TPASS  :  Expect: values equal
cgroup_xattr 1629  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.sectors_recursive'
cgroup_xattr 1630  TPASS  :  Expect: can't read xattr user. of file 'blkio.sectors_recursive'
cgroup_xattr 1631  TPASS  :  Expect: can't read xattr system. of file 'blkio.sectors_recursive'
cgroup_xattr 1632  TPASS  :  Expect: can't read xattr security. of file 'cpuset.cpus'
cgroup_xattr 1633  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.cpus'
cgroup_xattr 1634  TPASS  :  Expect: values equal
cgroup_xattr 1635  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.cpus'
cgroup_xattr 1636  TPASS  :  Expect: can't read xattr user. of file 'cpuset.cpus'
cgroup_xattr 1637  TPASS  :  Expect: can't read xattr system. of file 'cpuset.cpus'
cgroup_xattr 1638  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mems'
cgroup_xattr 1639  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mems'
cgroup_xattr 1640  TPASS  :  Expect: values equal
cgroup_xattr 1641  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.mems'
cgroup_xattr 1642  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mems'
cgroup_xattr 1643  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mems'
cgroup_xattr 1644  TPASS  :  Expect: can't read xattr security. of file 'blkio.weight_device'
cgroup_xattr 1645  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.weight_device'
cgroup_xattr 1646  TPASS  :  Expect: values equal
cgroup_xattr 1647  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.weight_device'
cgroup_xattr 1648  TPASS  :  Expect: can't read xattr user. of file 'blkio.weight_device'
cgroup_xattr 1649  TPASS  :  Expect: can't read xattr system. of file 'blkio.weight_device'
cgroup_xattr 1650  TPASS  :  Expect: can't read xattr security. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1651  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1652  TPASS  :  Expect: values equal
cgroup_xattr 1653  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1654  TPASS  :  Expect: can't read xattr user. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1655  TPASS  :  Expect: can't read xattr system. of file 'cpuset.sched_relax_domain_level'
cgroup_xattr 1656  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_pressure'
cgroup_xattr 1657  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_pressure'
cgroup_xattr 1658  TPASS  :  Expect: values equal
cgroup_xattr 1659  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.memory_pressure'
cgroup_xattr 1660  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_pressure'
cgroup_xattr 1661  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_pressure'
cgroup_xattr 1662  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_sys'
cgroup_xattr 1663  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_sys'
cgroup_xattr 1664  TPASS  :  Expect: values equal
cgroup_xattr 1665  TPASS  :  Expect: can't read xattr trusted. of file 'cpuacct.usage_sys'
cgroup_xattr 1666  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_sys'
cgroup_xattr 1667  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_sys'
cgroup_xattr 1668  TPASS  :  Expect: can't read xattr security. of file 'cpu.cfs_quota_us'
cgroup_xattr 1669  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.cfs_quota_us'
cgroup_xattr 1670  TPASS  :  Expect: values equal
cgroup_xattr 1671  TPASS  :  Expect: can't read xattr trusted. of file 'cpu.cfs_quota_us'
cgroup_xattr 1672  TPASS  :  Expect: can't read xattr user. of file 'cpu.cfs_quota_us'
cgroup_xattr 1673  TPASS  :  Expect: can't read xattr system. of file 'cpu.cfs_quota_us'
cgroup_xattr 1674  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_user'
cgroup_xattr 1675  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_user'
cgroup_xattr 1676  TPASS  :  Expect: values equal
cgroup_xattr 1677  TPASS  :  Expect: can't read xattr trusted. of file 'cpuacct.usage_user'
cgroup_xattr 1678  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_user'
cgroup_xattr 1679  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_user'
cgroup_xattr 1680  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_spread_page'
cgroup_xattr 1681  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_spread_page'
cgroup_xattr 1682  TPASS  :  Expect: values equal
cgroup_xattr 1683  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.memory_spread_page'
cgroup_xattr 1684  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_spread_page'
cgroup_xattr 1685  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_spread_page'
cgroup_xattr 1686  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1687  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_spread_slab'
cgroup_xattr 1688  TPASS  :  Expect: values equal
cgroup_xattr 1689  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1690  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1691  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_spread_slab'
cgroup_xattr 1692  TPASS  :  Expect: can't read xattr security. of file 'memory.failcnt'
cgroup_xattr 1693  TPASS  :  Expect: can read xattr trusted.test of file 'memory.failcnt'
cgroup_xattr 1694  TPASS  :  Expect: values equal
cgroup_xattr 1695  TPASS  :  Expect: can't read xattr trusted. of file 'memory.failcnt'
cgroup_xattr 1696  TPASS  :  Expect: can't read xattr user. of file 'memory.failcnt'
cgroup_xattr 1697  TPASS  :  Expect: can't read xattr system. of file 'memory.failcnt'
cgroup_xattr 1698  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1699  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_time_recursive'
cgroup_xattr 1700  TPASS  :  Expect: values equal
cgroup_xattr 1701  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1702  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1703  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_time_recursive'
cgroup_xattr 1704  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1705  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1706  TPASS  :  Expect: values equal
cgroup_xattr 1707  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1708  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1709  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.write_iops_device'
cgroup_xattr 1710  TPASS  :  Expect: can't read xattr security. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1711  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.cpu_exclusive'
cgroup_xattr 1712  TPASS  :  Expect: values equal
cgroup_xattr 1713  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1714  TPASS  :  Expect: can't read xattr user. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1715  TPASS  :  Expect: can't read xattr system. of file 'cpuset.cpu_exclusive'
cgroup_xattr 1716  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1717  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1718  TPASS  :  Expect: values equal
cgroup_xattr 1719  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1720  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1721  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.limit_in_bytes'
cgroup_xattr 1722  TPASS  :  Expect: can't read xattr security. of file 'memory.force_empty'
cgroup_xattr 1723  TPASS  :  Expect: can read xattr trusted.test of file 'memory.force_empty'
cgroup_xattr 1724  TPASS  :  Expect: values equal
cgroup_xattr 1725  TPASS  :  Expect: can't read xattr trusted. of file 'memory.force_empty'
cgroup_xattr 1726  TPASS  :  Expect: can't read xattr user. of file 'memory.force_empty'
cgroup_xattr 1727  TPASS  :  Expect: can't read xattr system. of file 'memory.force_empty'
cgroup_xattr 1728  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1729  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1730  TPASS  :  Expect: values equal
cgroup_xattr 1731  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1732  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1733  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.io_service_bytes'
cgroup_xattr 1734  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_bytes'
cgroup_xattr 1735  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_bytes'
cgroup_xattr 1736  TPASS  :  Expect: values equal
cgroup_xattr 1737  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_service_bytes'
cgroup_xattr 1738  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_bytes'
cgroup_xattr 1739  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_bytes'
cgroup_xattr 1740  TPASS  :  Expect: can't read xattr security. of file 'cpuset.mem_exclusive'
cgroup_xattr 1741  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.mem_exclusive'
cgroup_xattr 1742  TPASS  :  Expect: values equal
cgroup_xattr 1743  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.mem_exclusive'
cgroup_xattr 1744  TPASS  :  Expect: can't read xattr user. of file 'cpuset.mem_exclusive'
cgroup_xattr 1745  TPASS  :  Expect: can't read xattr system. of file 'cpuset.mem_exclusive'
cgroup_xattr 1746  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.stat'
cgroup_xattr 1747  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.stat'
cgroup_xattr 1748  TPASS  :  Expect: values equal
cgroup_xattr 1749  TPASS  :  Expect: can't read xattr trusted. of file 'cpuacct.stat'
cgroup_xattr 1750  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.stat'
cgroup_xattr 1751  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.stat'
cgroup_xattr 1752  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.slabinfo'
cgroup_xattr 1753  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.slabinfo'
cgroup_xattr 1754  TPASS  :  Expect: values equal
cgroup_xattr 1755  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.slabinfo'
cgroup_xattr 1756  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.slabinfo'
cgroup_xattr 1757  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.slabinfo'
cgroup_xattr 1758  TPASS  :  Expect: can't read xattr security. of file 'cpu.stat'
cgroup_xattr 1759  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.stat'
cgroup_xattr 1760  TPASS  :  Expect: values equal
cgroup_xattr 1761  TPASS  :  Expect: can't read xattr trusted. of file 'cpu.stat'
cgroup_xattr 1762  TPASS  :  Expect: can't read xattr user. of file 'cpu.stat'
cgroup_xattr 1763  TPASS  :  Expect: can't read xattr system. of file 'cpu.stat'
cgroup_xattr 1764  TPASS  :  Expect: can't read xattr security. of file 'cpuset.effective_cpus'
cgroup_xattr 1765  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.effective_cpus'
cgroup_xattr 1766  TPASS  :  Expect: values equal
cgroup_xattr 1767  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.effective_cpus'
cgroup_xattr 1768  TPASS  :  Expect: can't read xattr user. of file 'cpuset.effective_cpus'
cgroup_xattr 1769  TPASS  :  Expect: can't read xattr system. of file 'cpuset.effective_cpus'
cgroup_xattr 1770  TPASS  :  Expect: can't read xattr security. of file 'cpuset.effective_mems'
cgroup_xattr 1771  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.effective_mems'
cgroup_xattr 1772  TPASS  :  Expect: values equal
cgroup_xattr 1773  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.effective_mems'
cgroup_xattr 1774  TPASS  :  Expect: can't read xattr user. of file 'cpuset.effective_mems'
cgroup_xattr 1775  TPASS  :  Expect: can't read xattr system. of file 'cpuset.effective_mems'
cgroup_xattr 1776  TPASS  :  Expect: can't read xattr security. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1777  TPASS  :  Expect: can read xattr trusted.test of file 'memory.max_usage_in_bytes'
cgroup_xattr 1778  TPASS  :  Expect: values equal
cgroup_xattr 1779  TPASS  :  Expect: can't read xattr trusted. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1780  TPASS  :  Expect: can't read xattr user. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1781  TPASS  :  Expect: can't read xattr system. of file 'memory.max_usage_in_bytes'
cgroup_xattr 1782  TPASS  :  Expect: can't read xattr security. of file 'memory.numa_stat'
cgroup_xattr 1783  TPASS  :  Expect: can read xattr trusted.test of file 'memory.numa_stat'
cgroup_xattr 1784  TPASS  :  Expect: values equal
cgroup_xattr 1785  TPASS  :  Expect: can't read xattr trusted. of file 'memory.numa_stat'
cgroup_xattr 1786  TPASS  :  Expect: can't read xattr user. of file 'memory.numa_stat'
cgroup_xattr 1787  TPASS  :  Expect: can't read xattr system. of file 'memory.numa_stat'
cgroup_xattr 1788  TPASS  :  Expect: can't read xattr security. of file 'cgroup.clone_children'
cgroup_xattr 1789  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.clone_children'
cgroup_xattr 1790  TPASS  :  Expect: values equal
cgroup_xattr 1791  TPASS  :  Expect: can't read xattr trusted. of file 'cgroup.clone_children'
cgroup_xattr 1792  TPASS  :  Expect: can't read xattr user. of file 'cgroup.clone_children'
cgroup_xattr 1793  TPASS  :  Expect: can't read xattr system. of file 'cgroup.clone_children'
cgroup_xattr 1794  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1795  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1796  TPASS  :  Expect: values equal
cgroup_xattr 1797  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1798  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1799  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.limit_in_bytes'
cgroup_xattr 1800  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1801  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1802  TPASS  :  Expect: values equal
cgroup_xattr 1803  TPASS  :  Expect: can't read xattr trusted. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1804  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1805  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage_percpu_user'
cgroup_xattr 1806  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1807  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1808  TPASS  :  Expect: values equal
cgroup_xattr 1809  TPASS  :  Expect: can't read xattr trusted. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1810  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1811  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.max_usage_in_bytes'
cgroup_xattr 1812  TPASS  :  Expect: can't read xattr security. of file 'cpuset.sched_load_balance'
cgroup_xattr 1813  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.sched_load_balance'
cgroup_xattr 1814  TPASS  :  Expect: values equal
cgroup_xattr 1815  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.sched_load_balance'
cgroup_xattr 1816  TPASS  :  Expect: can't read xattr user. of file 'cpuset.sched_load_balance'
cgroup_xattr 1817  TPASS  :  Expect: can't read xattr system. of file 'cpuset.sched_load_balance'
cgroup_xattr 1818  TPASS  :  Expect: can't read xattr security. of file 'cpu.cfs_period_us'
cgroup_xattr 1819  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.cfs_period_us'
cgroup_xattr 1820  TPASS  :  Expect: values equal
cgroup_xattr 1821  TPASS  :  Expect: can't read xattr trusted. of file 'cpu.cfs_period_us'
cgroup_xattr 1822  TPASS  :  Expect: can't read xattr user. of file 'cpu.cfs_period_us'
cgroup_xattr 1823  TPASS  :  Expect: can't read xattr system. of file 'cpu.cfs_period_us'
cgroup_xattr 1824  TPASS  :  Expect: can't read xattr security. of file 'memory.oom_control'
cgroup_xattr 1825  TPASS  :  Expect: can read xattr trusted.test of file 'memory.oom_control'
cgroup_xattr 1826  TPASS  :  Expect: values equal
cgroup_xattr 1827  TPASS  :  Expect: can't read xattr trusted. of file 'memory.oom_control'
cgroup_xattr 1828  TPASS  :  Expect: can't read xattr user. of file 'memory.oom_control'
cgroup_xattr 1829  TPASS  :  Expect: can't read xattr system. of file 'memory.oom_control'
cgroup_xattr 1830  TPASS  :  Expect: can't read xattr security. of file 'cgroup.sane_behavior'
cgroup_xattr 1831  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.sane_behavior'
cgroup_xattr 1832  TPASS  :  Expect: values equal
cgroup_xattr 1833  TPASS  :  Expect: can't read xattr trusted. of file 'cgroup.sane_behavior'
cgroup_xattr 1834  TPASS  :  Expect: can't read xattr user. of file 'cgroup.sane_behavior'
cgroup_xattr 1835  TPASS  :  Expect: can't read xattr system. of file 'cgroup.sane_behavior'
cgroup_xattr 1836  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1837  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1838  TPASS  :  Expect: values equal
cgroup_xattr 1839  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1840  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1841  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.max_usage_in_bytes'
cgroup_xattr 1842  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.failcnt'
cgroup_xattr 1843  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.failcnt'
cgroup_xattr 1844  TPASS  :  Expect: values equal
cgroup_xattr 1845  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.failcnt'
cgroup_xattr 1846  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.failcnt'
cgroup_xattr 1847  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.failcnt'
cgroup_xattr 1848  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1849  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1850  TPASS  :  Expect: values equal
cgroup_xattr 1851  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1852  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1853  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_wait_time_recursive'
cgroup_xattr 1854  TPASS  :  Expect: can't read xattr security. of file 'cpu.rt_period_us'
cgroup_xattr 1855  TPASS  :  Expect: can read xattr trusted.test of file 'cpu.rt_period_us'
cgroup_xattr 1856  TPASS  :  Expect: values equal
cgroup_xattr 1857  TPASS  :  Expect: can't read xattr trusted. of file 'cpu.rt_period_us'
cgroup_xattr 1858  TPASS  :  Expect: can't read xattr user. of file 'cpu.rt_period_us'
cgroup_xattr 1859  TPASS  :  Expect: can't read xattr system. of file 'cpu.rt_period_us'
cgroup_xattr 1860  TPASS  :  Expect: can't read xattr security. of file 'notify_on_release'
cgroup_xattr 1861  TPASS  :  Expect: can read xattr trusted.test of file 'notify_on_release'
cgroup_xattr 1862  TPASS  :  Expect: values equal
cgroup_xattr 1863  TPASS  :  Expect: can't read xattr trusted. of file 'notify_on_release'
cgroup_xattr 1864  TPASS  :  Expect: can't read xattr user. of file 'notify_on_release'
cgroup_xattr 1865  TPASS  :  Expect: can't read xattr system. of file 'notify_on_release'
cgroup_xattr 1866  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_service_time'
cgroup_xattr 1867  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_service_time'
cgroup_xattr 1868  TPASS  :  Expect: values equal
cgroup_xattr 1869  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_service_time'
cgroup_xattr 1870  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_service_time'
cgroup_xattr 1871  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_service_time'
cgroup_xattr 1872  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_pressure_enabled'
cgroup_xattr 1873  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_pressure_enabled'
cgroup_xattr 1874  TPASS  :  Expect: values equal
cgroup_xattr 1875  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.memory_pressure_enabled'
cgroup_xattr 1876  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_pressure_enabled'
cgroup_xattr 1877  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_pressure_enabled'
cgroup_xattr 1878  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1879  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1880  TPASS  :  Expect: values equal
cgroup_xattr 1881  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1882  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1883  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.usage_in_bytes'
cgroup_xattr 1884  TPASS  :  Expect: can't read xattr security. of file 'memory.stat'
cgroup_xattr 1885  TPASS  :  Expect: can read xattr trusted.test of file 'memory.stat'
cgroup_xattr 1886  TPASS  :  Expect: values equal
cgroup_xattr 1887  TPASS  :  Expect: can't read xattr trusted. of file 'memory.stat'
cgroup_xattr 1888  TPASS  :  Expect: can't read xattr user. of file 'memory.stat'
cgroup_xattr 1889  TPASS  :  Expect: can't read xattr system. of file 'memory.stat'
cgroup_xattr 1890  TPASS  :  Expect: can't read xattr security. of file 'cpuset.memory_migrate'
cgroup_xattr 1891  TPASS  :  Expect: can read xattr trusted.test of file 'cpuset.memory_migrate'
cgroup_xattr 1892  TPASS  :  Expect: values equal
cgroup_xattr 1893  TPASS  :  Expect: can't read xattr trusted. of file 'cpuset.memory_migrate'
cgroup_xattr 1894  TPASS  :  Expect: can't read xattr user. of file 'cpuset.memory_migrate'
cgroup_xattr 1895  TPASS  :  Expect: can't read xattr system. of file 'cpuset.memory_migrate'
cgroup_xattr 1896  TPASS  :  Expect: can't read xattr security. of file 'devices.deny'
cgroup_xattr 1897  TPASS  :  Expect: can read xattr trusted.test of file 'devices.deny'
cgroup_xattr 1898  TPASS  :  Expect: values equal
cgroup_xattr 1899  TPASS  :  Expect: can't read xattr trusted. of file 'devices.deny'
cgroup_xattr 1900  TPASS  :  Expect: can't read xattr user. of file 'devices.deny'
cgroup_xattr 1901  TPASS  :  Expect: can't read xattr system. of file 'devices.deny'
cgroup_xattr 1902  TPASS  :  Expect: can't read xattr security. of file 'devices.list'
cgroup_xattr 1903  TPASS  :  Expect: can read xattr trusted.test of file 'devices.list'
cgroup_xattr 1904  TPASS  :  Expect: values equal
cgroup_xattr 1905  TPASS  :  Expect: can't read xattr trusted. of file 'devices.list'
cgroup_xattr 1906  TPASS  :  Expect: can't read xattr user. of file 'devices.list'
cgroup_xattr 1907  TPASS  :  Expect: can't read xattr system. of file 'devices.list'
cgroup_xattr 1908  TPASS  :  Expect: can't read xattr security. of file 'cgroup.event_control'
cgroup_xattr 1909  TPASS  :  Expect: can read xattr trusted.test of file 'cgroup.event_control'
cgroup_xattr 1910  TPASS  :  Expect: values equal
cgroup_xattr 1911  TPASS  :  Expect: can't read xattr trusted. of file 'cgroup.event_control'
cgroup_xattr 1912  TPASS  :  Expect: can't read xattr user. of file 'cgroup.event_control'
cgroup_xattr 1913  TPASS  :  Expect: can't read xattr system. of file 'cgroup.event_control'
cgroup_xattr 1914  TPASS  :  Expect: can't read xattr security. of file 'blkio.time_recursive'
cgroup_xattr 1915  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.time_recursive'
cgroup_xattr 1916  TPASS  :  Expect: values equal
cgroup_xattr 1917  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.time_recursive'
cgroup_xattr 1918  TPASS  :  Expect: can't read xattr user. of file 'blkio.time_recursive'
cgroup_xattr 1919  TPASS  :  Expect: can't read xattr system. of file 'blkio.time_recursive'
cgroup_xattr 1920  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_merged'
cgroup_xattr 1921  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_merged'
cgroup_xattr 1922  TPASS  :  Expect: values equal
cgroup_xattr 1923  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_merged'
cgroup_xattr 1924  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_merged'
cgroup_xattr 1925  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_merged'
cgroup_xattr 1926  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1927  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1928  TPASS  :  Expect: values equal
cgroup_xattr 1929  TPASS  :  Expect: can't read xattr trusted. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1930  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1931  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.failcnt'
cgroup_xattr 1932  TPASS  :  Expect: can't read xattr security. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1933  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1934  TPASS  :  Expect: values equal
cgroup_xattr 1935  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1936  TPASS  :  Expect: can't read xattr user. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1937  TPASS  :  Expect: can't read xattr system. of file 'blkio.throttle.read_bps_device'
cgroup_xattr 1938  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1939  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1940  TPASS  :  Expect: values equal
cgroup_xattr 1941  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1942  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1943  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.usage_in_bytes'
cgroup_xattr 1944  TPASS  :  Expect: can't read xattr security. of file 'blkio.sectors'
cgroup_xattr 1945  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.sectors'
cgroup_xattr 1946  TPASS  :  Expect: values equal
cgroup_xattr 1947  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.sectors'
cgroup_xattr 1948  TPASS  :  Expect: can't read xattr user. of file 'blkio.sectors'
cgroup_xattr 1949  TPASS  :  Expect: can't read xattr system. of file 'blkio.sectors'
cgroup_xattr 1950  TPASS  :  Expect: can't read xattr security. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1951  TPASS  :  Expect: can read xattr trusted.test of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1952  TPASS  :  Expect: values equal
cgroup_xattr 1953  TPASS  :  Expect: can't read xattr trusted. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1954  TPASS  :  Expect: can't read xattr user. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1955  TPASS  :  Expect: can't read xattr system. of file 'memory.move_charge_at_immigrate'
cgroup_xattr 1956  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_queued'
cgroup_xattr 1957  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_queued'
cgroup_xattr 1958  TPASS  :  Expect: values equal
cgroup_xattr 1959  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_queued'
cgroup_xattr 1960  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_queued'
cgroup_xattr 1961  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_queued'
cgroup_xattr 1962  TPASS  :  Expect: can't read xattr security. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1963  TPASS  :  Expect: can read xattr trusted.test of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1964  TPASS  :  Expect: values equal
cgroup_xattr 1965  TPASS  :  Expect: can't read xattr trusted. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1966  TPASS  :  Expect: can't read xattr user. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1967  TPASS  :  Expect: can't read xattr system. of file 'hugetlb.2MB.limit_in_bytes'
cgroup_xattr 1968  TPASS  :  Expect: can't read xattr security. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1969  TPASS  :  Expect: can read xattr trusted.test of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1970  TPASS  :  Expect: values equal
cgroup_xattr 1971  TPASS  :  Expect: can't read xattr trusted. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1972  TPASS  :  Expect: can't read xattr user. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1973  TPASS  :  Expect: can't read xattr system. of file 'memory.soft_limit_in_bytes'
cgroup_xattr 1974  TPASS  :  Expect: can't read xattr security. of file 'cpuacct.usage'
cgroup_xattr 1975  TPASS  :  Expect: can read xattr trusted.test of file 'cpuacct.usage'
cgroup_xattr 1976  TPASS  :  Expect: values equal
cgroup_xattr 1977  TPASS  :  Expect: can't read xattr trusted. of file 'cpuacct.usage'
cgroup_xattr 1978  TPASS  :  Expect: can't read xattr user. of file 'cpuacct.usage'
cgroup_xattr 1979  TPASS  :  Expect: can't read xattr system. of file 'cpuacct.usage'
cgroup_xattr 1980  TPASS  :  Expect: can't read xattr security. of file 'blkio.io_queued_recursive'
cgroup_xattr 1981  TPASS  :  Expect: can read xattr trusted.test of file 'blkio.io_queued_recursive'
cgroup_xattr 1982  TPASS  :  Expect: values equal
cgroup_xattr 1983  TPASS  :  Expect: can't read xattr trusted. of file 'blkio.io_queued_recursive'
cgroup_xattr 1984  TPASS  :  Expect: can't read xattr user. of file 'blkio.io_queued_recursive'
cgroup_xattr 1985  TPASS  :  Expect: can't read xattr system. of file 'blkio.io_queued_recursive'
cgroup_xattr 1986  TPASS  :  Expect: can't read xattr security. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1987  TPASS  :  Expect: can read xattr trusted.test of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1988  TPASS  :  Expect: values equal
cgroup_xattr 1989  TPASS  :  Expect: can't read xattr trusted. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1990  TPASS  :  Expect: can't read xattr user. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr 1991  TPASS  :  Expect: can't read xattr system. of file 'memory.kmem.tcp.failcnt'
cgroup_xattr    0  TINFO  :  All test-cases have been completed, summary:
cgroup_xattr    0  TINFO  :  Set tests result: PASS
cgroup_xattr    0  TINFO  :  Get tests result: PASS
incrementing stop
<<<execution_status>>>
initiation_status="ok"
duration=0 termination_type=exited termination_id=0 corefile=no
cutime=1 cstime=5
<<<test_end>>>
INFO: ltp-pan reported all tests PASS
LTP Version: 20160510

       ###############################################################

            Done executing testcases.
            LTP Version:  20160510
       ###############################################################


^ permalink raw reply	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2016-05-30 19:55 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-30  8:57 [PATCH v3 00/17] Xattr inode operation removal Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 01/17] xattr: Remove unnecessary NULL attribute name check Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 02/17] jffs2: Remove jffs2_{get,set,remove}xattr macros Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 03/17] hfs: Switch to generic xattr handlers Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 04/17] kernfs: " Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 05/17] sockfs: getxattr: Fail with -EOPNOTSUPP for invalid attribute names Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 06/17] sockfs: Get rid of getxattr iop Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 07/17] ecryptfs: Switch to generic xattr handlers Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 08/17] overlayfs: " Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 09/17] fuse: " Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 10/17] vfs: Move xattr_resolve_name to the front of fs/xattr.c Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 11/17] vfs: Add IOP_XATTR inode operations flag Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 12/17] vfs: Use IOP_XATTR flag for bad-inode handling Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 13/17] libfs: Use IOP_XATTR flag for empty directory handling Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 14/17] xattr: Add __vfs_{get,set,remove}xattr helpers Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 15/17] vfs: Check for the IOP_XATTR flag in listxattr Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 16/17] xattr: Stop calling {get,set,remove}xattr inode operations Andreas Gruenbacher
2016-05-30  8:57 ` [PATCH v3 17/17] vfs: Remove " Andreas Gruenbacher
2016-05-30  9:54 ` [PATCH v3 00/17] Xattr inode operation removal Sedat Dilek
2016-05-30 10:49   ` Andreas Gruenbacher
2016-05-30 12:56     ` Sedat Dilek
2016-05-30 16:02       ` Sedat Dilek
2016-05-30 18:22         ` Andreas Gruenbacher
2016-05-30 18:51           ` Sedat Dilek
2016-05-30 19:19             ` Sedat Dilek
2016-05-30 19:29             ` Andreas Gruenbacher
2016-05-30 19:55               ` Sedat Dilek

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.