]> git.baikalelectronics.ru Git - kernel.git/commitdiff
s390/qeth: add SW timestamping support for IQD devices
authorJulian Wiedmann <jwi@linux.ibm.com>
Wed, 18 Mar 2020 12:54:51 +0000 (13:54 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 18 Mar 2020 23:33:35 +0000 (16:33 -0700)
This adds support for SOF_TIMESTAMPING_TX_SOFTWARE.
No support for non-IQD devices, since they orphan the skb in their xmit
path.

To play nice with TX bulking, set the timestamp when the buffer that
contains the skb(s) is actually flushed out to HW.

Signed-off-by: Julian Wiedmann <jwi@linux.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/s390/net/qeth_core_main.c
drivers/s390/net/qeth_ethtool.c

index e1d984c29e1f956817cd84ed45e82c23d79a5247..33796fe80a63830e4760cf2922949938319191d8 100644 (file)
@@ -3355,6 +3355,7 @@ static void qeth_flush_buffers(struct qeth_qdio_out_q *queue, int index,
 
        for (i = index; i < index + count; ++i) {
                unsigned int bidx = QDIO_BUFNR(i);
+               struct sk_buff *skb;
 
                buf = queue->bufs[bidx];
                buf->buffer->element[buf->next_element_to_fill - 1].eflags |=
@@ -3363,8 +3364,11 @@ static void qeth_flush_buffers(struct qeth_qdio_out_q *queue, int index,
                if (queue->bufstates)
                        queue->bufstates[bidx].user = buf;
 
-               if (IS_IQD(queue->card))
+               if (IS_IQD(card)) {
+                       skb_queue_walk(&buf->skb_list, skb)
+                               skb_tx_timestamp(skb);
                        continue;
+               }
 
                if (!queue->do_pack) {
                        if ((atomic_read(&queue->used_buffers) >=
index 079b695032ef2ed9c5cef236ed0764e2545b76c5..5cfa371b742670c3c1202864aea38cc65dedf6af 100644 (file)
@@ -204,6 +204,17 @@ static int qeth_set_channels(struct net_device *dev,
        return qeth_set_real_num_tx_queues(card, channels->tx_count);
 }
 
+static int qeth_get_ts_info(struct net_device *dev,
+                           struct ethtool_ts_info *info)
+{
+       struct qeth_card *card = dev->ml_priv;
+
+       if (!IS_IQD(card))
+               return -EOPNOTSUPP;
+
+       return ethtool_op_get_ts_info(dev, info);
+}
+
 static int qeth_get_tunable(struct net_device *dev,
                            const struct ethtool_tunable *tuna, void *data)
 {
@@ -440,6 +451,7 @@ const struct ethtool_ops qeth_ethtool_ops = {
        .get_drvinfo = qeth_get_drvinfo,
        .get_channels = qeth_get_channels,
        .set_channels = qeth_set_channels,
+       .get_ts_info = qeth_get_ts_info,
        .get_tunable = qeth_get_tunable,
        .set_tunable = qeth_set_tunable,
        .get_link_ksettings = qeth_get_link_ksettings,