and branch-2.4.

On Wed, Sep 09, 2015 at 10:13:01AM -0700, Ben Pfaff wrote:
> Thanks, applied to master.
> 
> On Tue, Sep 08, 2015 at 06:22:31PM -0700, Jarno Rajahalme wrote:
> > Acked-by: Jarno Rajahalme <[email protected]>
> > 
> > > On Sep 8, 2015, at 4:31 PM, Ben Pfaff <[email protected]> wrote:
> > > 
> > > In a network namespace, /proc/sys/net/core/netdev_max_backlog is not
> > > present, so people running OVS inside Docker will always get a log message
> > > here.  That's not important enough to rise to a WARN level that causes
> > > tests to fail, especially since the default value is rarely changed (and
> > > wouldn't normally be lowered), so reduce the log leve for this to INFO.
> > > 
> > > Reported-by: qcorba <[email protected]>
> > > Reported-at: 
> > > http://openvswitch.org/pipermail/discuss/2015-August/018581.html
> > > Signed-off-by: Ben Pfaff <[email protected]>
> > > ---
> > > ofproto/ofproto-dpif-xlate.c | 2 +-
> > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > > 
> > > diff --git a/ofproto/ofproto-dpif-xlate.c b/ofproto/ofproto-dpif-xlate.c
> > > index de5c9b1..d7ecbe3 100644
> > > --- a/ofproto/ofproto-dpif-xlate.c
> > > +++ b/ofproto/ofproto-dpif-xlate.c
> > > @@ -4634,7 +4634,7 @@ netdev_max_backlog(void)
> > > 
> > >         stream = fopen(filename, "r");
> > >         if (!stream) {
> > > -            VLOG_WARN("%s: open failed (%s)", filename, 
> > > ovs_strerror(errno));
> > > +            VLOG_INFO("%s: open failed (%s)", filename, 
> > > ovs_strerror(errno));
> > >         } else {
> > >             if (fscanf(stream, "%d", &n) != 1) {
> > >                 VLOG_WARN("%s: read error", filename);
> > > -- 
> > > 2.1.3
> > > 
> > > _______________________________________________
> > > dev mailing list
> > > [email protected]
> > > http://openvswitch.org/mailman/listinfo/dev
> > 
_______________________________________________
dev mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/dev

Reply via email to