search for: hardsector

Displaying 7 results from an estimated 7 matches for "hardsector".

Did you mean: hard_sector
2008 May 27
1
[PATCH/RFC] virtio_blk: check for hardsector size from host
Rusty, Jens, I need your opinion on the following patch. It seems to work, but I would like to get some feedback if this patch is the right approach: --- Currently virtio_blk assumes a 512 byte hard sector size. This can cause trouble / performance issues if the backing has a different block size (like a file on an ext3 file system formatted with 4k block size or a dasd device). Lets add a
2008 May 27
1
[PATCH/RFC] virtio_blk: check for hardsector size from host
Rusty, Jens, I need your opinion on the following patch. It seems to work, but I would like to get some feedback if this patch is the right approach: --- Currently virtio_blk assumes a 512 byte hard sector size. This can cause trouble / performance issues if the backing has a different block size (like a file on an ext3 file system formatted with 4k block size or a dasd device). Lets add a
2008 Jul 25
0
[PULL] virtio patches
...684b83b1e1579bbbc80e703e990c0cccf5892c: Linus Torvalds (1): Merge git://git.kernel.org/.../bart/ide-2.6 are available in the git repository at: ssh://master.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus.git master Christian Borntraeger (5): virtio_blk: check for hardsector size from host hvc_console: rework setup to replace irq functions with callbacks virtio_console: use virtqueue notification for hvc_console virtio: console as a config option s390: use virtio_console for KVM on s390 Herbert Xu (2): virtio net: Add ethtool ops for SG/G...
2008 Jul 25
0
[PULL] virtio patches
...684b83b1e1579bbbc80e703e990c0cccf5892c: Linus Torvalds (1): Merge git://git.kernel.org/.../bart/ide-2.6 are available in the git repository at: ssh://master.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus.git master Christian Borntraeger (5): virtio_blk: check for hardsector size from host hvc_console: rework setup to replace irq functions with callbacks virtio_console: use virtqueue notification for hvc_console virtio: console as a config option s390: use virtio_console for KVM on s390 Herbert Xu (2): virtio net: Add ethtool ops for SG/G...
2008 Jul 23
2
[PULL] lguest and virtio patches
...#39; of git://git.kernel.org/.../tip/linux-2.6-tip are available in the git repository at: ssh://master.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus.git master Andrew Morton (1): lguest: use cpu capability accessors Christian Borntraeger (5): virtio_blk: check for hardsector size from host hvc_console: rework setup to replace irq functions with callbacks virtio_console: use virtqueue notification for hvc_console virtio: console as a config option s390: use virtio_console for KVM on s390 Herbert Xu (2): virtio net: Add ethtool ops for SG/G...
2008 Jul 23
2
[PULL] lguest and virtio patches
...#39; of git://git.kernel.org/.../tip/linux-2.6-tip are available in the git repository at: ssh://master.kernel.org/pub/scm/linux/kernel/git/rusty/linux-2.6-for-linus.git master Andrew Morton (1): lguest: use cpu capability accessors Christian Borntraeger (5): virtio_blk: check for hardsector size from host hvc_console: rework setup to replace irq functions with callbacks virtio_console: use virtqueue notification for hvc_console virtio: console as a config option s390: use virtio_console for KVM on s390 Herbert Xu (2): virtio net: Add ethtool ops for SG/G...
2007 Jan 02
0
[PATCH 1/4] add scsi-target and IO_CMD_EPOLL_WAIT patches
..., 0) < bytes) { +- ret = -EINVAL; ++ if (bio_add_pc_page(q, bio, page, bytes, 0) < bytes) + break; +- } + + len -= bytes; + } +@@ -620,10 +618,9 @@ static struct bio *__bio_map_user_iov(re + + nr_pages += end - start; + /* +- * transfer and buffer must be aligned to at least hardsector +- * size for now, in the future we can relax this restriction ++ * buffer must be aligned to at least hardsector size for now + */ +- if ((uaddr & queue_dma_alignment(q)) || (len & queue_dma_alignment(q))) ++ if (uaddr & queue_dma_alignment(q)) + return ERR_PTR(-EINVAL); +...