Message ID | 20190502094029.22526-4-joergen.andreasen@microchip.com (mailing list archive) |
---|---|
State | Changes Requested |
Headers | show |
Series | Add hw offload of TC police on MSCC ocelot | expand |
Hi Joergen, On 02/05/2019 11:40:29+0200, Joergen Andreasen wrote: > Add default support for ingress qdisc, matchall classification > and police action on MSCC Ocelot. > This patch should be separated from the series as this doesn't have any dependencies and should go through the MIPS tree. > Signed-off-by: Joergen Andreasen <joergen.andreasen@microchip.com> > --- > arch/mips/configs/generic/board-ocelot.config | 7 +++++++ > 1 file changed, 7 insertions(+) > > diff --git a/arch/mips/configs/generic/board-ocelot.config b/arch/mips/configs/generic/board-ocelot.config > index 5e53b4bc47f1..5c7360dd819c 100644 > --- a/arch/mips/configs/generic/board-ocelot.config > +++ b/arch/mips/configs/generic/board-ocelot.config > @@ -25,6 +25,13 @@ CONFIG_SERIAL_OF_PLATFORM=y > CONFIG_NETDEVICES=y > CONFIG_NET_SWITCHDEV=y > CONFIG_NET_DSA=y > +CONFIG_NET_SCHED=y > +CONFIG_NET_SCH_INGRESS=y > +CONFIG_NET_CLS_MATCHALL=y > +CONFIG_NET_CLS_ACT=y > +CONFIG_NET_ACT_POLICE=y > +CONFIG_NET_ACT_GACT=y > + > CONFIG_MSCC_OCELOT_SWITCH=y > CONFIG_MSCC_OCELOT_SWITCH_OCELOT=y > CONFIG_MDIO_MSCC_MIIM=y > -- > 2.17.1 >
Hi Alexandre, The 05/02/2019 18:27, Alexandre Belloni wrote: > External E-Mail > > > Hi Joergen, > > On 02/05/2019 11:40:29+0200, Joergen Andreasen wrote: > > Add default support for ingress qdisc, matchall classification > > and police action on MSCC Ocelot. > > > > This patch should be separated from the series as this doesn't have any > dependencies and should go through the MIPS tree. > I will create a separate patch for this when the other patches has been accepted. > > Signed-off-by: Joergen Andreasen <joergen.andreasen@microchip.com> > > --- > > arch/mips/configs/generic/board-ocelot.config | 7 +++++++ > > 1 file changed, 7 insertions(+) > > > > diff --git a/arch/mips/configs/generic/board-ocelot.config b/arch/mips/configs/generic/board-ocelot.config > > index 5e53b4bc47f1..5c7360dd819c 100644 > > --- a/arch/mips/configs/generic/board-ocelot.config > > +++ b/arch/mips/configs/generic/board-ocelot.config > > @@ -25,6 +25,13 @@ CONFIG_SERIAL_OF_PLATFORM=y > > CONFIG_NETDEVICES=y > > CONFIG_NET_SWITCHDEV=y > > CONFIG_NET_DSA=y > > +CONFIG_NET_SCHED=y > > +CONFIG_NET_SCH_INGRESS=y > > +CONFIG_NET_CLS_MATCHALL=y > > +CONFIG_NET_CLS_ACT=y > > +CONFIG_NET_ACT_POLICE=y > > +CONFIG_NET_ACT_GACT=y > > + > > CONFIG_MSCC_OCELOT_SWITCH=y > > CONFIG_MSCC_OCELOT_SWITCH_OCELOT=y > > CONFIG_MDIO_MSCC_MIIM=y > > -- > > 2.17.1 > > > > -- > Alexandre Belloni, Bootlin > Embedded Linux and Kernel engineering > https://bootlin.com >
diff --git a/arch/mips/configs/generic/board-ocelot.config b/arch/mips/configs/generic/board-ocelot.config index 5e53b4bc47f1..5c7360dd819c 100644 --- a/arch/mips/configs/generic/board-ocelot.config +++ b/arch/mips/configs/generic/board-ocelot.config @@ -25,6 +25,13 @@ CONFIG_SERIAL_OF_PLATFORM=y CONFIG_NETDEVICES=y CONFIG_NET_SWITCHDEV=y CONFIG_NET_DSA=y +CONFIG_NET_SCHED=y +CONFIG_NET_SCH_INGRESS=y +CONFIG_NET_CLS_MATCHALL=y +CONFIG_NET_CLS_ACT=y +CONFIG_NET_ACT_POLICE=y +CONFIG_NET_ACT_GACT=y + CONFIG_MSCC_OCELOT_SWITCH=y CONFIG_MSCC_OCELOT_SWITCH_OCELOT=y CONFIG_MDIO_MSCC_MIIM=y
Add default support for ingress qdisc, matchall classification and police action on MSCC Ocelot. Signed-off-by: Joergen Andreasen <joergen.andreasen@microchip.com> --- arch/mips/configs/generic/board-ocelot.config | 7 +++++++ 1 file changed, 7 insertions(+)