diff options
author | Alan D. Brunelle <Alan.Brunelle@hp.com> | 2005-10-05 09:12:17 +0200 |
---|---|---|
committer | Jens Axboe <axboe@suse.de> | 2005-10-05 09:12:17 +0200 |
commit | 98f8386bc828cc00671b3e5ca4ee1b99332424fb (patch) | |
tree | 9b8625f92c958a7212d5d6e98acfe783cbaf9a73 /blktrace.h | |
parent | d1d7f15fb45b67e1b0fd077055f8e514cf4c156e (diff) | |
download | blktrace-98f8386bc828cc00671b3e5ca4ee1b99332424fb.tar.gz blktrace-98f8386bc828cc00671b3e5ca4ee1b99332424fb.tar.bz2 |
[PATCH] blkparse: Add -a/-A options to blkparse as well
This moves the mask stuff into a seperate file, act_mask.c
Diffstat (limited to 'blktrace.h')
-rw-r--r-- | blktrace.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,6 +1,7 @@ #ifndef BLKTRACE_H #define BLKTRACE_H +#include <stdio.h> #include <byteswap.h> #include <asm/types.h> #include <asm/byteorder.h> @@ -112,5 +113,7 @@ extern void set_all_format_specs(char *); extern int add_format_spec(char *); extern void process_fmt(char *, struct per_cpu_info *, struct blk_io_trace *, unsigned long long, int, unsigned char *); +extern int valid_act_opt(int); +extern int find_mask_map(char *); #endif |