Remove a global variable in ip_input

2014-06-04 Thread Martin Pieuchot
ok? Index: netinet/ip_input.c === RCS file: /home/ncvs/src/sys/netinet/ip_input.c,v retrieving revision 1.233 diff -u -p -r1.233 ip_input.c --- netinet/ip_input.c 10 May 2014 12:30:27 - 1.233 +++ netinet/ip_input.c 4 Jun

Re: Remove a global variable in ip_input

2014-06-04 Thread Bret Lambert
On Wed, Jun 04, 2014 at 12:30:58PM +0200, Martin Pieuchot wrote: ok? Seems reasonable enough; are there any alignment issues placing it on the stack? Index: netinet/ip_input.c === RCS file:

Re: Remove a global variable in ip_input

2014-06-04 Thread Martin Pieuchot
On 04/06/14(Wed) 12:45, Bret Lambert wrote: On Wed, Jun 04, 2014 at 12:30:58PM +0200, Martin Pieuchot wrote: ok? Seems reasonable enough; are there any alignment issues placing it on the stack? Nop, it's just a structure used to do some address lookups, it's already done like that in other

Re: Remove a global variable in ip_input

2014-06-04 Thread Mike Belopuhov
On 4 June 2014 12:30, Martin Pieuchot mpieuc...@nolizard.org wrote: ok? sure