Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0-only
0002 
0003 config NETFS_SUPPORT
0004         tristate
0005         help
0006           This option enables support for network filesystems, including
0007           helpers for high-level buffered I/O, abstracting out read
0008           segmentation, local caching and transparent huge page support.
0009 
0010 config NETFS_STATS
0011         bool "Gather statistical information on local caching"
0012         depends on NETFS_SUPPORT && PROC_FS
0013         help
0014           This option causes statistical information to be gathered on local
0015           caching and exported through file:
0016 
0017                 /proc/fs/fscache/stats
0018 
0019           The gathering of statistics adds a certain amount of overhead to
0020           execution as there are a quite a few stats gathered, and on a
0021           multi-CPU system these may be on cachelines that keep bouncing
0022           between CPUs.  On the other hand, the stats are very useful for
0023           debugging purposes.  Saying 'Y' here is recommended.