All of lore.kernel.org
 help / color / mirror / Atom feed
From: Li Zefan <lizf@cn.fujitsu.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Balbir Singh <balbir@linux.vnet.ibm.com>,
	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>,
	Pavel Emelianov <xemul@openvz.org>,
	Paul Menage <menage@google.com>,
	LKML <linux-kernel@vger.kernel.org>,
	linux-mm@kvack.org, Linux Containers <containers@lists.osdl.org>
Subject: [PATCH 1/3] res_counter: introduce res_counter_write_u64()
Date: Tue, 11 Mar 2008 19:08:39 +0900	[thread overview]
Message-ID: <47D65A27.80605@cn.fujitsu.com> (raw)

This function can be used to assign the value of a resource counter member.

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
---
 include/linux/res_counter.h |    9 ++++++---
 kernel/res_counter.c        |    9 +++++++++
 2 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/include/linux/res_counter.h b/include/linux/res_counter.h
index 8cb1ecd..8c23f7f 100644
--- a/include/linux/res_counter.h
+++ b/include/linux/res_counter.h
@@ -41,9 +41,10 @@ struct res_counter {
 
 /**
  * Helpers to interact with userspace
- * res_counter_read_u64() - returns the value of the specified member.
- * res_counter_read/_write - put/get the specified fields from the
- * res_counter struct to/from the user
+ * res_counter_read_64/_write_u64 - returns/assigns the value of the
+ *	specified member
+ * res_counter_read/_write - puts/gets the specified fields from the
+ *	res_counter struct to/from the user
  *
  * @counter:     the counter in question
  * @member:  the field to work with (see RES_xxx below)
@@ -53,6 +54,8 @@ struct res_counter {
  */
 
 u64 res_counter_read_u64(struct res_counter *counter, int member);
+void res_counter_write_u64(struct res_counter *counter, int member,
+			   unsigned long long val);
 
 ssize_t res_counter_read(struct res_counter *counter, int member,
 		const char __user *buf, size_t nbytes, loff_t *pos,
diff --git a/kernel/res_counter.c b/kernel/res_counter.c
index 791ff2b..a16b727 100644
--- a/kernel/res_counter.c
+++ b/kernel/res_counter.c
@@ -97,6 +97,15 @@ u64 res_counter_read_u64(struct res_counter *counter, int member)
 	return *res_counter_member(counter, member);
 }
 
+void res_counter_write_u64(struct res_counter *counter, int member,
+			   unsigned long long val)
+{
+	unsigned long long *tmp;
+
+	tmp = res_counter_member(counter, member);
+	*tmp = val;
+}
+
 ssize_t res_counter_write(struct res_counter *counter, int member,
 		const char __user *userbuf, size_t nbytes, loff_t *pos,
 		int (*write_strategy)(char *st_buf, unsigned long long *val))
-- 
1.5.4.rc3

WARNING: multiple messages have this Message-ID (diff)
From: Li Zefan <lizf@cn.fujitsu.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Balbir Singh <balbir@linux.vnet.ibm.com>,
	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>,
	Pavel Emelianov <xemul@openvz.org>,
	Paul Menage <menage@google.com>,
	LKML <linux-kernel@vger.kernel.org>,
	linux-mm@kvack.org, Linux Containers <containers@lists.osdl.org>
Subject: [PATCH 1/3] res_counter: introduce res_counter_write_u64()
Date: Tue, 11 Mar 2008 19:08:39 +0900	[thread overview]
Message-ID: <47D65A27.80605@cn.fujitsu.com> (raw)

This function can be used to assign the value of a resource counter member.

Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
---
 include/linux/res_counter.h |    9 ++++++---
 kernel/res_counter.c        |    9 +++++++++
 2 files changed, 15 insertions(+), 3 deletions(-)

diff --git a/include/linux/res_counter.h b/include/linux/res_counter.h
index 8cb1ecd..8c23f7f 100644
--- a/include/linux/res_counter.h
+++ b/include/linux/res_counter.h
@@ -41,9 +41,10 @@ struct res_counter {
 
 /**
  * Helpers to interact with userspace
- * res_counter_read_u64() - returns the value of the specified member.
- * res_counter_read/_write - put/get the specified fields from the
- * res_counter struct to/from the user
+ * res_counter_read_64/_write_u64 - returns/assigns the value of the
+ *	specified member
+ * res_counter_read/_write - puts/gets the specified fields from the
+ *	res_counter struct to/from the user
  *
  * @counter:     the counter in question
  * @member:  the field to work with (see RES_xxx below)
@@ -53,6 +54,8 @@ struct res_counter {
  */
 
 u64 res_counter_read_u64(struct res_counter *counter, int member);
+void res_counter_write_u64(struct res_counter *counter, int member,
+			   unsigned long long val);
 
 ssize_t res_counter_read(struct res_counter *counter, int member,
 		const char __user *buf, size_t nbytes, loff_t *pos,
diff --git a/kernel/res_counter.c b/kernel/res_counter.c
index 791ff2b..a16b727 100644
--- a/kernel/res_counter.c
+++ b/kernel/res_counter.c
@@ -97,6 +97,15 @@ u64 res_counter_read_u64(struct res_counter *counter, int member)
 	return *res_counter_member(counter, member);
 }
 
+void res_counter_write_u64(struct res_counter *counter, int member,
+			   unsigned long long val)
+{
+	unsigned long long *tmp;
+
+	tmp = res_counter_member(counter, member);
+	*tmp = val;
+}
+
 ssize_t res_counter_write(struct res_counter *counter, int member,
 		const char __user *userbuf, size_t nbytes, loff_t *pos,
 		int (*write_strategy)(char *st_buf, unsigned long long *val))
-- 
1.5.4.rc3

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

             reply	other threads:[~2008-03-11 10:08 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-03-11 10:08 Li Zefan [this message]
2008-03-11 10:08 ` [PATCH 1/3] res_counter: introduce res_counter_write_u64() Li Zefan
2008-03-11 10:21 ` KAMEZAWA Hiroyuki
2008-03-11 10:21   ` KAMEZAWA Hiroyuki
2008-03-13 23:34   ` Li Zefan
2008-03-13 23:34     ` Li Zefan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=47D65A27.80605@cn.fujitsu.com \
    --to=lizf@cn.fujitsu.com \
    --cc=akpm@linux-foundation.org \
    --cc=balbir@linux.vnet.ibm.com \
    --cc=containers@lists.osdl.org \
    --cc=kamezawa.hiroyu@jp.fujitsu.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=menage@google.com \
    --cc=xemul@openvz.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.