From: oetiker Date: Thu, 28 May 2009 05:25:32 +0000 (+0000) Subject: madvise hints may not be ORed since they are enumerated ... #224 X-Git-Url: https://git.octo.it/?p=rrdtool.git;a=commitdiff_plain;h=f01e70ccd0b9bf66255e494fabfb1787c7c7d930 madvise hints may not be ORed since they are enumerated ... #224 git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@1834 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/src/rrd_open.c b/src/rrd_open.c index 59526d8..d09f640 100644 --- a/src/rrd_open.c +++ b/src/rrd_open.c @@ -259,12 +259,14 @@ rrd_file_t *rrd_open( #ifdef USE_MADVISE if (rdwr & RRD_COPY) { /* We will read everything in a moment (copying) */ - madvise(data, rrd_file->file_len, MADV_WILLNEED | MADV_SEQUENTIAL); + madvise(data, rrd_file->file_len, MADV_WILLNEED ); + madvise(data, rrd_file->file_len, MADV_SEQUENTIAL ); } else { /* We do not need to read anything in for the moment */ madvise(data, rrd_file->file_len, MADV_RANDOM); /* the stat_head will be needed soonish, so hint accordingly */ - madvise(data, sizeof(stat_head_t), MADV_WILLNEED | MADV_RANDOM); + madvise(data, sizeof(stat_head_t), MADV_WILLNEED); + madvise(data, sizeof(stat_head_t), MADV_RANDOM); } #endif