HomeFreeBSD

Fix 'negative objects to delete' warning

Description

Fix 'negative objects to delete' warning

Normally when the arc_shrinker_func() function is called the return
value should be:

>=0 - To indicate the number of freeable objects in the cache, or
-1  - To indicate this cache should be skipped

However, when the shrinker callback is called with 'nr_to_scan' equal
to zero. The caller simply wants the number of freeable objects in
the cache and we must never return -1. This patch reorders the
first two conditionals in arc_shrinker_func() to ensure this behavior.

This patch also now explictly casts arc_size and arc_c_min to signed
int64_t types so MAX(x, 0) works as expected. As unsigned types
we would never see an negative value which defeated the purpose of
the MAX() lower bound and broke the shrinker logic.

Finally, when nr_to_scan is non-zero we explictly prevent all reclaim
below arc_c_min. This is done to prevent the Linux page cache from
completely crowding out the ARC. This limit is tunable and some
experimentation is likely going to be required to set it exactly right.
For now we're sticking with the OpenSolaris defaults.

Closes #218
Closes #243

Details

Provenance
Brian Behlendorf <behlendorf1@llnl.gov>Authored on May 9 2011, 7:18 PM
Parents
rGd9bfe0f57a82: Fix distribution detection for gentoo
Branches
Unknown
Tags
Unknown

Event Timeline

Brian Behlendorf <behlendorf1@llnl.gov> committed rG3fd70ee6b0bc: Fix 'negative objects to delete' warning (authored by Brian Behlendorf <behlendorf1@llnl.gov>).May 18 2011, 5:29 PM