Re: [PATCH 00/22] FCoE VN2VN fixes

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 08/05/16 09:16, Hannes Reinecke wrote:
On 08/05/2016 05:33 PM, Bart Van Assche wrote:
On 08/05/2016 12:43 AM, Hannes Reinecke wrote:
On 08/04/2016 04:59 PM, Bart Van Assche wrote:
On 08/03/16 06:13, Hannes Reinecke wrote:
As usual, comments and reviews are welcome.

Great work :-) Have you been testing these patches against the LIO FCoE
target driver? In that case you might need to port the following patch
to LIO, a patch that fixes a subtle data corruption issue:
https://sourceforge.net/p/scst/svn/4969.

Indeed I have. With this patchset I've managed to run FCoE over virtio
with LIO running on the host. Quite cool, methinks :-)

And indeed, your patch seem to be helping with the issues I've seen
(mysterious out-of-order frames and wireshark complaining about invalid
frames).
Still a bit hackish, though. Can't we move the data destructor into the
skb itself and not free the data in the target core?

Hello Hannes,

Several LIO drivers already support sending data asynchronously to the
initiator, e.g. the ib_srpt and qla2x00t drivers. These drivers avoid
that struct se_cmd and its data buffer are freed before sending finished
by passing the TARGET_SCF_ACK_KREF flag to target_submit_cmd_map_sgls()
and by calling target_put_sess_cmd() after the data transfer has
finished. Since the tcm_fc driver already specifies TARGET_SCF_ACK_KREF
when submitting commands to the LIO core I think what's needed to make
use_sg=1 safe in the tcm_fc driver is for use_sg=1 to move the
target_put_sess_cmd() call from ft_queue_status() into a callback
function that is called when transmitting data has finished. Maybe the
SKBTX_DEV_ZEROCOPY flag can be used to make the network stack invoke an
appropriate callback function. See e.g. xenvif_zerocopy_callback() in
the xen-netback driver.

Well, Johannes and me looked into that a bit closer; there actually _is_
a destructor callback in the sk_buff, so in theory we could hook into
that. However, I'm not sure if that's working as intended; the FCoE
stack does a lot of skb_clone(), and my setup even more so (tcm_fc over
vlan over veth over bridge over tap into the guest).
So it's anyones guess at which point of the chain the original data will
be freed. And whether the 'netdev' point still points to tcm_fcs netdev ...
Debugging continues.

Hi Hannes,

Does it really matter that the FCoE skb's get cloned? skb_clone() increases skb_shinfo(skb)->dataref. skb_release_data() only calls the skb destructor if skb_shinfo(skb)->dataref reaches zero. I think this means even if an skb gets cloned that the destructor is only called after the skb data has been sent.

Bart.
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [SCSI Target Devel]     [Linux SCSI Target Infrastructure]     [Kernel Newbies]     [IDE]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux ATA RAID]     [Linux IIO]     [Samba]     [Device Mapper]
  Powered by Linux