scsi-generic.c 16.9 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*
 * Generic SCSI Device support
 *
 * Copyright (c) 2007 Bull S.A.S.
 * Based on code by Paul Brook
 * Based on code by Fabrice Bellard
 *
 * Written by Laurent Vivier <Laurent.Vivier@bull.net>
 *
M
Matthew Fernandez 已提交
10
 * This code is licensed under the LGPL.
11 12 13
 *
 */

P
Peter Maydell 已提交
14
#include "qemu/osdep.h"
15
#include "qapi/error.h"
16
#include "qemu-common.h"
17
#include "qemu/error-report.h"
P
Paolo Bonzini 已提交
18
#include "hw/scsi/scsi.h"
19
#include "sysemu/block-backend.h"
20
#include "sysemu/blockdev.h"
21

22
#ifdef __linux__
23 24 25 26

//#define DEBUG_SCSI

#ifdef DEBUG_SCSI
27 28
#define DPRINTF(fmt, ...) \
do { printf("scsi-generic: " fmt , ## __VA_ARGS__); } while (0)
29
#else
30
#define DPRINTF(fmt, ...) do {} while(0)
31 32
#endif

33 34
#define BADF(fmt, ...) \
do { fprintf(stderr, "scsi-generic: " fmt , ## __VA_ARGS__); } while (0)
35 36

#include <scsi/sg.h>
P
Paolo Bonzini 已提交
37
#include "block/scsi.h"
38

P
Paolo Bonzini 已提交
39 40 41 42 43 44 45
#define SG_ERR_DRIVER_TIMEOUT  0x06
#define SG_ERR_DRIVER_SENSE    0x08

#define SG_ERR_DID_OK          0x00
#define SG_ERR_DID_NO_CONNECT  0x01
#define SG_ERR_DID_BUS_BUSY    0x02
#define SG_ERR_DID_TIME_OUT    0x03
46 47 48 49 50

#ifndef MAX_UINT
#define MAX_UINT ((unsigned int)-1)
#endif

51 52
typedef struct SCSIGenericReq {
    SCSIRequest req;
53 54 55 56
    uint8_t *buf;
    int buflen;
    int len;
    sg_io_hdr_t io_header;
57
} SCSIGenericReq;
58

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
static void scsi_generic_save_request(QEMUFile *f, SCSIRequest *req)
{
    SCSIGenericReq *r = DO_UPCAST(SCSIGenericReq, req, req);

    qemu_put_sbe32s(f, &r->buflen);
    if (r->buflen && r->req.cmd.mode == SCSI_XFER_TO_DEV) {
        assert(!r->req.sg);
        qemu_put_buffer(f, r->buf, r->req.cmd.xfer);
    }
}

static void scsi_generic_load_request(QEMUFile *f, SCSIRequest *req)
{
    SCSIGenericReq *r = DO_UPCAST(SCSIGenericReq, req, req);

    qemu_get_sbe32s(f, &r->buflen);
    if (r->buflen && r->req.cmd.mode == SCSI_XFER_TO_DEV) {
        assert(!r->req.sg);
        qemu_get_buffer(f, r->buf, r->req.cmd.xfer);
    }
}

P
Paolo Bonzini 已提交
81
static void scsi_free_request(SCSIRequest *req)
82
{
P
Paolo Bonzini 已提交
83 84
    SCSIGenericReq *r = DO_UPCAST(SCSIGenericReq, req, req);

85
    g_free(r->buf);
86 87 88
}

/* Helper function for command completion.  */
89
static void scsi_command_complete_noio(SCSIGenericReq *r, int ret)
90
{
91
    int status;
92

93 94
    assert(r->req.aiocb == NULL);

95
    if (r->req.io_canceled) {
96
        scsi_req_cancel_complete(&r->req);
97 98
        goto done;
    }
P
Paolo Bonzini 已提交
99
    if (r->io_header.driver_status & SG_ERR_DRIVER_SENSE) {
100
        r->req.sense_len = r->io_header.sb_len_wr;
P
Paolo Bonzini 已提交
101
    }
A
aurel32 已提交
102

103 104
    if (ret != 0) {
        switch (ret) {
P
Paolo Bonzini 已提交
105
        case -EDOM:
106
            status = TASK_SET_FULL;
P
Paolo Bonzini 已提交
107
            break;
108
        case -ENOMEM:
109
            status = CHECK_CONDITION;
110
            scsi_req_build_sense(&r->req, SENSE_CODE(TARGET_FAILURE));
111 112
            break;
        default:
113
            status = CHECK_CONDITION;
114
            scsi_req_build_sense(&r->req, SENSE_CODE(IO_ERROR));
115 116 117
            break;
        }
    } else {
P
Paolo Bonzini 已提交
118 119 120 121
        if (r->io_header.host_status == SG_ERR_DID_NO_CONNECT ||
            r->io_header.host_status == SG_ERR_DID_BUS_BUSY ||
            r->io_header.host_status == SG_ERR_DID_TIME_OUT ||
            (r->io_header.driver_status & SG_ERR_DRIVER_TIMEOUT)) {
122
            status = BUSY;
123
            BADF("Driver Timeout\n");
P
Paolo Bonzini 已提交
124 125 126
        } else if (r->io_header.host_status) {
            status = CHECK_CONDITION;
            scsi_req_build_sense(&r->req, SENSE_CODE(I_T_NEXUS_LOSS));
127 128
        } else if (r->io_header.status) {
            status = r->io_header.status;
129
        } else if (r->io_header.driver_status & SG_ERR_DRIVER_SENSE) {
130 131 132 133
            status = CHECK_CONDITION;
        } else {
            status = GOOD;
        }
134
    }
A
aurel32 已提交
135
    DPRINTF("Command complete 0x%p tag=0x%x status=%d\n",
136
            r, r->req.tag, status);
G
Gerd Hoffmann 已提交
137

138
    scsi_req_complete(&r->req, status);
139
done:
140
    scsi_req_unref(&r->req);
141 142
}

143 144 145 146 147 148 149 150 151
static void scsi_command_complete(void *opaque, int ret)
{
    SCSIGenericReq *r = (SCSIGenericReq *)opaque;

    assert(r->req.aiocb != NULL);
    r->req.aiocb = NULL;
    scsi_command_complete_noio(r, ret);
}

152
static int execute_command(BlockBackend *blk,
153
                           SCSIGenericReq *r, int direction,
154
                           BlockCompletionFunc *complete)
155 156 157 158 159
{
    r->io_header.interface_id = 'S';
    r->io_header.dxfer_direction = direction;
    r->io_header.dxferp = r->buf;
    r->io_header.dxfer_len = r->buflen;
160 161
    r->io_header.cmdp = r->req.cmd.buf;
    r->io_header.cmd_len = r->req.cmd.len;
162 163
    r->io_header.mx_sb_len = sizeof(r->req.sense);
    r->io_header.sbp = r->req.sense;
164 165 166 167
    r->io_header.timeout = MAX_UINT;
    r->io_header.usr_ptr = r;
    r->io_header.flags |= SG_FLAG_DIRECT_IO;

168
    r->req.aiocb = blk_aio_ioctl(blk, SG_IO, &r->io_header, complete, r);
169 170 171
    if (r->req.aiocb == NULL) {
        return -EIO;
    }
172 173 174 175 176 177

    return 0;
}

static void scsi_read_complete(void * opaque, int ret)
{
178
    SCSIGenericReq *r = (SCSIGenericReq *)opaque;
179
    SCSIDevice *s = r->req.dev;
180 181
    int len;

182
    assert(r->req.aiocb != NULL);
183
    r->req.aiocb = NULL;
184

185
    if (ret || r->req.io_canceled) {
186
        scsi_command_complete_noio(r, ret);
187 188
        return;
    }
189

190
    len = r->io_header.dxfer_len - r->io_header.resid;
191
    DPRINTF("Data ready tag=0x%x len=%d\n", r->req.tag, len);
192 193

    r->len = -1;
194
    if (len == 0) {
195 196 197
        scsi_command_complete_noio(r, 0);
        return;
    }
198

199 200 201 202 203 204 205 206 207
    /* Snoop READ CAPACITY output to set the blocksize.  */
    if (r->req.cmd.buf[0] == READ_CAPACITY_10 &&
        (ldl_be_p(&r->buf[0]) != 0xffffffffU || s->max_lba == 0)) {
        s->blocksize = ldl_be_p(&r->buf[4]);
        s->max_lba = ldl_be_p(&r->buf[0]) & 0xffffffffULL;
    } else if (r->req.cmd.buf[0] == SERVICE_ACTION_IN_16 &&
               (r->req.cmd.buf[1] & 31) == SAI_READ_CAPACITY_16) {
        s->blocksize = ldl_be_p(&r->buf[8]);
        s->max_lba = ldq_be_p(&r->buf[0]);
208
    }
209 210
    blk_set_guest_block_size(s->conf.blk, s->blocksize);

211 212 213 214 215 216 217 218 219 220 221 222 223 224
    /* Patch MODE SENSE device specific parameters if the BDS is opened
     * readonly.
     */
    if ((s->type == TYPE_DISK || s->type == TYPE_TAPE) &&
        blk_is_read_only(s->conf.blk) &&
        (r->req.cmd.buf[0] == MODE_SENSE ||
         r->req.cmd.buf[0] == MODE_SENSE_10) &&
        (r->req.cmd.buf[1] & 0x8) == 0) {
        if (r->req.cmd.buf[0] == MODE_SENSE) {
            r->buf[2] |= 0x80;
        } else  {
            r->buf[3] |= 0x80;
        }
    }
225 226 227
    if (s->type == TYPE_DISK &&
        r->req.cmd.buf[0] == INQUIRY &&
        r->req.cmd.buf[2] == 0xb0) {
228 229
        uint32_t max_xfer_len = blk_get_max_transfer_length(s->conf.blk) /
            (s->blocksize / BDRV_SECTOR_SIZE);
230 231 232 233 234 235

        assert(max_xfer_len);
        stl_be_p(&r->buf[8], max_xfer_len);
        /* Also take care of the opt xfer len. */
        if (ldl_be_p(&r->buf[12]) > max_xfer_len) {
            stl_be_p(&r->buf[12], max_xfer_len);
236 237
        }
    }
238 239
    scsi_req_data(&r->req, len);
    scsi_req_unref(&r->req);
240 241 242
}

/* Read more data from scsi device into buffer.  */
243
static void scsi_read_data(SCSIRequest *req)
244
{
245
    SCSIGenericReq *r = DO_UPCAST(SCSIGenericReq, req, req);
246
    SCSIDevice *s = r->req.dev;
247 248
    int ret;

249
    DPRINTF("scsi_read_data 0x%x\n", req->tag);
250 251 252

    /* The request is used as the AIO opaque value, so add a ref.  */
    scsi_req_ref(&r->req);
253
    if (r->len == -1) {
254
        scsi_command_complete_noio(r, 0);
255 256 257
        return;
    }

258 259
    ret = execute_command(s->conf.blk, r, SG_DXFER_FROM_DEV,
                          scsi_read_complete);
260
    if (ret < 0) {
261
        scsi_command_complete_noio(r, ret);
262 263 264 265 266
    }
}

static void scsi_write_complete(void * opaque, int ret)
{
267
    SCSIGenericReq *r = (SCSIGenericReq *)opaque;
268
    SCSIDevice *s = r->req.dev;
269 270

    DPRINTF("scsi_write_complete() ret = %d\n", ret);
271 272

    assert(r->req.aiocb != NULL);
273
    r->req.aiocb = NULL;
274

275
    if (ret || r->req.io_canceled) {
276
        scsi_command_complete_noio(r, ret);
277 278 279
        return;
    }

280
    if (r->req.cmd.buf[0] == MODE_SELECT && r->req.cmd.buf[4] == 12 &&
281 282 283
        s->type == TYPE_TAPE) {
        s->blocksize = (r->buf[9] << 16) | (r->buf[10] << 8) | r->buf[11];
        DPRINTF("block size %d\n", s->blocksize);
A
aurel32 已提交
284 285
    }

286
    scsi_command_complete_noio(r, ret);
287 288 289 290
}

/* Write data to a scsi device.  Returns nonzero on failure.
   The transfer may complete asynchronously.  */
291
static void scsi_write_data(SCSIRequest *req)
292
{
293
    SCSIGenericReq *r = DO_UPCAST(SCSIGenericReq, req, req);
294
    SCSIDevice *s = r->req.dev;
295 296
    int ret;

297
    DPRINTF("scsi_write_data 0x%x\n", req->tag);
298 299
    if (r->len == 0) {
        r->len = r->buflen;
P
Paolo Bonzini 已提交
300
        scsi_req_data(&r->req, r->len);
301
        return;
302 303
    }

304 305
    /* The request is used as the AIO opaque value, so add a ref.  */
    scsi_req_ref(&r->req);
306
    ret = execute_command(s->conf.blk, r, SG_DXFER_TO_DEV, scsi_write_complete);
307
    if (ret < 0) {
308
        scsi_command_complete_noio(r, ret);
309 310 311 312
    }
}

/* Return a pointer to the data buffer.  */
313
static uint8_t *scsi_get_buf(SCSIRequest *req)
314
{
315 316
    SCSIGenericReq *r = DO_UPCAST(SCSIGenericReq, req, req);

317 318 319 320 321 322 323 324
    return r->buf;
}

/* Execute a scsi command.  Returns the length of the data expected by the
   command.  This will be Positive for data transfers from the device
   (eg. disk reads), negative for transfers to the device (eg. disk writes),
   and zero if the command does not transfer any data.  */

325
static int32_t scsi_send_command(SCSIRequest *req, uint8_t *cmd)
326
{
327
    SCSIGenericReq *r = DO_UPCAST(SCSIGenericReq, req, req);
328
    SCSIDevice *s = r->req.dev;
329 330
    int ret;

331 332 333 334 335 336 337 338 339
#ifdef DEBUG_SCSI
    {
        int i;
        for (i = 1; i < r->req.cmd.len; i++) {
            printf(" 0x%02x", cmd[i]);
        }
        printf("\n");
    }
#endif
340

341
    if (r->req.cmd.xfer == 0) {
342
        g_free(r->buf);
343 344
        r->buflen = 0;
        r->buf = NULL;
345 346
        /* The request is used as the AIO opaque value, so add a ref.  */
        scsi_req_ref(&r->req);
347 348
        ret = execute_command(s->conf.blk, r, SG_DXFER_NONE,
                              scsi_command_complete);
349
        if (ret < 0) {
350
            scsi_command_complete_noio(r, ret);
351
            return 0;
352 353 354 355
        }
        return 0;
    }

356
    if (r->buflen != r->req.cmd.xfer) {
357
        g_free(r->buf);
358
        r->buf = g_malloc(r->req.cmd.xfer);
359
        r->buflen = r->req.cmd.xfer;
360 361 362
    }

    memset(r->buf, 0, r->buflen);
363
    r->len = r->req.cmd.xfer;
G
Gerd Hoffmann 已提交
364
    if (r->req.cmd.mode == SCSI_XFER_TO_DEV) {
365
        r->len = 0;
366
        return -r->req.cmd.xfer;
P
Paolo Bonzini 已提交
367
    } else {
368
        return r->req.cmd.xfer;
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
static int read_naa_id(const uint8_t *p, uint64_t *p_wwn)
{
    int i;

    if ((p[1] & 0xF) == 3) {
        /* NAA designator type */
        if (p[3] != 8) {
            return -EINVAL;
        }
        *p_wwn = ldq_be_p(p + 4);
        return 0;
    }

    if ((p[1] & 0xF) == 8) {
        /* SCSI name string designator type */
        if (p[3] < 20 || memcmp(&p[4], "naa.", 4)) {
            return -EINVAL;
        }
        if (p[3] > 20 && p[24] != ',') {
            return -EINVAL;
        }
        *p_wwn = 0;
        for (i = 8; i < 24; i++) {
            char c = toupper(p[i]);
            c -= (c >= '0' && c <= '9' ? '0' : 'A' - 10);
            *p_wwn = (*p_wwn << 4) | c;
        }
        return 0;
    }

    return -EINVAL;
}

void scsi_generic_read_device_identification(SCSIDevice *s)
{
    uint8_t cmd[6];
    uint8_t buf[250];
    uint8_t sensebuf[8];
    sg_io_hdr_t io_header;
    int ret;
    int i, len;

    memset(cmd, 0, sizeof(cmd));
    memset(buf, 0, sizeof(buf));
    cmd[0] = INQUIRY;
    cmd[1] = 1;
    cmd[2] = 0x83;
    cmd[4] = sizeof(buf);

    memset(&io_header, 0, sizeof(io_header));
    io_header.interface_id = 'S';
    io_header.dxfer_direction = SG_DXFER_FROM_DEV;
    io_header.dxfer_len = sizeof(buf);
    io_header.dxferp = buf;
    io_header.cmdp = cmd;
    io_header.cmd_len = sizeof(cmd);
    io_header.mx_sb_len = sizeof(sensebuf);
    io_header.sbp = sensebuf;
    io_header.timeout = 6000; /* XXX */

    ret = blk_ioctl(s->conf.blk, SG_IO, &io_header);
    if (ret < 0 || io_header.driver_status || io_header.host_status) {
        return;
    }

    len = MIN((buf[2] << 8) | buf[3], sizeof(buf) - 4);
    for (i = 0; i + 3 <= len; ) {
        const uint8_t *p = &buf[i + 4];
        uint64_t wwn;

        if (i + (p[3] + 4) > len) {
            break;
        }

        if ((p[1] & 0x10) == 0) {
            /* Associated with the logical unit */
            if (read_naa_id(p, &wwn) == 0) {
                s->wwn = wwn;
            }
        } else if ((p[1] & 0x10) == 0x10) {
            /* Associated with the target port */
            if (read_naa_id(p, &wwn) == 0) {
                s->port_wwn = wwn;
            }
        }

        i += p[3] + 4;
    }
}

462
static int get_stream_blocksize(BlockBackend *blk)
A
aurel32 已提交
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
{
    uint8_t cmd[6];
    uint8_t buf[12];
    uint8_t sensebuf[8];
    sg_io_hdr_t io_header;
    int ret;

    memset(cmd, 0, sizeof(cmd));
    memset(buf, 0, sizeof(buf));
    cmd[0] = MODE_SENSE;
    cmd[4] = sizeof(buf);

    memset(&io_header, 0, sizeof(io_header));
    io_header.interface_id = 'S';
    io_header.dxfer_direction = SG_DXFER_FROM_DEV;
    io_header.dxfer_len = sizeof(buf);
    io_header.dxferp = buf;
    io_header.cmdp = cmd;
    io_header.cmd_len = sizeof(cmd);
    io_header.mx_sb_len = sizeof(sensebuf);
    io_header.sbp = sensebuf;
    io_header.timeout = 6000; /* XXX */

486
    ret = blk_ioctl(blk, SG_IO, &io_header);
487
    if (ret < 0 || io_header.driver_status || io_header.host_status) {
A
aurel32 已提交
488
        return -1;
489
    }
A
aurel32 已提交
490 491 492
    return (buf[9] << 16) | (buf[10] << 8) | buf[11];
}

493 494
static void scsi_generic_reset(DeviceState *dev)
{
495
    SCSIDevice *s = SCSI_DEVICE(dev);
496

497
    scsi_device_purge_requests(s, SENSE_CODE(RESET));
498 499
}

500
static void scsi_generic_realize(SCSIDevice *s, Error **errp)
501
{
502
    int rc;
503 504 505
    int sg_version;
    struct sg_scsi_id scsiid;

506
    if (!s->conf.blk) {
507 508
        error_setg(errp, "drive property not set");
        return;
509
    }
510

511
    if (blk_get_on_error(s->conf.blk, 0) != BLOCKDEV_ON_ERROR_ENOSPC) {
512 513
        error_setg(errp, "Device doesn't support drive option werror");
        return;
514
    }
515
    if (blk_get_on_error(s->conf.blk, 1) != BLOCKDEV_ON_ERROR_REPORT) {
516 517
        error_setg(errp, "Device doesn't support drive option rerror");
        return;
518 519
    }

520
    /* check we are using a driver managing SG_IO (version 3 and after */
521
    rc = blk_ioctl(s->conf.blk, SG_GET_VERSION_NUM, &sg_version);
522
    if (rc < 0) {
523 524 525 526
        error_setg(errp, "cannot get SG_IO version number: %s.  "
                         "Is this a SCSI device?",
                         strerror(-rc));
        return;
527 528
    }
    if (sg_version < 30000) {
529 530
        error_setg(errp, "scsi generic interface too old");
        return;
531
    }
532 533

    /* get LUN of the /dev/sg? */
534
    if (blk_ioctl(s->conf.blk, SG_GET_SCSI_ID, &scsiid)) {
535 536
        error_setg(errp, "SG_GET_SCSI_ID ioctl failed");
        return;
537
    }
538 539

    /* define device state */
540 541
    s->type = scsiid.scsi_type;
    DPRINTF("device type %d\n", s->type);
P
Paolo Bonzini 已提交
542

543 544
    switch (s->type) {
    case TYPE_TAPE:
545
        s->blocksize = get_stream_blocksize(s->conf.blk);
546 547 548
        if (s->blocksize == -1) {
            s->blocksize = 0;
        }
549 550 551 552 553 554 555 556 557 558 559 560 561
        break;

        /* Make a guess for block devices, we'll fix it when the guest sends.
         * READ CAPACITY.  If they don't, they likely would assume these sizes
         * anyway. (TODO: they could also send MODE SENSE).
         */
    case TYPE_ROM:
    case TYPE_WORM:
        s->blocksize = 2048;
        break;
    default:
        s->blocksize = 512;
        break;
A
aurel32 已提交
562
    }
563 564

    DPRINTF("block size %d\n", s->blocksize);
565 566

    scsi_generic_read_device_identification(s);
567
}
568

P
Paolo Bonzini 已提交
569
const SCSIReqOps scsi_generic_req_ops = {
P
Paolo Bonzini 已提交
570
    .size         = sizeof(SCSIGenericReq),
571 572 573 574 575
    .free_req     = scsi_free_request,
    .send_command = scsi_send_command,
    .read_data    = scsi_read_data,
    .write_data   = scsi_write_data,
    .get_buf      = scsi_get_buf,
576 577
    .load_request = scsi_generic_load_request,
    .save_request = scsi_generic_save_request,
P
Paolo Bonzini 已提交
578 579 580
};

static SCSIRequest *scsi_new_request(SCSIDevice *d, uint32_t tag, uint32_t lun,
P
Paolo Bonzini 已提交
581
                                     uint8_t *buf, void *hba_private)
P
Paolo Bonzini 已提交
582
{
583
    return scsi_req_alloc(&scsi_generic_req_ops, d, tag, lun, hba_private);
P
Paolo Bonzini 已提交
584 585
}

586
static Property scsi_generic_properties[] = {
587
    DEFINE_PROP_DRIVE("drive", SCSIDevice, conf.blk),
588 589 590
    DEFINE_PROP_END_OF_LIST(),
};

591 592 593 594 595 596
static int scsi_generic_parse_cdb(SCSIDevice *dev, SCSICommand *cmd,
                                  uint8_t *buf, void *hba_private)
{
    return scsi_bus_parse_cdb(dev, cmd, buf, hba_private);
}

597 598
static void scsi_generic_class_initfn(ObjectClass *klass, void *data)
{
599
    DeviceClass *dc = DEVICE_CLASS(klass);
600 601
    SCSIDeviceClass *sc = SCSI_DEVICE_CLASS(klass);

602
    sc->realize      = scsi_generic_realize;
603
    sc->alloc_req    = scsi_new_request;
604
    sc->parse_cdb    = scsi_generic_parse_cdb;
605 606 607 608
    dc->fw_name = "disk";
    dc->desc = "pass through generic scsi device (/dev/sg*)";
    dc->reset = scsi_generic_reset;
    dc->props = scsi_generic_properties;
609
    dc->vmsd  = &vmstate_scsi_device;
610 611
}

612
static const TypeInfo scsi_generic_info = {
613 614 615 616
    .name          = "scsi-generic",
    .parent        = TYPE_SCSI_DEVICE,
    .instance_size = sizeof(SCSIDevice),
    .class_init    = scsi_generic_class_initfn,
617
};
618

A
Andreas Färber 已提交
619
static void scsi_generic_register_types(void)
620
{
621
    type_register_static(&scsi_generic_info);
622
}
A
Andreas Färber 已提交
623 624

type_init(scsi_generic_register_types)
625

626
#endif /* __linux__ */