1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Copyright (c) 2001-2005 Silicon Graphics, Inc. 4 * All Rights Reserved. 5 */ 6 #ifndef __XFS_SYSCTL_H__ 7 #define __XFS_SYSCTL_H__ 8 9 #include <linux/sysctl.h> 10 11 /* 12 * Tunable xfs parameters 13 */ 14 15 typedef struct xfs_sysctl_val { 16 int min; 17 int val; 18 int max; 19 } xfs_sysctl_val_t; 20 21 typedef struct xfs_param { 22 xfs_sysctl_val_t sgid_inherit; /* Inherit S_ISGID if process' GID is 23 * not a member of parent dir GID. */ 24 xfs_sysctl_val_t symlink_mode; /* Link creat mode affected by umask */ 25 xfs_sysctl_val_t panic_mask; /* bitmask to cause panic on errors. */ 26 xfs_sysctl_val_t error_level; /* Degree of reporting for problems */ 27 xfs_sysctl_val_t syncd_timer; /* Interval between xfssyncd wakeups */ 28 xfs_sysctl_val_t stats_clear; /* Reset all XFS statistics to zero. */ 29 xfs_sysctl_val_t inherit_sync; /* Inherit the "sync" inode flag. */ 30 xfs_sysctl_val_t inherit_nodump;/* Inherit the "nodump" inode flag. */ 31 xfs_sysctl_val_t inherit_noatim;/* Inherit the "noatime" inode flag. */ 32 xfs_sysctl_val_t inherit_nosym; /* Inherit the "nosymlinks" flag. */ 33 xfs_sysctl_val_t rotorstep; /* inode32 AG rotoring control knob */ 34 xfs_sysctl_val_t inherit_nodfrg;/* Inherit the "nodefrag" inode flag. */ 35 xfs_sysctl_val_t fstrm_timer; /* Filestream dir-AG assoc'n timeout. */ 36 xfs_sysctl_val_t blockgc_timer; /* Interval between blockgc scans */ 37 } xfs_param_t; 38 39 /* 40 * xfs_error_level: 41 * 42 * How much error reporting will be done when internal problems are 43 * encountered. These problems normally return an EFSCORRUPTED to their 44 * caller, with no other information reported. 45 * 46 * 0 No error reports 47 * 1 Report EFSCORRUPTED errors that will cause a filesystem shutdown 48 * 5 Report all EFSCORRUPTED errors (all of the above errors, plus any 49 * additional errors that are known to not cause shutdowns) 50 * 51 * xfs_panic_mask bit 0x8 turns the error reports into panics 52 */ 53 54 enum { 55 /* XFS_REFCACHE_SIZE = 1 */ 56 /* XFS_REFCACHE_PURGE = 2 */ 57 /* XFS_RESTRICT_CHOWN = 3 */ 58 XFS_SGID_INHERIT = 4, 59 XFS_SYMLINK_MODE = 5, 60 XFS_PANIC_MASK = 6, 61 XFS_ERRLEVEL = 7, 62 XFS_SYNCD_TIMER = 8, 63 /* XFS_PROBE_DMAPI = 9 */ 64 /* XFS_PROBE_IOOPS = 10 */ 65 /* XFS_PROBE_QUOTA = 11 */ 66 XFS_STATS_CLEAR = 12, 67 XFS_INHERIT_SYNC = 13, 68 XFS_INHERIT_NODUMP = 14, 69 XFS_INHERIT_NOATIME = 15, 70 XFS_BUF_TIMER = 16, 71 XFS_BUF_AGE = 17, 72 /* XFS_IO_BYPASS = 18 */ 73 XFS_INHERIT_NOSYM = 19, 74 XFS_ROTORSTEP = 20, 75 XFS_INHERIT_NODFRG = 21, 76 XFS_FILESTREAM_TIMER = 22, 77 }; 78 79 extern xfs_param_t xfs_params; 80 81 struct xfs_globals { 82 #ifdef DEBUG 83 int pwork_threads; /* parallel workqueue threads */ 84 bool larp; /* log attribute replay */ 85 #endif 86 int bload_leaf_slack; /* btree bulk load leaf slack */ 87 int bload_node_slack; /* btree bulk load node slack */ 88 int log_recovery_delay; /* log recovery delay (secs) */ 89 int mount_delay; /* mount setup delay (secs) */ 90 bool bug_on_assert; /* BUG() the kernel on assert failure */ 91 bool always_cow; /* use COW fork for all overwrites */ 92 }; 93 extern struct xfs_globals xfs_globals; 94 95 #ifdef CONFIG_SYSCTL 96 extern int xfs_sysctl_register(void); 97 extern void xfs_sysctl_unregister(void); 98 #else 99 # define xfs_sysctl_register() (0) 100 # define xfs_sysctl_unregister() do { } while (0) 101 #endif /* CONFIG_SYSCTL */ 102 103 #endif /* __XFS_SYSCTL_H__ */ 104