diff options
author | Alan D. Brunelle <Alan.Brunelle@hp.com> | 2007-10-10 13:25:20 -0400 |
---|---|---|
committer | Alan D. Brunelle <Alan.Brunelle@hp.com> | 2007-10-10 13:25:20 -0400 |
commit | 60d658630cfe397a93a97f1b38350b27eacc317e (patch) | |
tree | b5152911d40aa6ab1211d35ee208698a5d038f55 /btreplay/btreplay.c | |
parent | cbb3e69ee7499d2df365e2dbc1dfd367a4d997f8 (diff) | |
download | blktrace-60d658630cfe397a93a97f1b38350b27eacc317e.tar.gz blktrace-60d658630cfe397a93a97f1b38350b27eacc317e.tar.bz2 |
Added O_NOATIME to replay file
Signed-off-by: Alan D. Brunelle <Alan.Brunelle@hp.com>
Diffstat (limited to 'btreplay/btreplay.c')
-rw-r--r-- | btreplay/btreplay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/btreplay/btreplay.c b/btreplay/btreplay.c index 1808b35..8e6b7dc 100644 --- a/btreplay/btreplay.c +++ b/btreplay/btreplay.c @@ -1318,7 +1318,7 @@ static void *replay_sub(void *arg) pin_to_cpu(tip); sprintf(path, "/dev/%s", map_dev(tip->devnm)); - tip->ofd = open(path, O_RDWR | O_DIRECT); + tip->ofd = open(path, O_RDWR | O_DIRECT | O_NOATIME); if (tip->ofd < 0) { fatal(path, ERR_SYSCALL, "Failed device open\n"); /*NOTREACHED*/ |