* [dpdk-dev] [PATCH] ip_pipeline: enable promiscuous mode configuration
@ 2015-09-07 12:57 Jasvinder Singh
2015-09-07 13:29 ` Dumitrescu, Cristian
0 siblings, 1 reply; 3+ messages in thread
From: Jasvinder Singh @ 2015-09-07 12:57 UTC (permalink / raw)
To: dev
This patch allows parser to read promisc entry from
the LINK section defined in configuration file. It
is an optional parameter: if present, value should
be read (yes/no, on/off), else the value is the
default value (i.e. 1 = promiscuous mode on)
Example of config file:
[LINK0]
promisc = no; optional parameter, default value is “yes”
Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
---
examples/ip_pipeline/config_parse.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/examples/ip_pipeline/config_parse.c b/examples/ip_pipeline/config_parse.c
index c9b78f9..e40c4f2 100644
--- a/examples/ip_pipeline/config_parse.c
+++ b/examples/ip_pipeline/config_parse.c
@@ -1240,7 +1240,13 @@ parse_link(struct app_params *app,
struct rte_cfgfile_entry *ent = &entries[i];
ret = -ESRCH;
- if (strcmp(ent->name, "arp_q") == 0)
+ if (strcmp(ent->name, "promisc") == 0) {
+ ret = parser_read_arg_bool(ent->value);
+ if (ret >= 0) {
+ param->promisc = ret;
+ ret = 0;
+ }
+ } else if (strcmp(ent->name, "arp_q") == 0)
ret = parser_read_uint32(¶m->arp_q,
ent->value);
else if (strcmp(ent->name, "tcp_syn_q") == 0)
@@ -1991,6 +1997,7 @@ save_links_params(struct app_params *app, FILE *f)
fprintf(f, "[%s]\n", p->name);
fprintf(f, "; %s = %" PRIu32 "\n", "pmd_id", p->pmd_id);
+ fprintf(f, "%s = %s\n", "promisc", p->promisc ? "yes" : "no");
fprintf(f, "%s = %" PRIu32 "\n", "arp_q", p->arp_q);
fprintf(f, "%s = %" PRIu32 "\n", "tcp_syn_local_q",
p->tcp_syn_local_q);
--
2.1.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] ip_pipeline: enable promiscuous mode configuration
2015-09-07 12:57 [dpdk-dev] [PATCH] ip_pipeline: enable promiscuous mode configuration Jasvinder Singh
@ 2015-09-07 13:29 ` Dumitrescu, Cristian
2015-12-07 0:32 ` Thomas Monjalon
0 siblings, 1 reply; 3+ messages in thread
From: Dumitrescu, Cristian @ 2015-09-07 13:29 UTC (permalink / raw)
To: Singh, Jasvinder, dev
> -----Original Message-----
> From: Singh, Jasvinder
> Sent: Monday, September 7, 2015 3:58 PM
> To: dev@dpdk.org
> Cc: Dumitrescu, Cristian
> Subject: [PATCH] ip_pipeline: enable promiscuous mode configuration
>
> This patch allows parser to read promisc entry from
> the LINK section defined in configuration file. It
> is an optional parameter: if present, value should
> be read (yes/no, on/off), else the value is the
> default value (i.e. 1 = promiscuous mode on)
>
> Example of config file:
> [LINK0]
> promisc = no; optional parameter, default value is “yes”
>
> Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
> ---
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] ip_pipeline: enable promiscuous mode configuration
2015-09-07 13:29 ` Dumitrescu, Cristian
@ 2015-12-07 0:32 ` Thomas Monjalon
0 siblings, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2015-12-07 0:32 UTC (permalink / raw)
To: Singh, Jasvinder; +Cc: dev
> > This patch allows parser to read promisc entry from
> > the LINK section defined in configuration file. It
> > is an optional parameter: if present, value should
> > be read (yes/no, on/off), else the value is the
> > default value (i.e. 1 = promiscuous mode on)
> >
> > Example of config file:
> > [LINK0]
> > promisc = no; optional parameter, default value is “yes”
> >
> > Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
>
> Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
Applied, thanks
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-12-07 0:33 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-07 12:57 [dpdk-dev] [PATCH] ip_pipeline: enable promiscuous mode configuration Jasvinder Singh
2015-09-07 13:29 ` Dumitrescu, Cristian
2015-12-07 0:32 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).