diff options
author | Christopher Pascoe <pascoe@cvs.openbsd.org> | 2007-03-23 06:34:59 +0000 |
---|---|---|
committer | Christopher Pascoe <pascoe@cvs.openbsd.org> | 2007-03-23 06:34:59 +0000 |
commit | 22576806bff50ca4daf5ba55bf229db32d8ea47e (patch) | |
tree | 50f10634328813d48cb822a18404308776c50802 /sys | |
parent | 001c2bd09ec09299491ea6755f1bc08a4d342a40 (diff) |
Turn AHCI_DEBUG back on for now, so we can see if any commands are timing
out or erroring around the cache flush time.
Diffstat (limited to 'sys')
-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) |