1. 08 4月, 2013 2 次提交
  2. 20 3月, 2013 2 次提交
  3. 12 3月, 2013 1 次提交
  4. 04 1月, 2013 1 次提交
    • G
      Drivers: scsi: remove __dev* attributes. · 6f039790
      Greg Kroah-Hartman 提交于
      CONFIG_HOTPLUG is going away as an option.  As a result, the __dev*
      markings need to be removed.
      
      This change removes the use of __devinit, __devexit_p, __devinitdata,
      __devinitconst, and __devexit from these drivers.
      
      Based on patches originally written by Bill Pemberton, but redone by me
      in order to handle some of the coding style issues better, by hand.
      
      Cc: Bill Pemberton <wfp5p@virginia.edu>
      Cc: Adam Radford <linuxraid@lsi.com>
      Cc: "James E.J. Bottomley" <JBottomley@parallels.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      6f039790
  5. 18 12月, 2012 1 次提交
  6. 27 11月, 2012 1 次提交
  7. 09 10月, 2012 3 次提交
  8. 14 9月, 2012 1 次提交
    • W
      [SCSI] scsi: virtio-scsi: Fix address translation failure of HighMem pages used by sg list · 27e99ade
      Wang Sen 提交于
      When using the commands below to write some data to a virtio-scsi LUN of the
      QEMU guest(32-bit) with 1G physical memory(qemu -m 1024), the qemu will crash.
      
              # sudo mkfs.ext4 /dev/sdb  (/dev/sdb is the virtio-scsi LUN.)
              # sudo mount /dev/sdb /mnt
              # dd if=/dev/zero of=/mnt/file bs=1M count=1024
      
      In current implementation, sg_set_buf is called to add buffers to sg list which
      is put into the virtqueue eventually. But if there are some HighMem pages in
      table->sgl you can not get virtual address by sg_virt. So, sg_virt(sg_elem) may
      return NULL value. This will cause QEMU exit when virtqueue_map_sg is called
      in QEMU because an invalid GPA is passed by virtqueue.
      
      Two solutions are discussed here:
      http://lkml.indiana.edu/hypermail/linux/kernel/1207.3/00675.html
      
      Finally, value assignment approach was adopted because:
      
      Value assignment creates a well-formed scatterlist, because the termination
      marker in source sg_list has been set in blk_rq_map_sg(). The last entry of the
      source sg_list is just copied to the the last entry in destination list.  Note
      that, for now, virtio_ring does not care about the form of the scatterlist and
      simply processes the first out_num + in_num consecutive elements of the sg[]
      array.
      
      I have tested the patch on my workstation. QEMU would not crash any more.
      
      Cc: <stable@vger.kernel.org> # 3.4: 4fe74b1c: [SCSI] virtio-scsi: SCSI driver
      Signed-off-by: NWang Sen <senwang@linux.vnet.ibm.com>
      Acked-by: NPaolo Bonzini <pbonzini@redhat.com>
      Signed-off-by: NJames Bottomley <JBottomley@Parallels.com>
      27e99ade
  9. 20 7月, 2012 6 次提交
  10. 10 5月, 2012 1 次提交
  11. 19 2月, 2012 1 次提交