Skip to content

Commit

Permalink
[ARM] Oprofile: dynamically allocate counter_config
Browse files Browse the repository at this point in the history
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed Mar 21, 2006
1 parent 93ad794 commit ae92dc9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions arch/arm/oprofile/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include <linux/init.h>
#include <linux/oprofile.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/sysdev.h>
#include <linux/mutex.h>

Expand All @@ -20,15 +21,15 @@ static struct op_arm_model_spec *op_arm_model;
static int op_arm_enabled;
static DEFINE_MUTEX(op_arm_mutex);

struct op_counter_config counter_config[OP_MAX_COUNTER];
struct op_counter_config *counter_config;

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

for (i = 0; i < op_arm_model->num_counters; i++) {
struct dentry *dir;
char buf[2];
char buf[4];

snprintf(buf, sizeof buf, "%d", i);
dir = oprofilefs_mkdir(sb, root, buf);
Expand Down Expand Up @@ -139,6 +140,11 @@ int __init oprofile_arch_init(struct oprofile_operations *ops)
if (ret < 0)
return ret;

counter_config = kmalloc(sizeof(struct op_counter_config) * spec->num_counters,
GFP_KERNEL);
if (!counter_config)
return -ENOMEM;

op_arm_model = spec;
init_driverfs();
ops->create_files = op_arm_create_files;
Expand All @@ -160,4 +166,5 @@ void oprofile_arch_exit(void)
exit_driverfs();
op_arm_model = NULL;
}
kfree(counter_config);
}
2 changes: 1 addition & 1 deletion arch/arm/oprofile/op_counter.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ struct op_counter_config {
unsigned long user;
};

extern struct op_counter_config counter_config[];
extern struct op_counter_config *counter_config;

#endif /* OP_COUNTER_H */

0 comments on commit ae92dc9

Please sign in to comment.