New branch 'napa-2.6.37' available with the following commits:
commit b4a4250aae3e174e020dbb6b9d4d7bc30caa3523
Author: Stephen Hemminger <[email protected]>
Date:   Wed Feb 23 07:54:08 2011 -0800

    Add compiled python to .gitignore

commit 9ab1c51eadcc15ae024ba9a07f7215cd3aecaeed
Author: Stephen Hemminger <[email protected]>
Date:   Tue Feb 22 17:24:23 2011 -0800

    Add IPSET 6.0
    
    Integrate IP set 6.0 support from:
      http://ipset.netfilter.org/install.html

commit f3048a56b2aa5afb76f4e421dfc78cf5ae9bc09a
Author: Jozsef Kadlecsik <[email protected]>
Date:   Fri Dec 3 02:39:01 2010 +0000

    The new jhash implementation
    
    The current jhash.h implements the lookup2() hash function by Bob Jenkins.
    However, lookup2() is outdated as Bob wrote a new hash function called
    lookup3(). The patch replaces the lookup2() implementation of the 'jhash*'
    functions with that of lookup3().
    
    You can read a longer comparison of the two and other hash functions at
    http://burtleburtle.net/bob/hash/doobs.html.
    
    Signed-off-by: Jozsef Kadlecsik <[email protected]>
    Acked-by: Rusty Russell <[email protected]>
    Signed-off-by: David S. Miller <[email protected]>

commit cf9706c6b241f859d9dc23c503b499d9e93f1095
Author: Jozsef Kadlecsik <[email protected]>
Date:   Thu Nov 25 03:15:07 2010 +0000

    ipv6: Prepare the tree for un-inlined jhash.
    
    jhash is widely used in the kernel and because the functions
    are inlined, the cost in size is significant. Also, the new jhash
    functions are slightly larger than the previous ones so better un-inline.
    As a preparation step, the calls to the internal macros are replaced
    with the plain jhash function calls.
    
    Signed-off-by: Jozsef Kadlecsik <[email protected]>
    Signed-off-by: David S. Miller <[email protected]>

commit 4ff263cf3082705f207857063e739aa9a9323df1
Author: Stephen Hemminger <[email protected]>
Date:   Tue Feb 22 15:55:24 2011 -0800

    Add netlink support for ipset
    
    Netlink patch from ipset6.0

commit e79a61f8443034e830775410fd4b8029a1adcc5f
Author: Stephen Hemminger <[email protected]>
Date:   Wed Feb 2 11:02:48 2011 -0800

    Add ipp2p netfilter module
    
    This is revised version from earlier VC6.2 release.

commit 2e23d94b5ca3a1d1921aa224320315b5eb6b4e5b
Author: Stephen Hemminger <[email protected]>
Date:   Wed Feb 2 10:58:59 2011 -0800

    Add link_filter sysctl
    
    This is a Vyatta extension to make links behave more like strict
    host model.  Packets are not routed if destination interface is down.

commit 6568fb88aec6f19ccb775a7db7825f5ec419b0f4
Author: Kevin Cernekee <[email protected]>
Date:   Sun Nov 21 18:40:11 2010 -0800

    netfilter: nf_conntrack_sip: Handle Cisco 7941/7945 IP phones
    
    [v3:
      Only activate the new forced_dport logic if the IP matches, but the
      port does not. ]
    
    Most SIP devices use a source port of 5060/udp on SIP requests, so the
    response automatically comes back to port 5060:
    
    phone_ip:5060 -> proxy_ip:5060   REGISTER
    proxy_ip:5060 -> phone_ip:5060   100 Trying
    
    The newer Cisco IP phones, however, use a randomly chosen high source
    port for the SIP request but expect the response on port 5060:
    
    phone_ip:49173 -> proxy_ip:5060  REGISTER
    proxy_ip:5060 -> phone_ip:5060   100 Trying
    
    Standard Linux NAT, with or without nf_nat_sip, will send the reply back
    to port 49173, not 5060:
    
    phone_ip:49173 -> proxy_ip:5060  REGISTER
    proxy_ip:5060 -> phone_ip:49173  100 Trying
    
    But the phone is not listening on 49173, so it will never see the reply.
    
    This patch modifies nf_*_sip to work around this quirk by extracting
    the SIP response port from the Via: header, iff the source IP in the
    packet header matches the source IP in the SIP request.
    
    Signed-off-by: Kevin Cernekee <[email protected]>

commit 12c0a0036a44cf978742eec87121c250248d7a0a
Author: Robert Bays <[email protected]>
Date:   Fri Jul 16 12:04:04 2010 -0700

    disable lro on vmxnet3 driver by default.

commit d097230b7f43725d0c7ad54b3fa0bba6e55762c4
Author: Stephen Hemminger <[email protected]>
Date:   Wed Jan 12 16:59:31 2011 -0800

    set_rtc_mmss: show warning message only once
    
    Occasionally the system gets into a state where the CMOS clock has gotten
    slightly ahead of current time and the periodic update of RTC fails.  The
    message is a nuisance and repeats spamming the log.
    
      See: http://www.ntp.org/ntpfaq/NTP-s-trbl-spec.htm#Q-LINUX-SET-RTC-MMSS
    
    Rather than just removing the message, make it show only once and reduce
    severity since it indicates a normal and non urgent condition.
    
    Signed-off-by: Stephen Hemminger <[email protected]>
    Cc: Richard Henderson <[email protected]>
    Cc: Ivan Kokshaysky <[email protected]>
    Cc: Matt Turner <[email protected]>
    Cc: Ralf Baechle <[email protected]>
    Cc: David Howells <[email protected]>
    Cc: Paul Mundt <[email protected]>
    Cc: Ingo Molnar <[email protected]>
    Cc: "H. Peter Anvin" <[email protected]>
    Cc: Thomas Gleixner <[email protected]>
    Signed-off-by: Andrew Morton <[email protected]>
    Signed-off-by: Linus Torvalds <[email protected]>
    (cherry picked from commit 3e5c12409c54c30f1d1b16bba5d4d24e35aa283c)

commit 81b0abf779596a929f6b6434ddd81625d289e591
Author: Stephen Hemminger <[email protected]>
Date:   Wed Feb 2 10:31:24 2011 -0800

    Add Vyatta Logo
    
    Put Vyatta logo in boot logo images

commit a11ef390f5acf869371ea6a119feebee3323e725
Author: Stephen Hemminger <[email protected]>
Date:   Wed Feb 2 13:53:59 2011 -0800

    Fix unionfs for file_ops change
    
    The code to handle compat_ioctl had wrong args.

commit d191b53dd2e30dfe886a29205c0f0b176ce61898
Author: Stephen Hemminger <[email protected]>
Date:   Wed Feb 2 08:42:42 2011 -0800

    Unionfs 2.5.7 for 2.6.37-rc1

commit 0d148b11b6e70eb13f40bd136a87eeb5c531ea5d
Author: Stephen Hemminger <[email protected]>
Date:   Tue Feb 22 14:19:29 2011 -0800

    Add debian build infrastructure
    
    This adds debian build (based on Mendocino) for 2.6.37

_______________________________________________
svn mailing list
[email protected]
http://mailman.vyatta.com/mailman/listinfo/svn

Reply via email to