diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 1999-04-30 01:59:21 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 1999-04-30 01:59:21 +0000 |
commit | f323580e7a86b5c7f0036e25994c940666bdb13e (patch) | |
tree | f8ead946a9dabf864257de746d7fb6b431b0f212 /sys/xfs/xfs_deb.c | |
parent | 07b4a33ad356d7a2d300f6ca586637879e4ad5fd (diff) |
upgrade Arla to fresher code. Too many new features and bugfixes.
Diffstat (limited to 'sys/xfs/xfs_deb.c')
-rw-r--r-- | sys/xfs/xfs_deb.c | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/sys/xfs/xfs_deb.c b/sys/xfs/xfs_deb.c index f1f259404bb..2e838360af7 100644 --- a/sys/xfs/xfs_deb.c +++ b/sys/xfs/xfs_deb.c @@ -1,6 +1,5 @@ -/* $OpenBSD: xfs_deb.c,v 1.1 1998/08/30 16:47:20 art Exp $ */ /* - * Copyright (c) 1995, 1996, 1997 Kungliga Tekniska Högskolan + * Copyright (c) 1995, 1996, 1997, 1998 Kungliga Tekniska Högskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * @@ -38,15 +37,24 @@ */ #include <xfs/xfs_deb.h> +#include <xfs/xfs_debug.h> -/* $KTH: xfs_deb.c,v 1.3 1998/03/20 21:02:32 art Exp $ */ +/* $Id: xfs_deb.c,v 1.2 1999/04/30 01:59:00 art Exp $ */ /* X is on */ #define X(y) y /* and x is off */ #define x(y) 0 -int xfsdeb = (0 - | - x(XDEBANY) +unsigned int xfsdeb = (0 | + x(XDEBDEV) | + x(XDEBMSG) | + x(XDEBDNLC) | + x(XDEBNODE) | + x(XDEBVNOPS) | + x(XDEBVFOPS) | + x(XDEBLKM) | + x(XDEBSYS) | + x(XDEBMEM) | + 0 ); |