projects
/
blktrace.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
017d166
)
[PATCH] Remove native/non-native print
author
Jens Axboe
<axboe@suse.de>
Mon, 6 Feb 2006 12:02:45 +0000
(13:02 +0100)
committer
Jens Axboe
<axboe@suse.de>
Mon, 6 Feb 2006 12:02:45 +0000
(13:02 +0100)
blktrace.h
patch
|
blob
|
blame
|
history
diff --git
a/blktrace.h
b/blktrace.h
index 13d6e03ac8b7fc93105c424d3a369fa47911817b..8beb415aac450ed0d3ee28f6f23b4bd583f82d45 100644
(file)
--- a/
blktrace.h
+++ b/
blktrace.h
@@
-118,14
+118,12
@@
static inline int check_data_endianness(struct blk_io_trace *bit)
u32 magic;
if ((bit->magic & 0xffffff00) == BLK_IO_TRACE_MAGIC) {
- fprintf(stderr, "data is native\n");
data_is_native = 1;
return 0;
}
magic = __bswap_32(bit->magic);
if ((magic & 0xffffff00) == BLK_IO_TRACE_MAGIC) {
- fprintf(stderr, "data is not native\n");
data_is_native = 0;
return 0;
}