diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2006-07-11 21:17:59 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2006-07-11 21:17:59 +0000 |
commit | 095c0fbe2203f4335e8945d2456d39e2f6ef4b50 (patch) | |
tree | 246dd308c73d1acc653951e158f27f6c55299fb6 /sys/ufs/ffs/softdep.h | |
parent | 51ae263843d507ea58dfb16cf6553678610f2997 (diff) |
add mount/vnode/buf and softdep printing commands; tested on a few archs and will make pedro happy too (;
Diffstat (limited to 'sys/ufs/ffs/softdep.h')
-rw-r--r-- | sys/ufs/ffs/softdep.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/ufs/ffs/softdep.h b/sys/ufs/ffs/softdep.h index f2fb6808241..77d80c334df 100644 --- a/sys/ufs/ffs/softdep.h +++ b/sys/ufs/ffs/softdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: softdep.h,v 1.11 2006/01/03 23:34:39 pedro Exp $ */ +/* $OpenBSD: softdep.h,v 1.12 2006/07/11 21:17:58 mickey Exp $ */ /* * Copyright 1998, 2000 Marshall Kirk McKusick. All Rights Reserved. @@ -109,6 +109,10 @@ #define ALLCOMPLETE (ATTACHED | COMPLETE | DEPCOMPLETE) +#define DEP_BITS "\020\01ATTACHED\02UNDONE\03COMPLETE\04DEPCOMPLETE" \ + "\05MKDIR_PARENT\06MKDIR_BODY\07RMDIR\010DIRCHG\011GOINGAWAY" \ + "\012IOSTARTED\013SPACECOUNTED\014NEWBLOCK\016UFS1FMT\020ONWORKLIST" + /* * The workitem queue. * |