net: mscc: ocelot: delete OCELOT_MRP_CPUQ
authorVladimir Oltean <vladimir.oltean@nxp.com>
Wed, 16 Feb 2022 14:30:06 +0000 (16:30 +0200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 17 Feb 2022 14:06:51 +0000 (14:06 +0000)
MRP frames are configured to be trapped to the CPU queue 7, and this
number is reflected in the extraction header. However, the information
isn't used anywhere, so just leave MRP frames to go to CPU queue 0
unless needed otherwise.

Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mscc/ocelot_mrp.c
include/soc/mscc/ocelot.h

index d763fb3..dc28736 100644 (file)
@@ -102,7 +102,6 @@ static int ocelot_mrp_copy_add_vcap(struct ocelot *ocelot, int port, int prio)
        filter->action.mask_mode = OCELOT_MASK_MODE_PERMIT_DENY;
        filter->action.port_mask = 0x0;
        filter->action.cpu_copy_ena = true;
-       filter->action.cpu_qu_num = OCELOT_MRP_CPUQ;
 
        err = ocelot_vcap_filter_add(ocelot, filter, NULL);
        if (err)
index cacb103..2d7456c 100644 (file)
 #define REG_RESERVED_ADDR              0xffffffff
 #define REG_RESERVED(reg)              REG(reg, REG_RESERVED_ADDR)
 
-#define OCELOT_MRP_CPUQ                        7
-
 enum ocelot_target {
        ANA = 1,
        QS,