diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-01-25 02:30:28 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-01-25 02:30:28 +0000 |
commit | 20a8b5f710ad7693bb65d0016ff45aa621034b05 (patch) | |
tree | 87b7f390dc7784e085e09e554574f954759fa0d6 /sys/ufs/ffs/ffs_extern.h | |
parent | 3f0da7d78d4a6e9b1cb2bb01b3c0a6290195b3ed (diff) |
Move softdep sysctls from debug to vfs.ffs; art@ OK
Diffstat (limited to 'sys/ufs/ffs/ffs_extern.h')
-rw-r--r-- | sys/ufs/ffs/ffs_extern.h | 28 |
1 files changed, 26 insertions, 2 deletions
diff --git a/sys/ufs/ffs/ffs_extern.h b/sys/ufs/ffs/ffs_extern.h index 15eb204efd3..7c83ee9576c 100644 --- a/sys/ufs/ffs/ffs_extern.h +++ b/sys/ufs/ffs/ffs_extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ffs_extern.h,v 1.17 2001/12/19 08:58:07 art Exp $ */ +/* $OpenBSD: ffs_extern.h,v 1.18 2002/01/25 02:30:26 millert Exp $ */ /* $NetBSD: ffs_extern.h,v 1.4 1996/02/09 22:22:22 christos Exp $ */ /*- @@ -40,7 +40,19 @@ #define FFS_CLUSTERWRITE 2 /* cluster writing enabled */ #define FFS_REALLOCBLKS 3 /* block reallocation enabled */ #define FFS_ASYNCFREE 4 /* asynchronous block freeing enabled */ -#define FFS_MAXID 5 /* number of valid ffs ids */ +#define FFS_MAX_SOFTDEPS 5 /* maximum structs before slowdown */ +#define FFS_SD_TICKDELAY 6 /* ticks to pause during slowdown */ +#define FFS_SD_WORKLIST_PUSH 7 /* # of worklist cleanups */ +#define FFS_SD_BLK_LIMIT_PUSH 8 /* # of times block limit neared */ +#define FFS_SD_INO_LIMIT_PUSH 9 /* # of times inode limit neared */ +#define FFS_SD_BLK_LIMIT_HIT 10 /* # of times block slowdown imposed */ +#define FFS_SD_INO_LIMIT_HIT 11 /* # of times inode slowdown imposed */ +#define FFS_SD_SYNC_LIMIT_HIT 12 /* # of synchronous slowdowns imposed */ +#define FFS_SD_INDIR_BLK_PTRS 13 /* bufs redirtied as indir ptrs not written */ +#define FFS_SD_INODE_BITMAP 14 /* bufs redirtied as inode bitmap not written */ +#define FFS_SD_DIRECT_BLK_PTRS 15 /* bufs redirtied as direct ptrs not written */ +#define FFS_SD_DIR_ENTRY 16 /* bufs redirtied as dir entry cannot write */ +#define FFS_MAXID 17 /* number of valid ffs ids */ #define FFS_NAMES { \ { 0, 0 }, \ @@ -48,6 +60,18 @@ { "doclusterwrite", CTLTYPE_INT }, \ { "doreallocblks", CTLTYPE_INT }, \ { "doasyncfree", CTLTYPE_INT }, \ + { "max_softdeps", CTLTYPE_INT }, \ + { "sd_tickdelay", CTLTYPE_INT }, \ + { "sd_worklist_push", CTLTYPE_INT }, \ + { "sd_blk_limit_push", CTLTYPE_INT }, \ + { "sd_ino_limit_push", CTLTYPE_INT }, \ + { "sd_blk_limit_hit", CTLTYPE_INT }, \ + { "sd_ino_limit_hit", CTLTYPE_INT }, \ + { "sd_sync_limit_hit", CTLTYPE_INT }, \ + { "sd_indir_blk_ptrs", CTLTYPE_INT }, \ + { "sd_inode_bitmap", CTLTYPE_INT }, \ + { "sd_direct_blk_ptrs", CTLTYPE_INT }, \ + { "sd_dir_entry", CTLTYPE_INT }, \ } |