* [dpdk-dev] [PATCH] cmdline: increase commandline buffer size to 512 @ 2015-11-05 9:58 John McNamara 2015-11-05 16:50 ` Nélio Laranjeiro 0 siblings, 1 reply; 4+ messages in thread From: John McNamara @ 2015-11-05 9:58 UTC (permalink / raw) To: olivier.matz; +Cc: dev Increase commandline buffer size to 512 to allow for longer commandlines required by testpmd when dealing with flow director and IPv6 addresses. Signed-off-by: John McNamara <john.mcnamara@intel.com> --- lib/librte_cmdline/cmdline_rdline.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_cmdline/cmdline_rdline.h b/lib/librte_cmdline/cmdline_rdline.h index b9aad9b..72e2dad 100644 --- a/lib/librte_cmdline/cmdline_rdline.h +++ b/lib/librte_cmdline/cmdline_rdline.h @@ -93,7 +93,7 @@ extern "C" { #endif /* configuration */ -#define RDLINE_BUF_SIZE 256 +#define RDLINE_BUF_SIZE 512 #define RDLINE_PROMPT_SIZE 32 #define RDLINE_VT100_BUF_SIZE 8 #define RDLINE_HISTORY_BUF_SIZE BUFSIZ -- 1.8.1.4 ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] cmdline: increase commandline buffer size to 512 2015-11-05 9:58 [dpdk-dev] [PATCH] cmdline: increase commandline buffer size to 512 John McNamara @ 2015-11-05 16:50 ` Nélio Laranjeiro 2015-11-09 11:45 ` Mcnamara, John 0 siblings, 1 reply; 4+ messages in thread From: Nélio Laranjeiro @ 2015-11-05 16:50 UTC (permalink / raw) To: John McNamara, Olivier Matz, Thomas Monjalon; +Cc: dev On Thu, Nov 05, 2015 at 09:58:36AM +0000, John McNamara wrote: > Increase commandline buffer size to 512 to allow for longer > commandlines required by testpmd when dealing with flow > director and IPv6 addresses. > > Signed-off-by: John McNamara <john.mcnamara@intel.com> > --- > lib/librte_cmdline/cmdline_rdline.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lib/librte_cmdline/cmdline_rdline.h b/lib/librte_cmdline/cmdline_rdline.h > index b9aad9b..72e2dad 100644 > --- a/lib/librte_cmdline/cmdline_rdline.h > +++ b/lib/librte_cmdline/cmdline_rdline.h > @@ -93,7 +93,7 @@ extern "C" { > #endif > > /* configuration */ > -#define RDLINE_BUF_SIZE 256 > +#define RDLINE_BUF_SIZE 512 > #define RDLINE_PROMPT_SIZE 32 > #define RDLINE_VT100_BUF_SIZE 8 > #define RDLINE_HISTORY_BUF_SIZE BUFSIZ > -- > 1.8.1.4 > I have faced the same issue. For some commands this value is still too low. For example, RETA update can not be used, the command line limits he configuration to 34 entries. See http://dpdk.org/ml/archives/dev/2015-October/024681.html and particularly http://dpdk.org/ml/archives/dev/2015-October/024682.html It was too late to announce an ABI change so we left out the cmdline size update. Olivier, Thomas, what do you think about this? It seems this is really blocking. -- Nélio Laranjeiro 6WIND ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] cmdline: increase commandline buffer size to 512 2015-11-05 16:50 ` Nélio Laranjeiro @ 2015-11-09 11:45 ` Mcnamara, John 2015-11-09 15:54 ` Nélio Laranjeiro 0 siblings, 1 reply; 4+ messages in thread From: Mcnamara, John @ 2015-11-09 11:45 UTC (permalink / raw) To: Nélio Laranjeiro, Olivier Matz, Thomas Monjalon; +Cc: dev > -----Original Message----- > From: Nélio Laranjeiro [mailto:nelio.laranjeiro@6wind.com] > Sent: Thursday, November 5, 2015 4:51 PM > To: Mcnamara, John; Olivier Matz; Thomas Monjalon > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] cmdline: increase commandline buffer size > to 512 > > On Thu, Nov 05, 2015 at 09:58:36AM +0000, John McNamara wrote: > > Increase commandline buffer size to 512 to allow for longer > > commandlines required by testpmd when dealing with flow director and > > IPv6 addresses. > > > > ... > > > > /* configuration */ > > -#define RDLINE_BUF_SIZE 256 > > +#define RDLINE_BUF_SIZE 512 > > > > I have faced the same issue. For some commands this value is still too > low. For example, RETA update can not be used, the command line limits > he configuration to 34 entries. > > See http://dpdk.org/ml/archives/dev/2015-October/024681.html > and particularly > http://dpdk.org/ml/archives/dev/2015-October/024682.html > > It was too late to announce an ABI change so we left out the cmdline > size update. > > Olivier, Thomas, what do you think about this? It seems this is really > blocking. Hi, Since the change breaks ABI I'll self nack. However, this is something that should be fixed since it will affect any DPDK application with a long commandline. I can put a warning of future ABI breakage in the release notes but I see that there are other #defines that you need to increase in your patchset so do you want to submit the ABI deprecation notice? John. -- ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] cmdline: increase commandline buffer size to 512 2015-11-09 11:45 ` Mcnamara, John @ 2015-11-09 15:54 ` Nélio Laranjeiro 0 siblings, 0 replies; 4+ messages in thread From: Nélio Laranjeiro @ 2015-11-09 15:54 UTC (permalink / raw) To: Mcnamara, John; +Cc: dev On Mon, Nov 09, 2015 at 11:45:04AM +0000, Mcnamara, John wrote: > > > > -----Original Message----- > > From: Nélio Laranjeiro [mailto:nelio.laranjeiro@6wind.com] > > Sent: Thursday, November 5, 2015 4:51 PM > > To: Mcnamara, John; Olivier Matz; Thomas Monjalon > > Cc: dev@dpdk.org > > Subject: Re: [dpdk-dev] [PATCH] cmdline: increase commandline buffer size > > to 512 > > > > On Thu, Nov 05, 2015 at 09:58:36AM +0000, John McNamara wrote: > > > Increase commandline buffer size to 512 to allow for longer > > > commandlines required by testpmd when dealing with flow director and > > > IPv6 addresses. > > > > > > ... > > > > > > /* configuration */ > > > -#define RDLINE_BUF_SIZE 256 > > > +#define RDLINE_BUF_SIZE 512 > > > > > > > I have faced the same issue. For some commands this value is still too > > low. For example, RETA update can not be used, the command line limits > > he configuration to 34 entries. > > > > See http://dpdk.org/ml/archives/dev/2015-October/024681.html > > and particularly > > http://dpdk.org/ml/archives/dev/2015-October/024682.html > > > > It was too late to announce an ABI change so we left out the cmdline > > size update. > > > > Olivier, Thomas, what do you think about this? It seems this is really > > blocking. > > Hi, > > Since the change breaks ABI I'll self nack. > > However, this is something that should be fixed since it will affect any DPDK application with a long commandline. > > I can put a warning of future ABI breakage in the release notes but I see that there are other #defines that you need to increase in your patchset so do you want to submit the ABI deprecation notice? > > John. > -- Hi John, I will do it, I have another depreciation related to RETA. Thanks. -- Nélio Laranjeiro 6WIND ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-11-09 15:54 UTC | newest] Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2015-11-05 9:58 [dpdk-dev] [PATCH] cmdline: increase commandline buffer size to 512 John McNamara 2015-11-05 16:50 ` Nélio Laranjeiro 2015-11-09 11:45 ` Mcnamara, John 2015-11-09 15:54 ` Nélio Laranjeiro
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).