From ce4bc82d197d8c3b7ff7f4cae17c82ce6d490227 Mon Sep 17 00:00:00 2001 From: Alexander Motin Date: Wed, 12 Jun 2013 12:51:43 +0000 Subject: [PATCH] Use direct custom implementations instead of g_handleattr() for CFI and NAND d_getattr(). Since these drivers use disk(9) KPI and not directly GEOM, use of that function means KPI layering violation, causing extra g_io_deliver() call for the request. --- sys/dev/cfi/cfi_disk.c | 15 +++++++-------- sys/dev/nand/nand_geom.c | 36 ++++++++++++++++++++---------------- 2 files changed, 27 insertions(+), 24 deletions(-) diff --git a/sys/dev/cfi/cfi_disk.c b/sys/dev/cfi/cfi_disk.c index 723d1aeeff7..f5bcb1b67fa 100644 --- a/sys/dev/cfi/cfi_disk.c +++ b/sys/dev/cfi/cfi_disk.c @@ -292,14 +292,13 @@ cfi_disk_getattr(struct bio *bp) sc = dsc->parent; dev = sc->sc_dev; - do { - if (g_handleattr(bp, "CFI::device", &dev, sizeof(device_t))) - break; - - return (ERESTART); - } while(0); - - return (EJUSTRETURN); + if (strcmp(bp->bio_attribute, "CFI::device") == 0) { + if (bp->bio_length != sizeof(dev)) + return (EFAULT); + bcopy(&dev, bp->bio_data, sizeof(dev)); + } else + return (-1); + return (0); } diff --git a/sys/dev/nand/nand_geom.c b/sys/dev/nand/nand_geom.c index a8bdba28d29..2c4915b319b 100644 --- a/sys/dev/nand/nand_geom.c +++ b/sys/dev/nand/nand_geom.c @@ -156,6 +156,7 @@ nand_getattr(struct bio *bp) struct nand_chip *chip; struct chip_geom *cg; device_t dev; + int val; if (bp->bio_disk == NULL || bp->bio_disk->d_drv1 == NULL) return (ENXIO); @@ -166,22 +167,25 @@ nand_getattr(struct bio *bp) dev = device_get_parent(chip->dev); dev = device_get_parent(dev); - do { - if (g_handleattr_int(bp, "NAND::oobsize", cg->oob_size)) - break; - else if (g_handleattr_int(bp, "NAND::pagesize", cg->page_size)) - break; - else if (g_handleattr_int(bp, "NAND::blocksize", - cg->block_size)) - break; - else if (g_handleattr(bp, "NAND::device", &(dev), - sizeof(device_t))) - break; - - return (ERESTART); - } while (0); - - return (EJUSTRETURN); + if (strcmp(bp->bio_attribute, "NAND::device") == 0) { + if (bp->bio_length != sizeof(dev)) + return (EFAULT); + bcopy(&dev, bp->bio_data, sizeof(dev)); + } else { + if (strcmp(bp->bio_attribute, "NAND::oobsize") == 0) + val = cg->oob_size; + else if (strcmp(bp->bio_attribute, "NAND::pagesize") == 0) + val = cg->page_size; + else if (strcmp(bp->bio_attribute, "NAND::blocksize") == 0) + val = cg->block_size; + else + return (-1); + if (bp->bio_length != sizeof(val)) + return (EFAULT); + bcopy(&val, bp->bio_data, sizeof(val)); + } + bp->bio_completed = bp->bio_length; + return (0); } static int