Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 140727
b: refs/heads/master
c: 5e39841
h: refs/heads/master
i:
  140725: e60511c
  140723: 8fecff6
  140719: 47005ba
v: v3
  • Loading branch information
Hannes Eder authored and Ingo Molnar committed Feb 11, 2009
1 parent a359c44 commit 0981377
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4fd2735881bf4d8bf5e30979f31fc2f1b1d505fa
refs/heads/master: 5e39841c45cf5e6ea930ede1b0303309e03037a2
8 changes: 4 additions & 4 deletions trunk/kernel/trace/ring_buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ enum {
RB_BUFFERS_DISABLED = 1 << RB_BUFFERS_DISABLED_BIT,
};

static long ring_buffer_flags __read_mostly = RB_BUFFERS_ON;
static unsigned long ring_buffer_flags __read_mostly = RB_BUFFERS_ON;

/**
* tracing_on - enable all tracing buffers
Expand Down Expand Up @@ -2501,7 +2501,7 @@ static ssize_t
rb_simple_read(struct file *filp, char __user *ubuf,
size_t cnt, loff_t *ppos)
{
long *p = filp->private_data;
unsigned long *p = filp->private_data;
char buf[64];
int r;

Expand All @@ -2517,9 +2517,9 @@ static ssize_t
rb_simple_write(struct file *filp, const char __user *ubuf,
size_t cnt, loff_t *ppos)
{
long *p = filp->private_data;
unsigned long *p = filp->private_data;
char buf[64];
long val;
unsigned long val;
int ret;

if (cnt >= sizeof(buf))
Expand Down
6 changes: 3 additions & 3 deletions trunk/kernel/trace/trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -2147,7 +2147,7 @@ tracing_ctrl_write(struct file *filp, const char __user *ubuf,
{
struct trace_array *tr = filp->private_data;
char buf[64];
long val;
unsigned long val;
int ret;

if (cnt >= sizeof(buf))
Expand Down Expand Up @@ -2295,9 +2295,9 @@ static ssize_t
tracing_max_lat_write(struct file *filp, const char __user *ubuf,
size_t cnt, loff_t *ppos)
{
long *ptr = filp->private_data;
unsigned long *ptr = filp->private_data;
char buf[64];
long val;
unsigned long val;
int ret;

if (cnt >= sizeof(buf))
Expand Down

0 comments on commit 0981377

Please sign in to comment.