Commit 6edb2a8a authored by Steven Rostedt's avatar Steven Rostedt Committed by Steven Rostedt

tracing: Clean up tracing_mark_write()

On gcc 4.5 the function tracing_mark_write() would give a warning
of page2 being uninitialized. This is due to a bug in gcc because
the logic prevents page2 from being used uninitialized, and
gcc 4.6+ does not complain (correctly).

Instead of adding a "unitialized" around page2, which could show
a bug later on, I combined page1 and page2 into an array map_pages[].
This binds the two and the two are modified according to nr_pages
(what gcc 4.5 seems to ignore). This no longer gives a warning with
gcc 4.5 nor with gcc 4.6.
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent 978da300
...@@ -3875,14 +3875,14 @@ tracing_mark_write(struct file *filp, const char __user *ubuf, ...@@ -3875,14 +3875,14 @@ tracing_mark_write(struct file *filp, const char __user *ubuf,
struct print_entry *entry; struct print_entry *entry;
unsigned long irq_flags; unsigned long irq_flags;
struct page *pages[2]; struct page *pages[2];
void *map_page[2];
int nr_pages = 1; int nr_pages = 1;
ssize_t written; ssize_t written;
void *page1;
void *page2;
int offset; int offset;
int size; int size;
int len; int len;
int ret; int ret;
int i;
if (tracing_disabled) if (tracing_disabled)
return -EINVAL; return -EINVAL;
...@@ -3921,9 +3921,8 @@ tracing_mark_write(struct file *filp, const char __user *ubuf, ...@@ -3921,9 +3921,8 @@ tracing_mark_write(struct file *filp, const char __user *ubuf,
goto out; goto out;
} }
page1 = kmap_atomic(pages[0]); for (i = 0; i < nr_pages; i++)
if (nr_pages == 2) map_page[i] = kmap_atomic(pages[i]);
page2 = kmap_atomic(pages[1]);
local_save_flags(irq_flags); local_save_flags(irq_flags);
size = sizeof(*entry) + cnt + 2; /* possible \n added */ size = sizeof(*entry) + cnt + 2; /* possible \n added */
...@@ -3941,10 +3940,10 @@ tracing_mark_write(struct file *filp, const char __user *ubuf, ...@@ -3941,10 +3940,10 @@ tracing_mark_write(struct file *filp, const char __user *ubuf,
if (nr_pages == 2) { if (nr_pages == 2) {
len = PAGE_SIZE - offset; len = PAGE_SIZE - offset;
memcpy(&entry->buf, page1 + offset, len); memcpy(&entry->buf, map_page[0] + offset, len);
memcpy(&entry->buf[len], page2, cnt - len); memcpy(&entry->buf[len], map_page[1], cnt - len);
} else } else
memcpy(&entry->buf, page1 + offset, cnt); memcpy(&entry->buf, map_page[0] + offset, cnt);
if (entry->buf[cnt - 1] != '\n') { if (entry->buf[cnt - 1] != '\n') {
entry->buf[cnt] = '\n'; entry->buf[cnt] = '\n';
...@@ -3959,11 +3958,10 @@ tracing_mark_write(struct file *filp, const char __user *ubuf, ...@@ -3959,11 +3958,10 @@ tracing_mark_write(struct file *filp, const char __user *ubuf,
*fpos += written; *fpos += written;
out_unlock: out_unlock:
if (nr_pages == 2) for (i = 0; i < nr_pages; i++){
kunmap_atomic(page2); kunmap_atomic(map_page[i]);
kunmap_atomic(page1); put_page(pages[i]);
while (nr_pages > 0) }
put_page(pages[--nr_pages]);
out: out:
return written; return written;
} }
......
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