Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 100592
b: refs/heads/master
c: fe1ffaf
h: refs/heads/master
v: v3
  • Loading branch information
Pekka Paalanen authored and Thomas Gleixner committed May 24, 2008
1 parent 2897d33 commit bbae8b8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 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: 75bb88350e0501b3cf5ac096a1008757844414a9
refs/heads/master: fe1ffafa80f6673101c6560c2bacfe3df10372ee
26 changes: 16 additions & 10 deletions trunk/arch/x86/kernel/mmiotrace/mmio-mod.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
#include <asm/pgtable.h>
#include <linux/mmiotrace.h>
#include <asm/e820.h> /* for ISA_START_ADDRESS */
#include <asm/atomic.h>

#include "kmmio.h"
#include "pf_in.h"
Expand All @@ -47,17 +48,20 @@ struct trap_reason {
int active_traces;
};

/* Accessed per-cpu. */
static struct trap_reason pf_reason[NR_CPUS];
static struct mm_io_header_rw cpu_trace[NR_CPUS];

/* Access to this is not per-cpu. */
static atomic_t dropped[NR_CPUS];

static struct file_operations mmio_fops = {
.owner = THIS_MODULE,
};

static const size_t subbuf_size = 256*1024;
static struct rchan *chan;
static struct dentry *dir;
static int suspended; /* XXX should this be per cpu? */
static struct proc_dir_entry *proc_marker_file;

/* module parameters */
Expand Down Expand Up @@ -269,19 +273,21 @@ static void post(struct kmmio_probe *p, unsigned long condition,
static int subbuf_start_handler(struct rchan_buf *buf, void *subbuf,
void *prev_subbuf, size_t prev_padding)
{
unsigned int cpu = buf->cpu;
atomic_t *drop = &dropped[cpu];
int count;
if (relay_buf_full(buf)) {
if (!suspended) {
suspended = 1;
printk(KERN_ERR MODULE_NAME
": cpu %d buffer full!!!\n",
smp_processor_id());
if (atomic_inc_return(drop) == 1) {
printk(KERN_ERR MODULE_NAME ": cpu %d buffer full!\n",
cpu);
}
return 0;
} else if (suspended) {
suspended = 0;
} else if ((count = atomic_read(drop))) {
printk(KERN_ERR MODULE_NAME
": cpu %d buffer no longer full.\n",
smp_processor_id());
": cpu %d buffer no longer full, "
"missed %d events.\n",
cpu, count);
atomic_sub(count, drop);
}

return 1;
Expand Down

0 comments on commit bbae8b8

Please sign in to comment.