Commit fa7c7f6e authored by Frederic Weisbecker's avatar Frederic Weisbecker Committed by Ingo Molnar

tracing/core: remove unused parameter in tracing_fill_pipe_page()

Impact: cleanup

The struct page *pages parameter is unused.
Signed-off-by: default avatarFrederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 6eaaa5d5
...@@ -2571,8 +2571,7 @@ static struct pipe_buf_operations tracing_pipe_buf_ops = { ...@@ -2571,8 +2571,7 @@ static struct pipe_buf_operations tracing_pipe_buf_ops = {
}; };
static size_t static size_t
tracing_fill_pipe_page(struct page *pages, size_t rem, tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter)
struct trace_iterator *iter)
{ {
size_t count; size_t count;
int ret; int ret;
...@@ -2649,7 +2648,7 @@ static ssize_t tracing_splice_read_pipe(struct file *filp, ...@@ -2649,7 +2648,7 @@ static ssize_t tracing_splice_read_pipe(struct file *filp,
if (!pages[i]) if (!pages[i])
break; break;
rem = tracing_fill_pipe_page(pages[i], rem, iter); rem = tracing_fill_pipe_page(rem, iter);
/* Copy the data into the page, so we can start over. */ /* Copy the data into the page, so we can start over. */
ret = trace_seq_to_buffer(&iter->seq, ret = trace_seq_to_buffer(&iter->seq,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment