Lines Matching +full:add +full:- +full:fs
2 * sysctl.c - Code for sysctl handling in NTFS Linux kernel driver. Part of
3 * the Linux-NTFS project. Adapted from the old NTFS driver,
6 * Copyright (c) 2002-2005 Anton Altaparmakov
19 * along with this program (in the main directory of the Linux-NTFS
21 * Foundation,Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
39 .procname = "ntfs-debug",
48 /* Define the parent directory /proc/sys/fs. */
51 .procname = "fs",
62 * ntfs_sysctl - add or remove the debug sysctl
63 * @add: add (1) or remove (0) the sysctl
65 * Add or remove the debug sysctl. Return 0 on success or -errno on error.
67 int ntfs_sysctl(int add) in ntfs_sysctl() argument
69 if (add) { in ntfs_sysctl()
73 return -ENOMEM; in ntfs_sysctl()