trace_mmiotrace.c (c47956d9ae3341d2d1998bff26620fa3338c01e4) trace_mmiotrace.c (f0868d1e23a8efec33beb3aa688aab7fdb1ae093)
1/*
2 * Memory mapped I/O tracing
3 *
4 * Copyright (C) 2008 Pekka Paalanen <pq@iki.fi>
5 */
6
7#define DEBUG 1
8
9#include <linux/kernel.h>
10#include <linux/mmiotrace.h>
11#include <linux/pci.h>
12
13#include "trace.h"
1/*
2 * Memory mapped I/O tracing
3 *
4 * Copyright (C) 2008 Pekka Paalanen <pq@iki.fi>
5 */
6
7#define DEBUG 1
8
9#include <linux/kernel.h>
10#include <linux/mmiotrace.h>
11#include <linux/pci.h>
12
13#include "trace.h"
14#include "trace_output.h"
14
15struct header_iter {
16 struct pci_dev *dev;
17};
18
19static struct trace_array *mmio_trace_array;
20static bool overrun_detected;
21static unsigned long prev_overruns;

--- 342 unchanged lines hidden ---
15
16struct header_iter {
17 struct pci_dev *dev;
18};
19
20static struct trace_array *mmio_trace_array;
21static bool overrun_detected;
22static unsigned long prev_overruns;

--- 342 unchanged lines hidden ---