forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fscache: Remove the contents of the fscache driver, pending rewrite
Remove the code that comprises the fscache driver as it's going to be substantially rewritten, with the majority of the code being erased in the rewrite. A small piece of linux/fscache.h is left as that is #included by a bunch of network filesystems. Signed-off-by: David Howells <[email protected]> Reviewed-by: Jeff Layton <[email protected]> cc: [email protected] Link: https://lore.kernel.org/r/163819578724.215744.18210619052245724238.stgit@warthog.procyon.org.uk/ # v1 Link: https://lore.kernel.org/r/163906884814.143852.6727245089843862889.stgit@warthog.procyon.org.uk/ # v2 Link: https://lore.kernel.org/r/163967077097.1823006.1377665951499979089.stgit@warthog.procyon.org.uk/ # v3 Link: https://lore.kernel.org/r/164021485548.640689.13876080567388696162.stgit@warthog.procyon.org.uk/ # v4
- Loading branch information
Showing
20 changed files
with
13 additions
and
7,805 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,4 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
|
||
config FSCACHE | ||
tristate "General filesystem local caching manager" | ||
select NETFS_SUPPORT | ||
help | ||
This option enables a generic filesystem caching manager that can be | ||
used by various network and other filesystems to cache data locally. | ||
Different sorts of caches can be plugged in, depending on the | ||
resources available. | ||
|
||
See Documentation/filesystems/caching/fscache.rst for more information. | ||
|
||
config FSCACHE_STATS | ||
bool "Gather statistical information on local caching" | ||
depends on FSCACHE && PROC_FS | ||
select NETFS_STATS | ||
help | ||
This option causes statistical information to be gathered on local | ||
caching and exported through file: | ||
|
||
/proc/fs/fscache/stats | ||
|
||
The gathering of statistics adds a certain amount of overhead to | ||
execution as there are a quite a few stats gathered, and on a | ||
multi-CPU system these may be on cachelines that keep bouncing | ||
between CPUs. On the other hand, the stats are very useful for | ||
debugging purposes. Saying 'Y' here is recommended. | ||
|
||
See Documentation/filesystems/caching/fscache.rst for more information. | ||
|
||
config FSCACHE_DEBUG | ||
bool "Debug FS-Cache" | ||
depends on FSCACHE | ||
help | ||
This permits debugging to be dynamically enabled in the local caching | ||
management module. If this is set, the debugging output may be | ||
enabled by setting bits in /sys/modules/fscache/parameter/debug. | ||
|
||
See Documentation/filesystems/caching/fscache.rst for more information. | ||
|
||
config FSCACHE_OLD_API | ||
bool |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.