Displaying 16 results from an estimated 16 matches for "mcq".
Did you mean:
mcl
2020 Jul 16
0
[PATCH vhost next 10/10] vdpa/mlx5: Add VDPA driver for supported mlx5 devices
...t; + u32 tdn;
> + u32 tirn;
> + u32 rqtn;
> + bool valid;
> +};
> +
> +struct mlx5_vdpa_cq_buf {
> + struct mlx5_frag_buf_ctrl fbc;
> + struct mlx5_frag_buf frag_buf;
> + int cqe_size;
> + int nent;
> +};
> +
> +struct mlx5_vdpa_cq {
> + struct mlx5_core_cq mcq;
> + struct mlx5_vdpa_cq_buf buf;
> + struct mlx5_db db;
> + int cqe;
> +};
> +
> +struct mlx5_vdpa_umem {
> + struct mlx5_frag_buf_ctrl fbc;
> + struct mlx5_frag_buf frag_buf;
> + int size;
> + u32 id;
> +};
> +
> +struct mlx5_vdpa_qp {
> + struct mlx5_cor...
2018 May 18
2
[RFC v4 3/5] virtio_ring: add packed ring support
...ad a quick glance. And I found below
> comments in mlx4_en_process_rx_cq():
>
> ```
> /* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx
> * descriptor offset can be deduced from the CQE index instead of
> * reading 'cqe->index' */
> index = cq->mcq.cons_index & ring->size_mask;
> cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
> ```
>
> It seems that although they have a completion
> queue, they are still using the ring in order.
I guess so (at least from the above bits). Git grep -i "out of o...
2018 May 18
2
[RFC v4 3/5] virtio_ring: add packed ring support
...ad a quick glance. And I found below
> comments in mlx4_en_process_rx_cq():
>
> ```
> /* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx
> * descriptor offset can be deduced from the CQE index instead of
> * reading 'cqe->index' */
> index = cq->mcq.cons_index & ring->size_mask;
> cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
> ```
>
> It seems that although they have a completion
> queue, they are still using the ring in order.
I guess so (at least from the above bits). Git grep -i "out of o...
2003 Apr 10
1
BZIP2 Support in the Base system
...ash
--
Odhiambo Washington <wash@wananchi.com> "The box said 'Requires
Wananchi Online Ltd. www.wananchi.com Windows 95, NT, or better,'
Tel: +254 2 313985-9 +254 2 313922 so I installed FreeBSD."
GSM: +254 72 743223 +254 733 744121 This sig is McQ! :-)
Oh, I am a C programmer and I'm okay
I muck with indices and structs all day
And when it works, I shout hoo-ray
Oh, I am a C programmer and I'm okay
2018 May 17
2
[RFC v4 3/5] virtio_ring: add packed ring support
On 2018?05?16? 22:33, Tiwei Bie wrote:
> On Wed, May 16, 2018 at 10:05:44PM +0800, Jason Wang wrote:
>> On 2018?05?16? 21:45, Tiwei Bie wrote:
>>> On Wed, May 16, 2018 at 08:51:43PM +0800, Jason Wang wrote:
>>>> On 2018?05?16? 20:39, Tiwei Bie wrote:
>>>>> On Wed, May 16, 2018 at 07:50:16PM +0800, Jason Wang wrote:
>>>>>> On
2018 May 17
2
[RFC v4 3/5] virtio_ring: add packed ring support
On 2018?05?16? 22:33, Tiwei Bie wrote:
> On Wed, May 16, 2018 at 10:05:44PM +0800, Jason Wang wrote:
>> On 2018?05?16? 21:45, Tiwei Bie wrote:
>>> On Wed, May 16, 2018 at 08:51:43PM +0800, Jason Wang wrote:
>>>> On 2018?05?16? 20:39, Tiwei Bie wrote:
>>>>> On Wed, May 16, 2018 at 07:50:16PM +0800, Jason Wang wrote:
>>>>>> On
2003 Sep 03
1
Weird DISKS behaviour on 4.8-STABLE
...ash
--
Odhiambo Washington <wash@wananchi.com> "The box said 'Requires
Wananchi Online Ltd. www.wananchi.com Windows 95, NT, or better,'
Tel: +254 2 313985-9 +254 2 313922 so I installed FreeBSD."
GSM: +254 72 743223 +254 733 744121 This sig is McQ! :-)
Bore, n.:
A person who talks when you wish him to listen.
-- Ambrose Bierce, "The Devil's Dictionary"
2018 May 18
0
[RFC v4 3/5] virtio_ring: add packed ring support
...mlx4, maybe I'm wrong.
I just had a quick glance. And I found below
comments in mlx4_en_process_rx_cq():
```
/* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx
* descriptor offset can be deduced from the CQE index instead of
* reading 'cqe->index' */
index = cq->mcq.cons_index & ring->size_mask;
cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
```
It seems that although they have a completion
queue, they are still using the ring in order.
I guess maybe storage device may want OOO.
Best regards,
Tiwei Bie
>
> Thanks
>...
2018 May 19
2
[RFC v4 3/5] virtio_ring: add packed ring support
...in mlx4_en_process_rx_cq():
>>>
>>> ```
>>> /* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx
>>> * descriptor offset can be deduced from the CQE index instead of
>>> * reading 'cqe->index' */
>>> index = cq->mcq.cons_index & ring->size_mask;
>>> cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
>>> ```
>>>
>>> It seems that although they have a completion
>>> queue, they are still using the ring in order.
>> I guess so (at least...
2018 May 19
2
[RFC v4 3/5] virtio_ring: add packed ring support
...in mlx4_en_process_rx_cq():
>>>
>>> ```
>>> /* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx
>>> * descriptor offset can be deduced from the CQE index instead of
>>> * reading 'cqe->index' */
>>> index = cq->mcq.cons_index & ring->size_mask;
>>> cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
>>> ```
>>>
>>> It seems that although they have a completion
>>> queue, they are still using the ring in order.
>> I guess so (at least...
2018 May 18
0
[RFC v4 3/5] virtio_ring: add packed ring support
...> > comments in mlx4_en_process_rx_cq():
> >
> > ```
> > /* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx
> > * descriptor offset can be deduced from the CQE index instead of
> > * reading 'cqe->index' */
> > index = cq->mcq.cons_index & ring->size_mask;
> > cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
> > ```
> >
> > It seems that although they have a completion
> > queue, they are still using the ring in order.
>
> I guess so (at least from the abo...
2018 May 19
0
[RFC v4 3/5] virtio_ring: add packed ring support
...>
> > > > ```
> > > > /* We assume a 1:1 mapping between CQEs and Rx descriptors, so Rx
> > > > * descriptor offset can be deduced from the CQE index instead of
> > > > * reading 'cqe->index' */
> > > > index = cq->mcq.cons_index & ring->size_mask;
> > > > cqe = mlx4_en_get_cqe(cq->buf, index, priv->cqe_size) + factor;
> > > > ```
> > > >
> > > > It seems that although they have a completion
> > > > queue, they are still using the ring in o...
2011 Mar 11
3
wine and wine-preloader segfault when running Evernote 4.2.2
I installed Evernote 4.2.2 build 3913 under wine 1.3.14 on Fedora 14 after reading in the AppDB that Evernote 4 works well for others, albeit with sometimes slugging performance. I got Evernote to install just fine, but running it crashes every time. I tried configuring the Evernote wine environment as XP and Windows 7, and have the same problem.
When I launch the Evernote.exe, it launches a few
2020 Feb 27
2
[PATCH] Update the 5 year logo to 10 year logo
...t!mah-zgyU{X}8q{#c7|=?qGN^xH4H8X6JGOMa#m)
zZ&%*`eN_|=Zr2y+AUJxkxbh15*c5p@0|qt`nG{b|VPP9<hynpbsngS*<OY!!rc`^_
zzeh%k2M60W*<@cJdMoD}TE3_z$}_dSxc}Lij5a(xhZpqjJ0!BdsDo&!olVbxMQJ(3
z8xarozfJ4&seZc&V}tx5#1K_Xsm8RgYo<wZuKOpd5`1|0C?`yxkA3HMo>^yCB-v{C
ze@0_7o#@0Oe#VM<;zhuUE}mcQ(1_3aOF$_V?~nF@^h*E_;C8~F=&2sd(b1g=J^S((
z2dFF%s)zw-AwU1l>nrq-AI+mKhdjbrDgX8Z`u7tB@t`h9)72JUG`=~2L<;|((>SL|
z|4d&ORZNTpk%5AK9FDap@r7O;Tv+`J6fUJM9PPN(GQA$f9-3>#iwbed*2W7B8-s@)
z_*JJYrflT^TDUF{M^YndShyCqxI&~Kz~j&^LryW(0o@9oJ3OCaR0n>cLsC}oPfZM>
z;o(l6@Wfjo`yWUj5_!~@Zw^...
2008 Aug 09
2
xy plot in version 2.7.1 for Mac (PR#12520)
...A/Da5M3ken5T2Y27to+Uajha3i
Z4wWijDiY3D4vC4Nkz3S23RYOspM8qP0iZzI0tlp/pQ0GVHwslxu8JNTepCekxazm+kF7sOp9Z35
LsTxRPY0zoUGVsT+JWkk8YmIomLpC7qV5vM/02ns4zvoPjZbnkMbaARbSSfpSeyKoYbrjXnGgewt
PlcO8/6si7i8E7Mbw4YwyTCAbmMzpG3GM/xjWkoH5UQ6Iv0Ooz/In5MmyGcN9awVO+Bmup0Wa6tp
hcEvv8/mkMSuplz5GE63lVKR7ER+C06VRpxpu7C7d+McqJQmQJOByBmPuJiGE2Ib0v04J2RE0Fzs
8Wtwir1LXcYGHqU5hn4Mpw6R/HZvPU3XnqSt2hy6XttMBTgP1mor0eIO+gttpB1sTe+vqY1ysHOO
sPGGWn7QUKsV8DD/mE/lWy5eX3g7l2XQ35Ceo1oqN7xEYfkjmkoV2l3anxDdl+KE3Uqz8Gt2ArP8
Cj2Mk3poRO9E3qHVSm2Y71Gaoj2lOVgitWoLaBLtoSdMBmoyebzV0xoqvRXlV5SVlowZXTxq5Iii
4cMKLyvI9+QNvfQSd+4Q12Cn4sgZlG3PysxIT...
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
...0?B{;Mqi
zHI}bBR&v3VOY*;k1ami$d?BiQA*5V)zK~A-M*<zjXmhX6e_hM{UA`Dzz8GHqBQ*ao
z%~@l}Do)V+?*wtQp4&Blx}HB%&!4MbMjV6^mFOf-*esHoo|~hOBn at N~X)>COA!Ern
zGM-Ez6Uii!HieL>WEvTnKb<7!rCvs6ki3~><fXF`=%khLJDto%g(EMYgS7Li97^Vr
zd1U03^N}?Ev49YYRHuc4*&x?B{|SbXi@@>6#e(6_#C`J;vXqQmCQ6ec=dC%*$;jdr
zg1yMqD~C95TS-7!C7UyDC#z+B{nki!cga8$y<@G}mlAR(Nio(FGV;z1WFzrx5+(jk
zM&2umlx-HN|D==DEo5ZneMmUc$;e5hYRFcUHsce?J^pQkq#rRjQ904Ls&m3P;hZ?Q
z=H$f1X$n_UxthkcbgpJ_J&WtvoaJyemy<lMHRZe+C(Su+!AVQ*DBzAuxzUO{T66t!
z?rg)IS8zvL?z)P*+Hw7APTF%v2kz*|9oKNuiL+}t{XM7GarYm%`v#uUg&Tk5^h...