diff options
Diffstat (limited to 'fs/ubifs/shrinker.c')
| -rw-r--r-- | fs/ubifs/shrinker.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/fs/ubifs/shrinker.c b/fs/ubifs/shrinker.c index ca953a945029..9e1d05666fed 100644 --- a/fs/ubifs/shrinker.c +++ b/fs/ubifs/shrinker.c | |||
| @@ -284,7 +284,11 @@ int ubifs_shrinker(struct shrinker *shrink, struct shrink_control *sc) | |||
| 284 | long clean_zn_cnt = atomic_long_read(&ubifs_clean_zn_cnt); | 284 | long clean_zn_cnt = atomic_long_read(&ubifs_clean_zn_cnt); |
| 285 | 285 | ||
| 286 | if (nr == 0) | 286 | if (nr == 0) |
| 287 | return clean_zn_cnt; | 287 | /* |
| 288 | * Due to the way UBIFS updates the clean znode counter it may | ||
| 289 | * temporarily be negative. | ||
| 290 | */ | ||
| 291 | return clean_zn_cnt >= 0 ? clean_zn_cnt : 1; | ||
| 288 | 292 | ||
| 289 | if (!clean_zn_cnt) { | 293 | if (!clean_zn_cnt) { |
| 290 | /* | 294 | /* |
