summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpascoe <pascoe@openbsd.org>2007-03-23 06:34:58 +0000
committerpascoe <pascoe@openbsd.org>2007-03-23 06:34:58 +0000
commit6a22c3ae607b49d8b2275c5e85791d0a1d96c9d7 (patch)
tree228aa5692c54f824b6db5269757e12ae9e12edb2
parentFlags belong under SYNOPSIS, not NAME. (diff)
downloadwireguard-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.c4
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)