search for: l241

Displaying 13 results from an estimated 13 matches for "l241".

Did you mean: 1241
2018 Apr 24
3
[RFC v2] virtio: support packed ring
...thout the > > VIRTQ_DESC_F_WRITE flag, and is ignored by drivers. > > """ > > > > And this is the way how driver ignores the `len` in an used > > descriptor. > > > > https://github.com/oasis-tcs/virtio-spec/blob/d4fec517dfcf/packed-ring.tex#L241 > > """ > > To increase ring capacity the driver can store a (read-only > > by the device) table of indirect descriptors anywhere in memory, > > and insert a descriptor in the main virtqueue (with \field{Flags} > > bit VIRTQ_DESC_F_INDIRECT on) that refe...
2018 Apr 24
3
[RFC v2] virtio: support packed ring
...thout the > > VIRTQ_DESC_F_WRITE flag, and is ignored by drivers. > > """ > > > > And this is the way how driver ignores the `len` in an used > > descriptor. > > > > https://github.com/oasis-tcs/virtio-spec/blob/d4fec517dfcf/packed-ring.tex#L241 > > """ > > To increase ring capacity the driver can store a (read-only > > by the device) table of indirect descriptors anywhere in memory, > > and insert a descriptor in the main virtqueue (with \field{Flags} > > bit VIRTQ_DESC_F_INDIRECT on) that refe...
2018 Apr 24
2
[RFC v2] virtio: support packed ring
...by drivers. > > > > """ > > > > > > > > And this is the way how driver ignores the `len` in an used > > > > descriptor. > > > > > > > > https://github.com/oasis-tcs/virtio-spec/blob/d4fec517dfcf/packed-ring.tex#L241 > > > > """ > > > > To increase ring capacity the driver can store a (read-only > > > > by the device) table of indirect descriptors anywhere in memory, > > > > and insert a descriptor in the main virtqueue (with \field{Flags} > >...
2018 Apr 24
2
[RFC v2] virtio: support packed ring
...by drivers. > > > > """ > > > > > > > > And this is the way how driver ignores the `len` in an used > > > > descriptor. > > > > > > > > https://github.com/oasis-tcs/virtio-spec/blob/d4fec517dfcf/packed-ring.tex#L241 > > > > """ > > > > To increase ring capacity the driver can store a (read-only > > > > by the device) table of indirect descriptors anywhere in memory, > > > > and insert a descriptor in the main virtqueue (with \field{Flags} > >...
2018 Apr 23
2
[RFC v2] virtio: support packed ring
...""" Element Length is reserved for used descriptors without the VIRTQ_DESC_F_WRITE flag, and is ignored by drivers. """ And this is the way how driver ignores the `len` in an used descriptor. https://github.com/oasis-tcs/virtio-spec/blob/d4fec517dfcf/packed-ring.tex#L241 """ To increase ring capacity the driver can store a (read-only by the device) table of indirect descriptors anywhere in memory, and insert a descriptor in the main virtqueue (with \field{Flags} bit VIRTQ_DESC_F_INDIRECT on) that refers to a buffer element containing this indirect de...
2018 Apr 23
2
[RFC v2] virtio: support packed ring
...""" Element Length is reserved for used descriptors without the VIRTQ_DESC_F_WRITE flag, and is ignored by drivers. """ And this is the way how driver ignores the `len` in an used descriptor. https://github.com/oasis-tcs/virtio-spec/blob/d4fec517dfcf/packed-ring.tex#L241 """ To increase ring capacity the driver can store a (read-only by the device) table of indirect descriptors anywhere in memory, and insert a descriptor in the main virtqueue (with \field{Flags} bit VIRTQ_DESC_F_INDIRECT on) that refers to a buffer element containing this indirect de...
2018 Apr 24
1
[RFC v2] virtio: support packed ring
...> > > > > > > > > > > > And this is the way how driver ignores the `len` in an used > > > > > > descriptor. > > > > > > > > > > > > https://github.com/oasis-tcs/virtio-spec/blob/d4fec517dfcf/packed-ring.tex#L241 > > > > > > """ > > > > > > To increase ring capacity the driver can store a (read-only > > > > > > by the device) table of indirect descriptors anywhere in memory, > > > > > > and insert a descriptor in the main...
2016 Aug 02
0
Creating shared object with BASE in EXPORTS on Windows
It looks like `BASE` is a keyword in the .def file specification. https://github.com/bminor/binutils-gdb/blob/master/ld/deffilep.y#L241-L268 For several keywords, I could replicate the syntax error from ld.exe when the keyword was listed in EXPORTS in the .def file. As far as I can tell, the dllname-win.def file is a must in this case making sure none of the keywords get exported there. Also: https://access.redhat.com/document...
2018 Apr 24
0
[RFC v2] virtio: support packed ring
...; > """ > > > > > > > > > > And this is the way how driver ignores the `len` in an used > > > > > descriptor. > > > > > > > > > > https://github.com/oasis-tcs/virtio-spec/blob/d4fec517dfcf/packed-ring.tex#L241 > > > > > """ > > > > > To increase ring capacity the driver can store a (read-only > > > > > by the device) table of indirect descriptors anywhere in memory, > > > > > and insert a descriptor in the main virtqueue (with \fi...
2018 Apr 24
0
[RFC v2] virtio: support packed ring
...h is reserved for used descriptors without the > VIRTQ_DESC_F_WRITE flag, and is ignored by drivers. > """ > > And this is the way how driver ignores the `len` in an used > descriptor. > > https://github.com/oasis-tcs/virtio-spec/blob/d4fec517dfcf/packed-ring.tex#L241 > """ > To increase ring capacity the driver can store a (read-only > by the device) table of indirect descriptors anywhere in memory, > and insert a descriptor in the main virtqueue (with \field{Flags} > bit VIRTQ_DESC_F_INDIRECT on) that refers to a buffer element &g...
2018 Apr 24
0
[RFC v2] virtio: support packed ring
..._F_WRITE flag, and is ignored by drivers. > > > """ > > > > > > And this is the way how driver ignores the `len` in an used > > > descriptor. > > > > > > https://github.com/oasis-tcs/virtio-spec/blob/d4fec517dfcf/packed-ring.tex#L241 > > > """ > > > To increase ring capacity the driver can store a (read-only > > > by the device) table of indirect descriptors anywhere in memory, > > > and insert a descriptor in the main virtqueue (with \field{Flags} > > > bit VIRTQ_DESC...
2018 Apr 01
8
[RFC v2] virtio: support packed ring
Hello everyone, This RFC implements packed ring support for virtio driver. The code was tested with DPDK vhost (testpmd/vhost-PMD) implemented by Jens at http://dpdk.org/ml/archives/dev/2018-January/089417.html Minor changes are needed for the vhost code, e.g. to kick the guest. TODO: - Refinements and bug fixes; - Split into small patches; - Test indirect descriptor support; - Test/fix event
2018 Apr 01
8
[RFC v2] virtio: support packed ring
Hello everyone, This RFC implements packed ring support for virtio driver. The code was tested with DPDK vhost (testpmd/vhost-PMD) implemented by Jens at http://dpdk.org/ml/archives/dev/2018-January/089417.html Minor changes are needed for the vhost code, e.g. to kick the guest. TODO: - Refinements and bug fixes; - Split into small patches; - Test indirect descriptor support; - Test/fix event