net: ethernet: ti: netcp_ethss: use cpts to check if packet needs timestamping
authorIvan Khoronzhuk <ivan.khoronzhuk@linaro.org>
Tue, 27 Jun 2017 13:58:53 +0000 (16:58 +0300)
committerDavid S. Miller <davem@davemloft.net>
Thu, 29 Jun 2017 16:28:57 +0000 (12:28 -0400)
There is cpts function to check if packet can be timstamped with cpts.
Seems that ptp_classify_raw cover all cases listed with "case".

Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ti/netcp_ethss.c

index 0847a8f48cfe1d11d5001c1da2e0a33200a05116..28cb38af1a348799687149e07084cd55cf4aa1a9 100644 (file)
@@ -2503,24 +2503,8 @@ static bool gbe_need_txtstamp(struct gbe_intf *gbe_intf,
                              const struct netcp_packet *p_info)
 {
        struct sk_buff *skb = p_info->skb;
-       unsigned int class = ptp_classify_raw(skb);
 
-       if (class == PTP_CLASS_NONE)
-               return false;
-
-       switch (class) {
-       case PTP_CLASS_V1_IPV4:
-       case PTP_CLASS_V1_IPV6:
-       case PTP_CLASS_V2_IPV4:
-       case PTP_CLASS_V2_IPV6:
-       case PTP_CLASS_V2_L2:
-       case (PTP_CLASS_V2_VLAN | PTP_CLASS_L2):
-       case (PTP_CLASS_V2_VLAN | PTP_CLASS_IPV4):
-       case (PTP_CLASS_V2_VLAN | PTP_CLASS_IPV6):
-               return true;
-       }
-
-       return false;
+       return cpts_can_timestamp(gbe_intf->gbe_dev->cpts, skb);
 }
 
 static int gbe_txtstamp_mark_pkt(struct gbe_intf *gbe_intf,