spapr_vscsi.c (147482ae35b896808af68c0051ad86d3aae12979) | spapr_vscsi.c (0d75590d919454be322f21d55494b8937651fc86) |
---|---|
1/* 2 * QEMU PowerPC pSeries Logical Partition (aka sPAPR) hardware System Emulator 3 * 4 * PAPR Virtual SCSI, aka ibmvscsi 5 * 6 * Copyright (c) 2010,2011 Benjamin Herrenschmidt, IBM Corporation. 7 * 8 * Permission is hereby granted, free of charge, to any person obtaining a copy --- 17 unchanged lines hidden (view full) --- 26 * TODO: 27 * 28 * - Cleanups :-) 29 * - Sort out better how to assign devices to VSCSI instances 30 * - Fix residual counts 31 * - Add indirect descriptors support 32 * - Maybe do autosense (PAPR seems to mandate it, linux doesn't care) 33 */ | 1/* 2 * QEMU PowerPC pSeries Logical Partition (aka sPAPR) hardware System Emulator 3 * 4 * PAPR Virtual SCSI, aka ibmvscsi 5 * 6 * Copyright (c) 2010,2011 Benjamin Herrenschmidt, IBM Corporation. 7 * 8 * Permission is hereby granted, free of charge, to any person obtaining a copy --- 17 unchanged lines hidden (view full) --- 26 * TODO: 27 * 28 * - Cleanups :-) 29 * - Sort out better how to assign devices to VSCSI instances 30 * - Fix residual counts 31 * - Add indirect descriptors support 32 * - Maybe do autosense (PAPR seems to mandate it, linux doesn't care) 33 */ |
34#include "qemu/osdep.h" |
|
34#include "hw/hw.h" 35#include "hw/scsi/scsi.h" 36#include "block/scsi.h" 37#include "srp.h" 38#include "hw/qdev.h" 39#include "hw/ppc/spapr.h" 40#include "hw/ppc/spapr_vio.h" 41#include "viosrp.h" --- 1260 unchanged lines hidden --- | 35#include "hw/hw.h" 36#include "hw/scsi/scsi.h" 37#include "block/scsi.h" 38#include "srp.h" 39#include "hw/qdev.h" 40#include "hw/ppc/spapr.h" 41#include "hw/ppc/spapr_vio.h" 42#include "viosrp.h" --- 1260 unchanged lines hidden --- |