svn commit: r223277 - head/sys/cam/ata

Konstantin Belousov kib at FreeBSD.org
Sat Jun 18 22:26:58 UTC 2011


Author: kib
Date: Sat Jun 18 22:26:58 2011
New Revision: 223277
URL: http://svn.freebsd.org/changeset/base/223277

Log:
  Fix a typo in adagetattr() from r223089. In particular, this restores
  the ability to use ahci(4) for kernel dumps.

Modified:
  head/sys/cam/ata/ata_da.c

Modified: head/sys/cam/ata/ata_da.c
==============================================================================
--- head/sys/cam/ata/ata_da.c	Sat Jun 18 22:16:55 2011	(r223276)
+++ head/sys/cam/ata/ata_da.c	Sat Jun 18 22:26:58 2011	(r223277)
@@ -818,7 +818,7 @@ adagetattr(struct bio *bp)
 	int ret = -1;
 	struct cam_periph *periph;
 
-	if (bp->bio_disk == NULL || bp->bio_disk->d_drv1)
+	if (bp->bio_disk == NULL || bp->bio_disk->d_drv1 == NULL)
 		return ENXIO;
 	periph = (struct cam_periph *)bp->bio_disk->d_drv1;
 	if (periph->path == NULL)


More information about the svn-src-all mailing list