diff options
author | 2007-03-23 06:34:58 +0000 | |
---|---|---|
committer | 2007-03-23 06:34:58 +0000 | |
commit | 6a22c3ae607b49d8b2275c5e85791d0a1d96c9d7 (patch) | |
tree | 228aa5692c54f824b6db5269757e12ae9e12edb2 | |
parent | Flags belong under SYNOPSIS, not NAME. (diff) | |
download | wireguard-openbsd-6a22c3ae607b49d8b2275c5e85791d0a1d96c9d7.tar.xz wireguard-openbsd-6a22c3ae607b49d8b2275c5e85791d0a1d96c9d7.zip |
Turn AHCI_DEBUG back on for now, so we can see if any commands are timing
out or erroring around the cache flush time.
-rw-r--r-- | sys/dev/pci/ahci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/ahci.c b/sys/dev/pci/ahci.c index 2f1a6f2a308..b2b07e397ef 100644 --- a/sys/dev/pci/ahci.c +++ b/sys/dev/pci/ahci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ahci.c,v 1.97 2007/03/23 05:28:34 pascoe Exp $ */ +/* $OpenBSD: ahci.c,v 1.98 2007/03/23 06:34:58 pascoe Exp $ */ /* * Copyright (c) 2006 David Gwynne <dlg@openbsd.org> @@ -33,7 +33,7 @@ #include <dev/ata/atascsi.h> -#define NO_AHCI_DEBUG +#define AHCI_DEBUG #ifdef AHCI_DEBUG #define DPRINTF(m, f...) do { if ((ahcidebug & (m)) == (m)) printf(f); } while (0) |