X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/31f23f1347e0542b7d19ff8ec2e60da9f979dbf0..ef5e03051fd86d66844d61f3fcc1c7a82957826a:/src/recdb.c diff --git a/src/recdb.c b/src/recdb.c index 5399622..024bc9a 100644 --- a/src/recdb.c +++ b/src/recdb.c @@ -3,9 +3,9 @@ * * This file is part of x3. * - * srvx is free software; you can redistribute it and/or modify + * x3 is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, @@ -625,6 +625,7 @@ parse_database(const char *filename) /* Try mmap */ if (!mmap_error && (recdb.s = mmap(NULL, recdb.length, PROT_READ|PROT_WRITE, MAP_PRIVATE, fileno(recdb.f), 0)) != MAP_FAILED) { recdb.type = RECDB_MMAP; + madvise(recdb.s, recdb.length, MADV_SEQUENTIAL); } else { /* Fall back to stdio */ if (!mmap_error) {