diff options
author | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2011-02-05 20:11:30 -0500 |
---|---|---|
committer | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2011-11-24 14:08:23 -0500 |
commit | b739b4033c0f55f9194be2793db9e6ace06047db (patch) | |
tree | 9102594f34c8df353707613d8628d8d7b5e6786c | |
parent | fd6d753fc4e01f91427176ebfcced2c3d3f36c32 (diff) |
Feather-Trace: start with the largest permissible range
MAX_ORDER is 11, but this is about number of records, not number of pages.
-rw-r--r-- | litmus/trace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/litmus/trace.c b/litmus/trace.c index e7ea1c2ab3e4..1e916aa406b9 100644 --- a/litmus/trace.c +++ b/litmus/trace.c | |||
@@ -69,7 +69,7 @@ feather_callback void save_timestamp_cpu(unsigned long event, | |||
69 | * should be 8M; it is the max we can ask to buddy system allocator (MAX_ORDER) | 69 | * should be 8M; it is the max we can ask to buddy system allocator (MAX_ORDER) |
70 | * and we might not get as much | 70 | * and we might not get as much |
71 | */ | 71 | */ |
72 | #define NO_TIMESTAMPS (2 << 11) | 72 | #define NO_TIMESTAMPS (2 << 16) |
73 | 73 | ||
74 | static int alloc_timestamp_buffer(struct ftdev* ftdev, unsigned int idx) | 74 | static int alloc_timestamp_buffer(struct ftdev* ftdev, unsigned int idx) |
75 | { | 75 | { |