mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-25 23:21:33 +03:00
readahead: put limit on files we read ahead
This commit is contained in:
parent
746f890636
commit
6e3eb5ba18
@ -255,6 +255,9 @@ static int collect(const char *root) {
|
||||
ssize_t n;
|
||||
struct fanotify_event_metadata *m;
|
||||
|
||||
if (hashmap_size(files) > READAHEAD_FILES_MAX)
|
||||
break;
|
||||
|
||||
if (poll(pollfd, _FD_MAX, -1) < 0) {
|
||||
|
||||
if (errno == EINTR)
|
||||
|
@ -25,6 +25,7 @@
|
||||
#include <sys/stat.h>
|
||||
|
||||
#define READAHEAD_FILE_SIZE_MAX (128*1024*1024)
|
||||
#define READAHEAD_FILES_MAX (16*1024)
|
||||
|
||||
int file_verify(int fd, const char *fn, struct stat *st);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user