Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9387377e authored by Jeremy Fitzhardinge's avatar Jeremy Fitzhardinge
Browse files

xen/privcmd: make privcmd visible in domU



It has its uses in a domU as well as dom0.  Xen will prevent an
unprivileged domain from doing anything untoward.

Signed-off-by: default avatarJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
parent de1ef206
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
obj-$(CONFIG_XENFS) += xenfs.o

xenfs-y			  = super.o xenbus.o
xenfs-$(CONFIG_XEN_DOM0) += xenstored.o privcmd.o
xenfs-y			  = super.o xenbus.o privcmd.o
xenfs-$(CONFIG_XEN_DOM0) += xenstored.o
+1 −2
Original line number Diff line number Diff line
@@ -101,6 +101,7 @@ static int xenfs_fill_super(struct super_block *sb, void *data, int silent)
		[1] = {},
		{ "xenbus", &xenbus_file_ops, S_IRUSR|S_IWUSR },
		{ "capabilities", &capabilities_file_ops, S_IRUGO },
		{ "privcmd", &privcmd_file_ops, S_IRUSR|S_IWUSR },
		{""},
	};
	int rc;
@@ -114,8 +115,6 @@ static int xenfs_fill_super(struct super_block *sb, void *data, int silent)
				  &xsd_kva_file_ops, NULL, S_IRUSR|S_IWUSR);
		xenfs_create_file(sb, sb->s_root, "xsd_port",
				  &xsd_port_file_ops, NULL, S_IRUSR|S_IWUSR);
		xenfs_create_file(sb, sb->s_root, "privcmd",
				  &privcmd_file_ops, NULL, S_IRUSR|S_IWUSR);
	}

	return rc;