Skip to content

Commit

Permalink
oprofile: more whitespace fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Richter <robert.richter@amd.com>
  • Loading branch information
Robert Richter committed Oct 15, 2008
1 parent c92960f commit 25ad291
Show file tree
Hide file tree
Showing 23 changed files with 91 additions and 91 deletions.
2 changes: 1 addition & 1 deletion arch/alpha/oprofile/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ op_axp_stop(void)
}

static int
op_axp_create_files(struct super_block * sb, struct dentry * root)
op_axp_create_files(struct super_block *sb, struct dentry *root)
{
int i;

Expand Down
4 changes: 2 additions & 2 deletions arch/ia64/oprofile/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
#include <linux/init.h>
#include <linux/errno.h>

extern int perfmon_init(struct oprofile_operations * ops);
extern int perfmon_init(struct oprofile_operations *ops);
extern void perfmon_exit(void);
extern void ia64_backtrace(struct pt_regs * const regs, unsigned int depth);

int __init oprofile_arch_init(struct oprofile_operations * ops)
int __init oprofile_arch_init(struct oprofile_operations *ops)
{
int ret = -ENODEV;

Expand Down
4 changes: 2 additions & 2 deletions arch/ia64/oprofile/perfmon.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ static pfm_buffer_fmt_t oprofile_fmt = {
};


static char * get_cpu_type(void)
static char *get_cpu_type(void)
{
__u8 family = local_cpu_data->family;

Expand All @@ -75,7 +75,7 @@ static char * get_cpu_type(void)

static int using_perfmon;

int perfmon_init(struct oprofile_operations * ops)
int perfmon_init(struct oprofile_operations *ops)
{
int ret = pfm_register_buffer_fmt(&oprofile_fmt);
if (ret)
Expand Down
2 changes: 1 addition & 1 deletion arch/m32r/oprofile/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <linux/errno.h>
#include <linux/init.h>

int __init oprofile_arch_init(struct oprofile_operations * ops)
int __init oprofile_arch_init(struct oprofile_operations *ops)
{
return -ENODEV;
}
Expand Down
2 changes: 1 addition & 1 deletion arch/mips/oprofile/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ static int op_mips_setup(void)
return 0;
}

static int op_mips_create_files(struct super_block * sb, struct dentry * root)
static int op_mips_create_files(struct super_block *sb, struct dentry *root)
{
int i;

Expand Down
2 changes: 1 addition & 1 deletion arch/mips/oprofile/op_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ struct op_counter_config {
/* Per-architecture configury and hooks. */
struct op_mips_model {
void (*reg_setup) (struct op_counter_config *);
void (*cpu_setup) (void * dummy);
void (*cpu_setup) (void *dummy);
int (*init)(void);
void (*exit)(void);
void (*cpu_start)(void *args);
Expand Down
2 changes: 1 addition & 1 deletion arch/mips/oprofile/op_model_rm9000.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ static void rm9000_cpu_stop(void *args)
write_c0_perfcontrol(0);
}

static irqreturn_t rm9000_perfcount_handler(int irq, void * dev_id)
static irqreturn_t rm9000_perfcount_handler(int irq, void *dev_id)
{
unsigned int control = read_c0_perfcontrol();
struct pt_regs *regs = get_irq_regs();
Expand Down
2 changes: 1 addition & 1 deletion arch/parisc/oprofile/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <linux/kernel.h>
#include <linux/oprofile.h>

int __init oprofile_arch_init(struct oprofile_operations * ops)
int __init oprofile_arch_init(struct oprofile_operations *ops)
{
return -ENODEV;
}
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/oprofile/op_model_cell.c
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ set_count_mode(u32 kernel, u32 user)
}
}

static inline void enable_ctr(u32 cpu, u32 ctr, u32 * pm07_cntrl)
static inline void enable_ctr(u32 cpu, u32 ctr, u32 *pm07_cntrl)
{

pm07_cntrl[ctr] |= CBE_PM_CTR_ENABLE;
Expand Down
2 changes: 1 addition & 1 deletion arch/sparc/oprofile/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <linux/errno.h>
#include <linux/init.h>

int __init oprofile_arch_init(struct oprofile_operations * ops)
int __init oprofile_arch_init(struct oprofile_operations *ops)
{
return -ENODEV;
}
Expand Down
2 changes: 1 addition & 1 deletion arch/sparc64/oprofile/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <linux/errno.h>
#include <linux/init.h>

int __init oprofile_arch_init(struct oprofile_operations * ops)
int __init oprofile_arch_init(struct oprofile_operations *ops)
{
return -ENODEV;
}
Expand Down
2 changes: 1 addition & 1 deletion arch/x86/oprofile/backtrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ struct frame_head {
} __attribute__((packed));

static struct frame_head *
dump_user_backtrace(struct frame_head * head)
dump_user_backtrace(struct frame_head *head)
{
struct frame_head bufhead[2];

Expand Down
6 changes: 3 additions & 3 deletions arch/x86/oprofile/op_model_amd.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ static unsigned long reset_value[NUM_COUNTERS];
data. Should then be added to linux/oprofile.h. */
extern void
oprofile_add_ibs_sample(struct pt_regs *const regs,
unsigned int * const ibs_sample, int ibs_code);
unsigned int *const ibs_sample, int ibs_code);

struct ibs_fetch_sample {
/* MSRC001_1031 IBS Fetch Linear Address Register */
Expand Down Expand Up @@ -469,9 +469,9 @@ static void clear_ibs_nmi(void)
on_each_cpu(apic_clear_ibs_nmi_per_cpu, NULL, 1);
}

static int (*create_arch_files)(struct super_block * sb, struct dentry * root);
static int (*create_arch_files)(struct super_block *sb, struct dentry *root);

static int setup_ibs_files(struct super_block * sb, struct dentry * root)
static int setup_ibs_files(struct super_block *sb, struct dentry *root)
{
struct dentry *dir;
int ret = 0;
Expand Down
4 changes: 2 additions & 2 deletions arch/x86/oprofile/op_x86_model.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ struct op_msr {
};

struct op_msrs {
struct op_msr * counters;
struct op_msr * controls;
struct op_msr *counters;
struct op_msr *controls;
};

struct pt_regs;
Expand Down
22 changes: 11 additions & 11 deletions drivers/oprofile/cpu_buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ void end_cpu_work(void)
}

/* Resets the cpu buffer to a sane state. */
void cpu_buffer_reset(struct oprofile_cpu_buffer * cpu_buf)
void cpu_buffer_reset(struct oprofile_cpu_buffer *cpu_buf)
{
/* reset these to invalid values; the next sample
* collected will populate the buffer with proper
Expand All @@ -123,7 +123,7 @@ void cpu_buffer_reset(struct oprofile_cpu_buffer * cpu_buf)
}

/* compute number of available slots in cpu_buffer queue */
static unsigned long nr_available_slots(struct oprofile_cpu_buffer const * b)
static unsigned long nr_available_slots(struct oprofile_cpu_buffer const *b)
{
unsigned long head = b->head_pos;
unsigned long tail = b->tail_pos;
Expand All @@ -134,7 +134,7 @@ static unsigned long nr_available_slots(struct oprofile_cpu_buffer const * b)
return tail + (b->buffer_size - head) - 1;
}

static void increment_head(struct oprofile_cpu_buffer * b)
static void increment_head(struct oprofile_cpu_buffer *b)
{
unsigned long new_head = b->head_pos + 1;

Expand All @@ -149,17 +149,17 @@ static void increment_head(struct oprofile_cpu_buffer * b)
}

static inline void
add_sample(struct oprofile_cpu_buffer * cpu_buf,
add_sample(struct oprofile_cpu_buffer *cpu_buf,
unsigned long pc, unsigned long event)
{
struct op_sample * entry = &cpu_buf->buffer[cpu_buf->head_pos];
struct op_sample *entry = &cpu_buf->buffer[cpu_buf->head_pos];
entry->eip = pc;
entry->event = event;
increment_head(cpu_buf);
}

static inline void
add_code(struct oprofile_cpu_buffer * buffer, unsigned long value)
add_code(struct oprofile_cpu_buffer *buffer, unsigned long value)
{
add_sample(buffer, ESCAPE_CODE, value);
}
Expand All @@ -173,10 +173,10 @@ add_code(struct oprofile_cpu_buffer * buffer, unsigned long value)
* pc. We tag this in the buffer by generating kernel enter/exit
* events whenever is_kernel changes
*/
static int log_sample(struct oprofile_cpu_buffer * cpu_buf, unsigned long pc,
static int log_sample(struct oprofile_cpu_buffer *cpu_buf, unsigned long pc,
int is_kernel, unsigned long event)
{
struct task_struct * task;
struct task_struct *task;

cpu_buf->sample_received++;

Expand Down Expand Up @@ -222,7 +222,7 @@ static int oprofile_begin_trace(struct oprofile_cpu_buffer *cpu_buf)
return 1;
}

static void oprofile_end_trace(struct oprofile_cpu_buffer * cpu_buf)
static void oprofile_end_trace(struct oprofile_cpu_buffer *cpu_buf)
{
cpu_buf->tracing = 0;
}
Expand Down Expand Up @@ -260,7 +260,7 @@ void oprofile_add_sample(struct pt_regs * const regs, unsigned long event)
#define MAX_IBS_SAMPLE_SIZE 14

void oprofile_add_ibs_sample(struct pt_regs *const regs,
unsigned int * const ibs_sample, int ibs_code)
unsigned int *const ibs_sample, int ibs_code)
{
int is_kernel = !user_mode(regs);
struct oprofile_cpu_buffer *cpu_buf = &__get_cpu_var(cpu_buffer);
Expand Down Expand Up @@ -345,7 +345,7 @@ void oprofile_add_trace(unsigned long pc)
*/
static void wq_sync_buffer(struct work_struct *work)
{
struct oprofile_cpu_buffer * b =
struct oprofile_cpu_buffer *b =
container_of(work, struct oprofile_cpu_buffer, work.work);
if (b->cpu != smp_processor_id()) {
printk(KERN_DEBUG "WQ on CPU%d, prefer CPU%d\n",
Expand Down
6 changes: 3 additions & 3 deletions drivers/oprofile/cpu_buffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ struct oprofile_cpu_buffer {
volatile unsigned long head_pos;
volatile unsigned long tail_pos;
unsigned long buffer_size;
struct task_struct * last_task;
struct task_struct *last_task;
int last_is_kernel;
int tracing;
struct op_sample * buffer;
struct op_sample *buffer;
unsigned long sample_received;
unsigned long sample_lost_overflow;
unsigned long backtrace_aborted;
Expand All @@ -50,7 +50,7 @@ struct oprofile_cpu_buffer {

DECLARE_PER_CPU(struct oprofile_cpu_buffer, cpu_buffer);

void cpu_buffer_reset(struct oprofile_cpu_buffer * cpu_buf);
void cpu_buffer_reset(struct oprofile_cpu_buffer *cpu_buf);

/* transient events for the CPU buffer -> event buffer */
#define CPU_IS_KERNEL 1
Expand Down
10 changes: 5 additions & 5 deletions drivers/oprofile/event_buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ DEFINE_MUTEX(buffer_mutex);

static unsigned long buffer_opened;
static DECLARE_WAIT_QUEUE_HEAD(buffer_wait);
static unsigned long * event_buffer;
static unsigned long *event_buffer;
static unsigned long buffer_size;
static unsigned long buffer_watershed;
static size_t buffer_pos;
Expand Down Expand Up @@ -98,7 +98,7 @@ void free_event_buffer(void)
}


static int event_buffer_open(struct inode * inode, struct file * file)
static int event_buffer_open(struct inode *inode, struct file *file)
{
int err = -EPERM;

Expand Down Expand Up @@ -134,7 +134,7 @@ static int event_buffer_open(struct inode * inode, struct file * file)
}


static int event_buffer_release(struct inode * inode, struct file * file)
static int event_buffer_release(struct inode *inode, struct file *file)
{
oprofile_stop();
oprofile_shutdown();
Expand All @@ -146,8 +146,8 @@ static int event_buffer_release(struct inode * inode, struct file * file)
}


static ssize_t event_buffer_read(struct file * file, char __user * buf,
size_t count, loff_t * offset)
static ssize_t event_buffer_read(struct file *file, char __user *buf,
size_t count, loff_t *offset)
{
int retval = -EINVAL;
size_t const max = buffer_size * sizeof(unsigned long);
Expand Down
4 changes: 2 additions & 2 deletions drivers/oprofile/oprof.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ extern unsigned long backtrace_depth;
struct super_block;
struct dentry;

void oprofile_create_files(struct super_block * sb, struct dentry * root);
void oprofile_timer_init(struct oprofile_operations * ops);
void oprofile_create_files(struct super_block *sb, struct dentry *root);
void oprofile_timer_init(struct oprofile_operations *ops);

int oprofile_set_backtrace(unsigned long depth);

Expand Down
16 changes: 8 additions & 8 deletions drivers/oprofile/oprofile_files.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ unsigned long fs_buffer_size = 131072;
unsigned long fs_cpu_buffer_size = 8192;
unsigned long fs_buffer_watershed = 32768; /* FIXME: tune */

static ssize_t depth_read(struct file * file, char __user * buf, size_t count, loff_t * offset)
static ssize_t depth_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
{
return oprofilefs_ulong_to_user(backtrace_depth, buf, count, offset);
}


static ssize_t depth_write(struct file * file, char const __user * buf, size_t count, loff_t * offset)
static ssize_t depth_write(struct file *file, char const __user *buf, size_t count, loff_t *offset)
{
unsigned long val;
int retval;
Expand All @@ -50,7 +50,7 @@ static const struct file_operations depth_fops = {
};


static ssize_t pointer_size_read(struct file * file, char __user * buf, size_t count, loff_t * offset)
static ssize_t pointer_size_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
{
return oprofilefs_ulong_to_user(sizeof(void *), buf, count, offset);
}
Expand All @@ -61,7 +61,7 @@ static const struct file_operations pointer_size_fops = {
};


static ssize_t cpu_type_read(struct file * file, char __user * buf, size_t count, loff_t * offset)
static ssize_t cpu_type_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
{
return oprofilefs_str_to_user(oprofile_ops.cpu_type, buf, count, offset);
}
Expand All @@ -72,13 +72,13 @@ static const struct file_operations cpu_type_fops = {
};


static ssize_t enable_read(struct file * file, char __user * buf, size_t count, loff_t * offset)
static ssize_t enable_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
{
return oprofilefs_ulong_to_user(oprofile_started, buf, count, offset);
}


static ssize_t enable_write(struct file * file, char const __user * buf, size_t count, loff_t * offset)
static ssize_t enable_write(struct file *file, char const __user *buf, size_t count, loff_t *offset)
{
unsigned long val;
int retval;
Expand Down Expand Up @@ -107,7 +107,7 @@ static const struct file_operations enable_fops = {
};


static ssize_t dump_write(struct file * file, char const __user * buf, size_t count, loff_t * offset)
static ssize_t dump_write(struct file *file, char const __user *buf, size_t count, loff_t *offset)
{
wake_up_buffer_waiter();
return count;
Expand All @@ -118,7 +118,7 @@ static const struct file_operations dump_fops = {
.write = dump_write,
};

void oprofile_create_files(struct super_block * sb, struct dentry * root)
void oprofile_create_files(struct super_block *sb, struct dentry *root)
{
oprofilefs_create_file(sb, root, "enable", &enable_fops);
oprofilefs_create_file_perm(sb, root, "dump", &dump_fops, 0666);
Expand Down
Loading

0 comments on commit 25ad291

Please sign in to comment.