* [PATCH 0/2] seq: Speed up /proc/<pid>/smaps
[not found] <20160820072927.GA23645@dhcp22.suse.cz>
@ 2016-08-20 8:00 ` Joe Perches
2016-08-20 8:00 ` [PATCH 1/2] seq_file: Add __seq_open_private_bufsize for seq file_operation sizes Joe Perches
0 siblings, 1 reply; 2+ messages in thread
From: Joe Perches @ 2016-08-20 8:00 UTC (permalink / raw)
To: Michal Hocko, linux-fsdevel
Cc: Andrew Morton, Jann Horn, linux-mm, Alexander Viro, linux-kernel
Doing a simple cat of these files can take a lot more cpu than
it should. Optimize it a bit.
Joe Perches (2):
seq_file: Add __seq_open_private_bufsize for seq file_operation sizes
proc: task_mmu: Reduce output processing cpu time
fs/proc/task_mmu.c | 94 ++++++++++++++++++++++++------------------------
fs/seq_file.c | 31 ++++++++++++++++
include/linux/seq_file.h | 3 ++
3 files changed, 82 insertions(+), 46 deletions(-)
--
2.8.0.rc4.16.g56331f8
--
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>
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 1/2] seq_file: Add __seq_open_private_bufsize for seq file_operation sizes
2016-08-20 8:00 ` [PATCH 0/2] seq: Speed up /proc/<pid>/smaps Joe Perches
@ 2016-08-20 8:00 ` Joe Perches
0 siblings, 0 replies; 2+ messages in thread
From: Joe Perches @ 2016-08-20 8:00 UTC (permalink / raw)
To: Michal Hocko, Alexander Viro
Cc: Andrew Morton, Jann Horn, linux-mm, linux-fsdevel, linux-kernel
Specifying an initial output buffer size can reduce the
number of regenerations of the seq_<output> buffers when
the buffer overflows.
Add another version of __seq_open_private that takes an
initial buffer size.
Signed-off-by: Joe Perches <joe@perches.com>
---
fs/seq_file.c | 31 +++++++++++++++++++++++++++++++
include/linux/seq_file.h | 3 +++
2 files changed, 34 insertions(+)
diff --git a/fs/seq_file.c b/fs/seq_file.c
index b8ac757e..d98fa77 100644
--- a/fs/seq_file.c
+++ b/fs/seq_file.c
@@ -652,6 +652,37 @@ int seq_open_private(struct file *filp, const struct seq_operations *ops,
}
EXPORT_SYMBOL(seq_open_private);
+void *__seq_open_private_bufsize(struct file *f,
+ const struct seq_operations *ops,
+ int psize, size_t bufsize)
+{
+ int rc;
+ void *private;
+ struct seq_file *seq;
+
+ private = kzalloc(psize, GFP_KERNEL);
+ if (private == NULL)
+ goto out;
+
+ rc = seq_open(f, ops);
+ if (rc < 0)
+ goto out_free;
+
+ seq = f->private_data;
+ seq->private = private;
+
+ kfree(seq->buf);
+ seq->buf = seq_buf_alloc(seq->size = round_up(bufsize, PAGE_SIZE));
+
+ return private;
+
+out_free:
+ kfree(private);
+out:
+ return NULL;
+}
+EXPORT_SYMBOL(__seq_open_private_bufsize);
+
void seq_putc(struct seq_file *m, char c)
{
if (m->count >= m->size)
diff --git a/include/linux/seq_file.h b/include/linux/seq_file.h
index e305b66..719f1b8 100644
--- a/include/linux/seq_file.h
+++ b/include/linux/seq_file.h
@@ -136,6 +136,9 @@ int single_open(struct file *, int (*)(struct seq_file *, void *), void *);
int single_open_size(struct file *, int (*)(struct seq_file *, void *), void *, size_t);
int single_release(struct inode *, struct file *);
void *__seq_open_private(struct file *, const struct seq_operations *, int);
+void *__seq_open_private_bufsize(struct file *f,
+ const struct seq_operations *ops,
+ int psize, size_t bufsize);
int seq_open_private(struct file *, const struct seq_operations *, int);
int seq_release_private(struct inode *, struct file *);
--
2.8.0.rc4.16.g56331f8
--
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>
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-08-20 8:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20160820072927.GA23645@dhcp22.suse.cz>
2016-08-20 8:00 ` [PATCH 0/2] seq: Speed up /proc/<pid>/smaps Joe Perches
2016-08-20 8:00 ` [PATCH 1/2] seq_file: Add __seq_open_private_bufsize for seq file_operation sizes Joe Perches
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).