sys/dev/disk/nvme/nvme_disk.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 | /* * Copyright (c) 2016 The DragonFly Project. All rights reserved. * * This code is derived from software contributed to The DragonFly Project * by Matthew Dillon <dillon@backplane.com> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * 3. Neither the name of The DragonFly Project nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific, prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include "nvme.h" static void nvme_disk_callback(nvme_request_t *req, struct lock *lk); static int nvme_strategy_core(nvme_softns_t *nsc, struct bio *bio, int delay); static const char *nvme_status_string(nvme_status_buf_t *buf, int type, int code); static d_open_t nvme_open; static d_close_t nvme_close; static d_ioctl_t nvme_ioctl; static d_strategy_t nvme_strategy; static d_dump_t nvme_dump; static struct dev_ops nvme_ops = { { "nvme", 0, D_DISK | D_MPSAFE | D_CANFREE | D_TRACKCLOSE | D_KVABIO }, .d_open = nvme_open, .d_close = nvme_close, .d_read = physread, .d_dump = nvme_dump, .d_write = physwrite, .d_ioctl = nvme_ioctl, .d_strategy = nvme_strategy, }; static struct krate krate_nvmeio = { .freq = 1 }; __read_mostly static int nvme_sync_delay = 0; SYSCTL_INT(_debug, OID_AUTO, nvme_sync_delay, CTLFLAG_RW, &nvme_sync_delay, 0, "Enable synchronous delay/completion-check, uS"); /* * Attach a namespace as a disk, making the disk available to the system. */ void nvme_disk_attach(nvme_softns_t *nsc) { nvme_softc_t *sc; struct disk_info info; char serial[20+16]; size_t len; uint64_t cap_gb; sc = nsc->sc; devstat_add_entry(&nsc->stats, "nvme", nsc->unit, nsc->blksize, DEVSTAT_NO_ORDERED_TAGS, DEVSTAT_TYPE_DIRECT | DEVSTAT_TYPE_IF_OTHER, DEVSTAT_PRIORITY_OTHER); nsc->cdev = disk_create(nsc->unit, &nsc->disk, &nvme_ops); nsc->cdev->si_drv1 = nsc; nsc->cdev->si_iosize_max = MAXPHYS; /* XXX */ disk_setdisktype(&nsc->disk, "ssd"); bzero(&info, sizeof(info)); info.d_media_blksize = nsc->blksize; info.d_media_blocks = nsc->idns.size; info.d_secpertrack = 1024; info.d_nheads = 1; info.d_secpercyl = info.d_secpertrack * info.d_nheads; info.d_ncylinders = (u_int)(info.d_media_blocks / info.d_secpercyl); KKASSERT(sizeof(sc->idctlr.serialno) == 20); bzero(serial, sizeof(serial)); bcopy(sc->idctlr.serialno, serial, sizeof(sc->idctlr.serialno)); len = string_cleanup(serial, 1); ksnprintf(serial + len, sizeof(serial) - len, "-%u", nsc->nsid); info.d_serialno = serial; cap_gb = nsc->idns.size / (1024 * 1024 * 1024 / nsc->blksize); device_printf(sc->dev, "Disk nvme%d ns=%u " "blksize=%u lbacnt=%ju cap=%juGB serno=%s\n", nsc->unit, nsc->nsid, nsc->blksize, nsc->idns.size, cap_gb, serial); disk_setdiskinfo(&nsc->disk, &info); /* serial is copied and does not have to be persistent */ } void nvme_disk_detach(nvme_softns_t *nsc) { if (nsc->cdev) { disk_destroy(&nsc->disk); devstat_remove_entry(&nsc->stats); } } static int nvme_open(struct dev_open_args *ap) { cdev_t dev = ap->a_head.a_dev; nvme_softns_t *nsc = dev->si_drv1; nvme_softc_t *sc = nsc->sc; if (sc->flags & NVME_SC_UNLOADING) return ENXIO; atomic_add_long(&sc->opencnt, 1); return 0; } static int nvme_close(struct dev_close_args *ap) { cdev_t dev = ap->a_head.a_dev; nvme_softns_t *nsc = dev->si_drv1; nvme_softc_t *sc = nsc->sc; atomic_add_long(&sc->opencnt, -1); return 0; } static int nvme_ioctl(struct dev_ioctl_args *ap) { cdev_t dev = ap->a_head.a_dev; nvme_softns_t *nsc = dev->si_drv1; nvme_softc_t *sc = nsc->sc; int error; switch(ap->a_cmd) { case NVMEIOCGETLOG: error = nvme_getlog_ioctl(sc, (void *)ap->a_data); break; default: error = ENOIOCTL; break; } return error; } static int nvme_strategy(struct dev_strategy_args *ap) { cdev_t dev = ap->a_head.a_dev; nvme_softns_t *nsc = dev->si_drv1; nvme_strategy_core(nsc, ap->a_bio, nvme_sync_delay); return 0; } /* * Called from admin thread to requeue BIOs. We must call * nvme_strategy_core() with delay = 0 to disable synchronous * optimizations to avoid deadlocking the admin thread. */ void nvme_disk_requeues(nvme_softc_t *sc) { nvme_softns_t *nsc; struct bio *bio; int i; for (i = 0; i < sc->nscmax; ++i) { nsc = sc->nscary[i]; if (nsc == NULL || nsc->sc == NULL) continue; if (bioq_first(&nsc->bioq)) { lockmgr(&nsc->lk, LK_EXCLUSIVE); while ((bio = bioq_first(&nsc->bioq)) != NULL) { bioq_remove(&nsc->bioq, bio); lockmgr(&nsc->lk, LK_RELEASE); if (nvme_strategy_core(nsc, bio, 0)) goto next; lockmgr(&nsc->lk, LK_EXCLUSIVE); } lockmgr(&nsc->lk, LK_RELEASE); } next: ; } } /* * Returns non-zero if no requests are available. * * WARNING! We are using the KVABIO API and must not access memory * through bp->b_data without first calling bkvasync(bp). */ static int nvme_strategy_core(nvme_softns_t *nsc, struct bio *bio, int delay) { nvme_softc_t *sc = nsc->sc; struct buf *bp = bio->bio_buf; uint64_t nlba; uint64_t secno; nvme_subqueue_t *subq; nvme_request_t *req; int nobytes; /* * Calculate sector/extent */ secno = bio->bio_offset / nsc->blksize; nlba = bp->b_bcount / nsc->blksize; devstat_start_transaction(&nsc->stats); subq = NULL; req = NULL; nobytes = 0; /* * Convert bio to low-level request */ switch (bp->b_cmd) { case BUF_CMD_READ: if (nlba == 0) { nobytes = 1; break; } subq = &sc->subqueues[sc->qmap[mycpuid][NVME_QMAP_RD]]; /* get_request does not need the subq lock */ req = nvme_get_request(subq, NVME_IOCMD_READ, bp->b_data, nlba * nsc->blksize); if (req == NULL) goto requeue; req->cmd.read.head.nsid = nsc->nsid; req->cmd.read.start_lba = secno; req->cmd.read.count_lba = nlba - 1; /* 0's based */ req->cmd.read.ioflags = 0; /* NVME_IOFLG_LR, NVME_IOFLG_FUA */ req->cmd.read.dsm = 0; /* NVME_DSM_INCOMPRESSIBLE */ /* NVME_DSM_SEQREQ */ break; case BUF_CMD_WRITE: if (nlba == 0) { nobytes = 1; break; } subq = &sc->subqueues[sc->qmap[mycpuid][NVME_QMAP_WR]]; /* get_request does not need the subq lock */ req = nvme_get_request(subq, NVME_IOCMD_WRITE, bp->b_data, nlba * nsc->blksize); if (req == NULL) goto requeue; req->cmd.write.head.nsid = nsc->nsid; req->cmd.write.start_lba = secno; req->cmd.write.count_lba = nlba - 1; /* 0's based */ break; case BUF_CMD_FREEBLKS: if (nlba == 0) { nobytes = 1; break; } if (nlba > 65536) { /* will cause INVAL error */ break; } subq = &sc->subqueues[sc->qmap[mycpuid][NVME_QMAP_WR]]; /* get_request does not need the subq lock */ req = nvme_get_request(subq, NVME_IOCMD_WRITEZ, NULL, 0); if (req == NULL) goto requeue; req->cmd.writez.head.nsid = nsc->nsid; req->cmd.writez.start_lba = secno; req->cmd.writez.count_lba = nlba - 1; /* 0's based */ req->cmd.read.ioflags = 0; /* NVME_IOFLG_LR, NVME_IOFLG_FUA */ req->cmd.read.dsm = 0; /* NVME_DSM_INCOMPRESSIBLE */ /* NVME_DSM_SEQREQ */ break; case BUF_CMD_FLUSH: subq = &sc->subqueues[sc->qmap[mycpuid][NVME_QMAP_WR]]; /* get_request does not need the subq lock */ req = nvme_get_request(subq, NVME_IOCMD_FLUSH, NULL, 0); if (req == NULL) goto requeue; req->cmd.flush.head.nsid = nsc->nsid; break; default: break; } /* * Submit the request */ if (req) { nvme_comqueue_t *comq; /* HACK OPTIMIZATIONS - TODO NEEDS WORK */ /* * Prevent callback from occurring if the synchronous * delay optimization is enabled. * * NOTE: subq lock does not protect the I/O (completion * only needs the comq lock). */ if (delay == 0) req->callback = nvme_disk_callback; req->nsc = nsc; req->bio = bio; BUF_KERNPROC(bp); /* do before submit */ lockmgr(&subq->lk, LK_EXCLUSIVE); nvme_submit_request(req); /* needs subq lock */ lockmgr(&subq->lk, LK_RELEASE); if (delay) { comq = req->comq; DELAY(delay); /* XXX */ lockmgr(&comq->lk, LK_EXCLUSIVE); nvme_poll_completions(comq, &comq->lk); if (req->state == NVME_REQ_SUBMITTED) { /* * Didn't finish, do it the slow way * (restore async completion). */ req->callback = nvme_disk_callback; lockmgr(&comq->lk, LK_RELEASE); } else { /* * Jeeze, that was fast. */ nvme_disk_callback(req, &comq->lk); lockmgr(&comq->lk, LK_RELEASE); } } /* else async completion */ } else if (nobytes) { devstat_end_transaction_buf(&nsc->stats, bp); biodone(bio); } else { bp->b_error = EINVAL; bp->b_flags |= B_ERROR; devstat_end_transaction_buf(&nsc->stats, bp); biodone(bio); } return 0; /* * No requests were available, requeue the bio. * * The nvme_get_request() call armed the requeue signal but * it is possible that it was picked up too quickly. If it * was, signal the admin thread ourselves. This case will occur * relatively rarely and only under heavy I/O conditions so we * don't have to be entirely efficient about dealing with it. */ requeue: BUF_KERNPROC(bp); lockmgr(&nsc->lk, LK_EXCLUSIVE); bioqdisksort(&nsc->bioq, bio); lockmgr(&nsc->lk, LK_RELEASE); if (atomic_swap_int(&subq->signal_requeue, 1) == 0) { atomic_swap_int(&subq->signal_requeue, 0); atomic_set_int(&subq->sc->admin_signal, ADMIN_SIG_REQUEUE); wakeup(&subq->sc->admin_signal); } return 1; } static void nvme_disk_callback(nvme_request_t *req, struct lock *lk) { nvme_softns_t *nsc = req->nsc; struct bio *bio; struct buf *bp; int code; int type; code = NVME_COMQ_STATUS_CODE_GET(req->res.tail.status); type = NVME_COMQ_STATUS_TYPE_GET(req->res.tail.status); bio = req->bio; bp = bio->bio_buf; if (lk) /* comq lock */ lockmgr(lk, LK_RELEASE); nvme_put_request(req); /* does not need subq lock */ devstat_end_transaction_buf(&nsc->stats, bp); if (code) { nvme_status_buf_t sb; krateprintf(&krate_nvmeio, "%s%d: %s error nvme-code %s\n", device_get_name(nsc->sc->dev), device_get_unit(nsc->sc->dev), buf_cmd_name(bp), nvme_status_string(&sb, type, code)); bp->b_error = EIO; bp->b_flags |= B_ERROR; biodone(bio); } else { bp->b_resid = 0; biodone(bio); } if (lk) /* comq lock */ lockmgr(lk, LK_EXCLUSIVE); } int nvme_alloc_disk_unit(void) { static int unit_counter = 0; int unit; unit = atomic_fetchadd_int(&unit_counter, 1); return unit; } static int nvme_dump(struct dev_dump_args *ap) { cdev_t dev = ap->a_head.a_dev; nvme_softns_t *nsc = dev->si_drv1; nvme_softc_t *sc = nsc->sc; uint64_t nlba; uint64_t secno; nvme_subqueue_t *subq; nvme_comqueue_t *comq; nvme_request_t *req; int didlock; /* * Calculate sector/extent */ secno = ap->a_offset / nsc->blksize; nlba = ap->a_length / nsc->blksize; subq = &sc->subqueues[sc->qmap[mycpuid][NVME_QMAP_WR]]; if (nlba) { /* * Issue a WRITE * * get_request does not need the subq lock. */ req = nvme_get_dump_request(subq, NVME_IOCMD_WRITE, ap->a_virtual, nlba * nsc->blksize); req->cmd.write.head.nsid = nsc->nsid; req->cmd.write.start_lba = secno; req->cmd.write.count_lba = nlba - 1; /* 0's based */ } else { /* * Issue a FLUSH * * get_request does not need the subq lock. */ req = nvme_get_dump_request(subq, NVME_IOCMD_FLUSH, NULL, 0); req->cmd.flush.head.nsid = nsc->nsid; } /* * Prevent callback from occurring if the synchronous * delay optimization is enabled. */ req->callback = NULL; req->nsc = nsc; /* * 500 x 1uS poll wait on lock. We might be the idle thread, so * we can't safely block during a dump. */ didlock = 500; while (lockmgr(&subq->lk, LK_EXCLUSIVE | LK_NOWAIT) != 0) { if (--didlock == 0) break; tsc_delay(1000); /* 1uS */ lwkt_switch(); } nvme_submit_request(req); /* needs subq lock */ if (didlock) lockmgr(&subq->lk, LK_RELEASE); comq = req->comq; nvme_poll_request(req); nvme_put_dump_request(req); /* does not need subq lock */ /* * Shut the nvme controller down nicely when we finish the dump. * We should to do this whether we are in a panic or not because * frankly the dump is overwriting swap space, thus the system is * probably not stable. */ if (nlba == 0) nvme_issue_shutdown(sc, 1); return 0; } static const char * nvme_status_string(nvme_status_buf_t *sb, int type, int code) { const char *cstr = NULL; switch(type) { case NVME_STATUS_TYPE_GENERIC: switch(code) { case NVME_CODE_SUCCESS: cstr = "success"; break; case NVME_CODE_BADOP: cstr = "badop"; break; case NVME_CODE_BADFIELD: cstr = "badfield"; break; case NVME_CODE_IDCONFLICT: cstr = "idconflict"; break; case NVME_CODE_BADXFER: cstr = "badxfer"; break; case NVME_CODE_ABORTED_PWRLOSS: cstr = "aborted-powerloss"; break; case NVME_CODE_INTERNAL: cstr = "internal"; break; case NVME_CODE_ABORTED_ONREQ: cstr = "aborted-onreq"; break; case NVME_CODE_ABORTED_SQDEL: cstr = "aborted-sqdel"; break; case NVME_CODE_ABORTED_FUSEFAIL: cstr = "aborted-fusefail"; break; case NVME_CODE_ABORTED_FUSEMISSING: cstr = "aborted-fusemissing"; break; case NVME_CODE_BADNAMESPACE: cstr = "badnamespace"; break; case NVME_CODE_SEQERROR: cstr = "seqerror"; break; case NVME_CODE_BADSGLSEG: cstr = "badsgl-seg"; break; case NVME_CODE_BADSGLCNT: cstr = "badsgl-cnt"; break; case NVME_CODE_BADSGLLEN: cstr = "badsgl-len"; break; case NVME_CODE_BADSGLMLEN: cstr = "badsgl-mlen"; break; case NVME_CODE_BADSGLTYPE: cstr = "badsgl-type"; break; case NVME_CODE_BADMEMBUFUSE: cstr = "badmem-bufuse"; break; case NVME_CODE_BADPRPOFF: cstr = "bad-prpoff"; break; case NVME_CODE_ATOMICWUOVFL: cstr = "atomic-wuovfl"; break; case NVME_CODE_LBA_RANGE: cstr = "lba-range"; break; case NVME_CODE_CAP_EXCEEDED: cstr = "cap-exceeded"; break; case NVME_CODE_NAM_NOT_READY: cstr = "nam-not-ready"; break; case NVME_CODE_RSV_CONFLICT: cstr = "rsv-conflict"; break; case NVME_CODE_FMT_IN_PROG: cstr = "fmt-in-prog"; break; default: cstr = "unknown"; break; } ksnprintf(sb->buf, sizeof(sb->buf), "type=generic code=%s(%04x)", cstr, code); break; case NVME_STATUS_TYPE_SPECIFIC: switch(code) { case NVME_CSSCODE_BADCOMQ: cstr = "bad-comq"; break; case NVME_CSSCODE_BADQID: cstr = "bad-qid"; break; case NVME_CSSCODE_BADQSIZE: cstr = "bad-qsize"; break; case NVME_CSSCODE_ABORTLIM: cstr = "abort-lim"; break; case NVME_CSSCODE_RESERVED04 : cstr = "unknown"; break; case NVME_CSSCODE_ASYNCEVENTLIM: cstr = "async-event-lim"; break; case NVME_CSSCODE_BADFWSLOT: cstr = "bad-fwslot"; break; case NVME_CSSCODE_BADFWIMAGE: cstr = "bad-fwimage"; break; case NVME_CSSCODE_BADINTRVECT: cstr = "bad-intrvect"; break; case NVME_CSSCODE_BADLOGPAGE: cstr = "bad-logpage"; break; case NVME_CSSCODE_BADFORMAT: cstr = "bad-format"; break; case NVME_CSSCODE_FW_NEEDSCONVRESET: cstr = "needs-convreset"; break; case NVME_CSSCODE_BADQDELETE: cstr = "bad-qdelete"; break; case NVME_CSSCODE_FEAT_NOT_SAVEABLE: cstr = "feat-not-saveable"; break; case NVME_CSSCODE_FEAT_NOT_CHGABLE: cstr = "feat-not-changeable"; break; case NVME_CSSCODE_FEAT_NOT_NSSPEC: cstr = "feat-not-nsspec"; break; case NVME_CSSCODE_FW_NEEDSSUBRESET: cstr = "fw-needs-subreset"; break; case NVME_CSSCODE_FW_NEEDSRESET: cstr = "fw-needs-reset"; break; case NVME_CSSCODE_FW_NEEDSMAXTVIOLATE: cstr = "fw-needsmaxviolate"; break; case NVME_CSSCODE_FW_PROHIBITED: cstr = "fw-prohibited"; break; case NVME_CSSCODE_RANGE_OVERLAP: cstr = "range-overlap"; break; case NVME_CSSCODE_NAM_INSUFF_CAP: cstr = "name-insufficient-cap"; break; case NVME_CSSCODE_NAM_ID_UNAVAIL: cstr = "name-id-unavail"; break; case NVME_CSSCODE_RESERVED17: cstr = "unknown"; break; case NVME_CSSCODE_NAM_ALREADY_ATT: cstr = "name-already-att"; break; case NVME_CSSCODE_NAM_IS_PRIVATE: cstr = "name-is-private"; break; case NVME_CSSCODE_NAM_NOT_ATT: cstr = "name-not-att"; break; case NVME_CSSCODE_NO_THIN_PROVISION: cstr = "no-thin-provision"; break; case NVME_CSSCODE_CTLR_LIST_INVALID: cstr = "controller-list-invalid"; break; case NVME_CSSCODE_ATTR_CONFLICT: cstr = "attr-conflict"; break; case NVME_CSSCODE_BADPROTINFO: cstr = "bad-prot-info"; break; case NVME_CSSCODE_WRITE_TO_RDONLY: cstr = "write-to-readonly"; break; default: cstr = "unknown"; break; } ksnprintf(sb->buf, sizeof(sb->buf), "type=specific code=%s(%04x)", cstr, code); break; case NVME_STATUS_TYPE_MEDIA: switch(code) { case NVME_MEDCODE_WRITE_FAULT: cstr = "write-fault"; break; case NVME_MEDCODE_UNRECOV_READ_ERROR: cstr = "unrecoverable-read-error"; break; case NVME_MEDCODE_ETOE_GUARD_CHK: cstr = "etoe-guard-check"; break; case NVME_MEDCODE_ETOE_APPTAG_CHK: cstr = "etoe-apptag-check"; break; case NVME_MEDCODE_ETOE_REFTAG_CHK: cstr = "etoe-reftag-check"; break; case NVME_MEDCODE_COMPARE_FAILURE: cstr = "compare-failure"; break; case NVME_MEDCODE_ACCESS_DENIED: cstr = "access-denied"; break; case NVME_MEDCODE_UNALLOCATED: cstr = "unallocated"; break; default: cstr = "unknown"; break; } ksnprintf(sb->buf, sizeof(sb->buf), "type=media code=%s(%04x)", cstr, code); break; case NVME_STATUS_TYPE_VENDOR: ksnprintf(sb->buf, sizeof(sb->buf), "type=vendor code=%04x", code); break; default: ksnprintf(sb->buf, sizeof(sb->buf), "type=%02x code=%04x", type, code); break; } return sb->buf; } |