netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: linux-next: Tree for Apr 1 (netfilter)
       [not found] <20140401183907.a5127cadbe7116261096beaa@canb.auug.org.au>
@ 2014-04-01 18:34 ` Randy Dunlap
  2014-04-01 19:22   ` David Miller
  0 siblings, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2014-04-01 18:34 UTC (permalink / raw)
  To: Stephen Rothwell, linux-next
  Cc: linux-kernel, netfilter-devel, netdev@vger.kernel.org

On 04/01/2014 12:39 AM, Stephen Rothwell wrote:
> Hi all,
> 
> Please do not add material intended for v3.16 to your linux-next included
> branches until after v3.15-rc1 is released.
> 
> This tree still fails (more than usual) the powerpc allyesconfig build.
> 
> Changes since 20140331:
> 
> The ia64 tree lost its build failure.
> 
> The powerpc tree still had its build failure.
> 
> The v4l-dvb tree still had its build failure so I used the version from
> next-20140328.
> 
> The audit tree gained conflicts against Linus' and the net-next trees.
> 
> Non-merge commits (relative to Linus' tree): 10933
>  9135 files changed, 457444 insertions(+), 222441 deletions(-)
> 
> ----------------------------------------------------------------------------
> 
> I have created today's linux-next tree at
> git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
> (patches at http://www.kernel.org/pub/linux/kernel/next/ ).  If you
> are tracking the linux-next tree using git, you should not use "git pull"
> to do so as that will try to merge the new linux-next release with the
> old one.  You should use "git fetch" as mentioned in the FAQ on the wiki
> (see below).
> 
> You can see which trees have been included by looking in the Next/Trees
> file in the source.  There are also quilt-import.log and merge.log files
> in the Next directory.  Between each merge, the tree was built with
> a ppc64_defconfig for powerpc and an allmodconfig for x86_64 and a
> multi_v7_defconfig for arm. After the final fixups (if any), it is also
> built with powerpc allnoconfig (32 and 64 bit), ppc44x_defconfig and
> allyesconfig (this fails its final link) and i386, sparc, sparc64 and arm
> defconfig.
> 
> Below is a summary of the state of the merge.
> 
> I am currently merging 213 trees (counting Linus' and 28 trees of patches
> pending for Linus' tree).
> 
> Stats about the size of the tree over time can be seen at
> http://neuling.org/linux-next-size.html .
> 
> Status of my local build tests will be at
> http://kisskb.ellerman.id.au/linux-next .  If maintainers want to give
> advice about cross compilers/configs that work, we are always open to add
> more builds.
> 
> Thanks to Randy Dunlap for doing many randconfig builds.  And to Paul
> Gortmaker for triage and bug fixes.
> 
> There is a wiki covering stuff to do with linux-next at
> http://linux.f-seidel.de/linux-next/pmwiki/ .  Thanks to Frank Seidel.

 
on x86_64:

net/netfilter/xt_connlimit.c: In function 'connlimit_mt_check':
net/netfilter/xt_connlimit.c:380:18: warning: division by zero [-Wdiv-by-zero]

Maybe just use CONNLIMIT_LOCK_SLOTS instead of ARRAY_SIZE(...).


-- 
~Randy

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: linux-next: Tree for Apr 1 (netfilter)
  2014-04-01 18:34 ` linux-next: Tree for Apr 1 (netfilter) Randy Dunlap
@ 2014-04-01 19:22   ` David Miller
  2014-04-06 13:50     ` Geert Uytterhoeven
  0 siblings, 1 reply; 5+ messages in thread
From: David Miller @ 2014-04-01 19:22 UTC (permalink / raw)
  To: rdunlap; +Cc: sfr, linux-next, linux-kernel, netfilter-devel, netdev

From: Randy Dunlap <rdunlap@infradead.org>
Date: Tue, 01 Apr 2014 11:34:15 -0700

> on x86_64:
> 
> net/netfilter/xt_connlimit.c: In function 'connlimit_mt_check':
> net/netfilter/xt_connlimit.c:380:18: warning: division by zero [-Wdiv-by-zero]
> 
> Maybe just use CONNLIMIT_LOCK_SLOTS instead of ARRAY_SIZE(...).

I'd rather see that ARRAY_SIZE() be adjusted to work cleanly for zero
sized array elements.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: linux-next: Tree for Apr 1 (netfilter)
  2014-04-01 19:22   ` David Miller
@ 2014-04-06 13:50     ` Geert Uytterhoeven
  2014-04-06 15:31       ` David Miller
  0 siblings, 1 reply; 5+ messages in thread
From: Geert Uytterhoeven @ 2014-04-06 13:50 UTC (permalink / raw)
  To: David Miller
  Cc: Randy Dunlap, Stephen Rothwell, Linux-Next,
	linux-kernel@vger.kernel.org, netfilter-devel,
	netdev@vger.kernel.org

On Tue, Apr 1, 2014 at 9:22 PM, David Miller <davem@davemloft.net> wrote:
> From: Randy Dunlap <rdunlap@infradead.org>
> Date: Tue, 01 Apr 2014 11:34:15 -0700
>
>> on x86_64:
>>
>> net/netfilter/xt_connlimit.c: In function 'connlimit_mt_check':
>> net/netfilter/xt_connlimit.c:380:18: warning: division by zero [-Wdiv-by-zero]
>>
>> Maybe just use CONNLIMIT_LOCK_SLOTS instead of ARRAY_SIZE(...).
>
> I'd rather see that ARRAY_SIZE() be adjusted to work cleanly for zero
> sized array elements.

Anyone with a suggestion?

Please note this is now in Linus' tree, possibly crashing people's boxes...

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: linux-next: Tree for Apr 1 (netfilter)
  2014-04-06 13:50     ` Geert Uytterhoeven
@ 2014-04-06 15:31       ` David Miller
  2014-04-06 16:08         ` Geert Uytterhoeven
  0 siblings, 1 reply; 5+ messages in thread
From: David Miller @ 2014-04-06 15:31 UTC (permalink / raw)
  To: geert; +Cc: rdunlap, sfr, linux-next, linux-kernel, netfilter-devel, netdev

From: Geert Uytterhoeven <geert@linux-m68k.org>
Date: Sun, 6 Apr 2014 15:50:04 +0200

> On Tue, Apr 1, 2014 at 9:22 PM, David Miller <davem@davemloft.net> wrote:
>> From: Randy Dunlap <rdunlap@infradead.org>
>> Date: Tue, 01 Apr 2014 11:34:15 -0700
>>
>>> on x86_64:
>>>
>>> net/netfilter/xt_connlimit.c: In function 'connlimit_mt_check':
>>> net/netfilter/xt_connlimit.c:380:18: warning: division by zero [-Wdiv-by-zero]
>>>
>>> Maybe just use CONNLIMIT_LOCK_SLOTS instead of ARRAY_SIZE(...).
>>
>> I'd rather see that ARRAY_SIZE() be adjusted to work cleanly for zero
>> sized array elements.
> 
> Anyone with a suggestion?
> 
> Please note this is now in Linus' tree, possibly crashing people's boxes...

I took in the version of the fix I didn't like via Pablo for
now.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: linux-next: Tree for Apr 1 (netfilter)
  2014-04-06 15:31       ` David Miller
@ 2014-04-06 16:08         ` Geert Uytterhoeven
  0 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2014-04-06 16:08 UTC (permalink / raw)
  To: David Miller
  Cc: Randy Dunlap, Stephen Rothwell, Linux-Next,
	linux-kernel@vger.kernel.org, netfilter-devel,
	netdev@vger.kernel.org

Hi David,

On Sun, Apr 6, 2014 at 5:31 PM, David Miller <davem@davemloft.net> wrote:
>> On Tue, Apr 1, 2014 at 9:22 PM, David Miller <davem@davemloft.net> wrote:
>>> From: Randy Dunlap <rdunlap@infradead.org>
>>> Date: Tue, 01 Apr 2014 11:34:15 -0700
>>>> on x86_64:
>>>>
>>>> net/netfilter/xt_connlimit.c: In function 'connlimit_mt_check':
>>>> net/netfilter/xt_connlimit.c:380:18: warning: division by zero [-Wdiv-by-zero]
>>>>
>>>> Maybe just use CONNLIMIT_LOCK_SLOTS instead of ARRAY_SIZE(...).
>>>
>>> I'd rather see that ARRAY_SIZE() be adjusted to work cleanly for zero
>>> sized array elements.
>>
>> Anyone with a suggestion?
>>
>> Please note this is now in Linus' tree, possibly crashing people's boxes...
>
> I took in the version of the fix I didn't like via Pablo for
> now.

Thank you!

Fixing ARRAY_SIZE() can still be done later, if possible.

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvald

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-04-06 16:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20140401183907.a5127cadbe7116261096beaa@canb.auug.org.au>
2014-04-01 18:34 ` linux-next: Tree for Apr 1 (netfilter) Randy Dunlap
2014-04-01 19:22   ` David Miller
2014-04-06 13:50     ` Geert Uytterhoeven
2014-04-06 15:31       ` David Miller
2014-04-06 16:08         ` Geert Uytterhoeven

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).