aboutsummaryrefslogtreecommitdiffstats
path: root/security/tomoyo/memory.c
diff options
context:
space:
mode:
authorTetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>2010-06-16 16:29:59 +0900
committerJames Morris <jmorris@namei.org>2010-08-02 15:34:35 +1000
commit8fbe71f0e0ac28a39e4a93694c34d670c2f31e88 (patch)
tree95dc6db6aaaa31a8876bc99c1531bfc26d0e838c /security/tomoyo/memory.c
parentTOMOYO: Merge functions. (diff)
downloadlinux-dev-8fbe71f0e0ac28a39e4a93694c34d670c2f31e88.tar.xz
linux-dev-8fbe71f0e0ac28a39e4a93694c34d670c2f31e88.zip
TOMOYO: Make read function to void.
Read functions do not fail. Make them from int to void. Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/tomoyo/memory.c')
-rw-r--r--security/tomoyo/memory.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/security/tomoyo/memory.c b/security/tomoyo/memory.c
index 4809febc1acb..8de5333109aa 100644
--- a/security/tomoyo/memory.c
+++ b/security/tomoyo/memory.c
@@ -184,7 +184,7 @@ unsigned int tomoyo_quota_for_query;
*
* Returns memory usage.
*/
-int tomoyo_read_memory_counter(struct tomoyo_io_buffer *head)
+void tomoyo_read_memory_counter(struct tomoyo_io_buffer *head)
{
if (!head->read_eof) {
const unsigned int policy
@@ -212,7 +212,6 @@ int tomoyo_read_memory_counter(struct tomoyo_io_buffer *head)
tomoyo_io_printf(head, "Total: %10u\n", policy + query);
head->read_eof = true;
}
- return 0;
}
/**