linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] two test samples for configfs
@ 2019-06-18 12:28 SunKe
  2019-06-18 12:28 ` [PATCH 1/2] sample_configfs: bin_file read and write SunKe
  2019-06-18 12:28 ` [PATCH 2/2] sample_configfs: soft link creat and delete SunKe
  0 siblings, 2 replies; 3+ messages in thread
From: SunKe @ 2019-06-18 12:28 UTC (permalink / raw)
  To: jlbec, hch, linux-kernel, sunke32

Add two test samples for configfs. include read and write bin_file and
creat soft link.

*** BLURB HERE ***

SunKe (2):
  sample_configfs: bin_file read and write
  sample_configfs: soft link creat and delete

 samples/configfs/configfs_sample.c | 84 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 84 insertions(+)

-- 
2.7.4


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

* [PATCH 1/2] sample_configfs: bin_file read and write
  2019-06-18 12:28 [PATCH 0/2] two test samples for configfs SunKe
@ 2019-06-18 12:28 ` SunKe
  2019-06-18 12:28 ` [PATCH 2/2] sample_configfs: soft link creat and delete SunKe
  1 sibling, 0 replies; 3+ messages in thread
From: SunKe @ 2019-06-18 12:28 UTC (permalink / raw)
  To: jlbec, hch, linux-kernel, sunke32

Add bin_file read and write function

Signed-off-by: SunKe <sunke32@huawei.com>
---
 samples/configfs/configfs_sample.c | 43 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/samples/configfs/configfs_sample.c b/samples/configfs/configfs_sample.c
index 004a4e2..c76b784 100644
--- a/samples/configfs/configfs_sample.c
+++ b/samples/configfs/configfs_sample.c
@@ -146,6 +146,8 @@ static struct childless childless_subsys = {
 struct simple_child {
 	struct config_item item;
 	int storeme;
+	void *data;
+	size_t len;
 };
 
 static inline struct simple_child *to_simple_child(struct config_item *item)
@@ -153,6 +155,46 @@ static inline struct simple_child *to_simple_child(struct config_item *item)
 	return item ? container_of(item, struct simple_child, item) : NULL;
 }
 
+static ssize_t simple_child_bin_storeme_bin_write(struct config_item *item,
+				    const void *data, size_t size)
+{
+	struct simple_child *simple_child = to_simple_child(item);
+
+	kfree(simple_child->data);
+	simple_child->data = NULL;
+
+	simple_child->data = kmemdup(data, size, GFP_KERNEL);
+	if (!simple_child->data)
+		return -ENOMEM;
+	simple_child->len = size;
+
+	return 0;
+}
+
+static ssize_t simple_child_bin_storeme_bin_read(struct config_item *item,
+				   void *data, size_t size)
+{
+	struct simple_child *simple_child = to_simple_child(item);
+
+	if (!data) {
+		size = simple_child->len;
+	} else {
+		memcpy(data, simple_child->data, simple_child->len);
+		size = simple_child->len;
+	}
+
+	return size;
+}
+
+#define MAX_SIZE (128 * 1024)
+
+CONFIGFS_BIN_ATTR(simple_child_bin_, storeme_bin, NULL, MAX_SIZE);
+
+static struct configfs_bin_attribute *simple_child_bin_attrs[] = {
+	&simple_child_bin_attr_storeme_bin,
+	NULL,
+};
+
 static ssize_t simple_child_storeme_show(struct config_item *item, char *page)
 {
 	return sprintf(page, "%d\n", to_simple_child(item)->storeme);
@@ -196,6 +238,7 @@ static struct configfs_item_operations simple_child_item_ops = {
 static const struct config_item_type simple_child_type = {
 	.ct_item_ops	= &simple_child_item_ops,
 	.ct_attrs	= simple_child_attrs,
+	.ct_bin_attrs	= simple_child_bin_attrs,
 	.ct_owner	= THIS_MODULE,
 };
 
-- 
2.7.4


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

* [PATCH 2/2] sample_configfs: soft link creat and delete
  2019-06-18 12:28 [PATCH 0/2] two test samples for configfs SunKe
  2019-06-18 12:28 ` [PATCH 1/2] sample_configfs: bin_file read and write SunKe
@ 2019-06-18 12:28 ` SunKe
  1 sibling, 0 replies; 3+ messages in thread
From: SunKe @ 2019-06-18 12:28 UTC (permalink / raw)
  To: jlbec, hch, linux-kernel, sunke32

Add soft link creation and deletion

Signed-off-by: SunKe <sunke32@huawei.com>
---
 samples/configfs/configfs_sample.c | 41 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)

diff --git a/samples/configfs/configfs_sample.c b/samples/configfs/configfs_sample.c
index c76b784..58915b8 100644
--- a/samples/configfs/configfs_sample.c
+++ b/samples/configfs/configfs_sample.c
@@ -392,6 +392,46 @@ static struct configfs_subsystem group_children_subsys = {
 /* ----------------------------------------------------------------- */
 
 /*
+ * 04-link-children
+ *
+ */
+static int link_children_allow_link(struct config_item *parent,
+		struct config_item *target)
+{
+	return 0;
+}
+
+static void link_children_drop_link(struct config_item *parent,
+		struct config_item *target)
+{
+
+}
+
+
+static struct configfs_item_operations link_children_item_ops = {
+	.allow_link		= link_children_allow_link,
+	.drop_link		= link_children_drop_link,
+};
+
+
+static const struct config_item_type link_children_type = {
+	.ct_item_ops		= &link_children_item_ops,
+	.ct_owner		= THIS_MODULE,
+
+};
+
+static struct configfs_subsystem link_children_subsys = {
+	.su_group = {
+		.cg_item = {
+			.ci_namebuf = "04-link-children",
+			.ci_type = &link_children_type,
+		},
+	},
+};
+
+/* ----------------------------------------------------------------- */
+
+/*
  * We're now done with our subsystem definitions.
  * For convenience in this module, here's a list of them all.  It
  * allows the init function to easily register them.  Most modules
@@ -402,6 +442,7 @@ static struct configfs_subsystem *example_subsys[] = {
 	&childless_subsys.subsys,
 	&simple_children_subsys,
 	&group_children_subsys,
+	&link_children_subsys,
 	NULL,
 };
 
-- 
2.7.4


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

end of thread, other threads:[~2019-06-18 12:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-18 12:28 [PATCH 0/2] two test samples for configfs SunKe
2019-06-18 12:28 ` [PATCH 1/2] sample_configfs: bin_file read and write SunKe
2019-06-18 12:28 ` [PATCH 2/2] sample_configfs: soft link creat and delete SunKe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).