diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-05-25 14:18:35 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-05-26 13:17:16 +0200 |
commit | 6c15c9174134be48c57a8ac5f2ff09d0ba5f1df8 (patch) | |
tree | f8e57051b8b83f29a2eddf6180e34aca3a614f09 /ext2fs/pager.c | |
parent | 03fee0acc07c7ec484746ab60b1b55e33b9c19f9 (diff) |
ext2fs: fix diskfs_pager_users
This fixes a bug introduced in 86122789.
* ext2fs/pager.c (diskfs_pager_users): We count file_pager_bucket,
which does not include the disk pagers. Fix condition accordingly.
Diffstat (limited to 'ext2fs/pager.c')
-rw-r--r-- | ext2fs/pager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext2fs/pager.c b/ext2fs/pager.c index 017efcca..ce5bc6d2 100644 --- a/ext2fs/pager.c +++ b/ext2fs/pager.c @@ -1449,7 +1449,7 @@ diskfs_pager_users () { int npagers = ports_count_bucket (file_pager_bucket); - if (npagers <= 1) + if (npagers == 0) return 0; if (MAY_CACHE) |