1. 05 5月, 2006 4 次提交
    • L
      Merge branch 'splice' of git://brick.kernel.dk/data/git/linux-2.6-block · cbdf811c
      Linus Torvalds 提交于
      * 'splice' of git://brick.kernel.dk/data/git/linux-2.6-block:
        [PATCH] compat_sys_vmsplice: one-off in UIO_MAXIOV check
        [PATCH] splice: redo page lookup if add_to_page_cache() returns -EEXIST
        [PATCH] splice: rename remaining info variables to pipe
        [PATCH] splice: LRU fixups
        [PATCH] splice: fix unlocking of page on error ->prepare_write()
      cbdf811c
    • L
      Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6 · 936ef1d4
      Linus Torvalds 提交于
      * master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6:
        [DECNET]: Fix level1 router hello
        [TCP]: Fix sock_orphan dead lock
        [ROSE]: Eleminate HZ from ROSE kernel interfaces
        [NETROM]: Eleminate HZ from NET/ROM kernel interfaces
        [AX.25]: Eleminate HZ from AX.25 kernel interfaces
        [ROSE]: Fix routing table locking in rose_remove_neigh.
        [AX.25]: Move AX.25 symbol exports
        [HAMRADIO]: Remove remaining SET_MODULE_OWNER calls from hamradio drivers.
        [AX25, ROSE]: Remove useless SET_MODULE_OWNER calls.
        [AX.25]: Spelling fix
        [ROSE]: Remove useless prototype for rose_remove_neigh().
        [NETFILTER]: x_tables: don't use __copy_{from,to}_user on unchecked memory in compat layer
        [NETFILTER]: H.323 helper: Change author's email address
        [NETFILTER]: NAT: silence unused variable warnings with CONFIG_XFRM=n
        [NETFILTER]: H.323 helper: fix use of uninitialized data
        [NETFILTER]: H.323 helper: fix endless loop caused by invalid TPKT len
      936ef1d4
    • L
      Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6 · 0de2a93e
      Linus Torvalds 提交于
      * master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6:
        [SPARC]: Hook up vmsplice into syscall tables.
      0de2a93e
    • L
      CREDITS file update (Tristan Greaves) · fed3be9b
      Linus Torvalds 提交于
      By request from Tristan.
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      fed3be9b
  2. 04 5月, 2006 28 次提交
  3. 03 5月, 2006 4 次提交
    • P
      [NETFILTER] SCTP conntrack: fix infinite loop · e17df688
      Patrick McHardy 提交于
      fix infinite loop in the SCTP-netfilter code: check SCTP chunk size to
      guarantee progress of for_each_sctp_chunk(). (all other uses of
      for_each_sctp_chunk() are preceded by do_basic_checks(), so this fix
      should be complete.)
      
      Based on patch from Ingo Molnar <mingo@elte.hu>
      
      CVE-2006-1527
      Signed-off-by: NPatrick McHardy <kaber@trash.net>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      e17df688
    • A
      forcedeth: fix multi irq issues · ebf34c9b
      Ayaz Abdulla 提交于
      This patch fixes the issues with multiple irqs.
      
      I am resending based on feedback. I decoupled the dma mask for
      consistent memory and fixed leak with multiple irq in error path.
      
      Thanks to Manfred for catching the spin lock problem.
      Signed-Off-By: NAyaz Abdulla <aabdulla@nvidia.com>
      ebf34c9b
    • C
      [PATCH] via-rhine: zero pad short packets on Rhine I ethernet cards · 3e0d167a
      Craig Brind 提交于
      Fixes Rhine I cards disclosing fragments of previously transmitted frames
      in new transmissions.
      
      Before transmission, any socket buffer (skb) shorter than the ethernet
      minimum length of 60 bytes was zero-padded.  On Rhine I cards the data can
      later be copied into an aligned transmission buffer without copying this
      padding.  This resulted in the transmission of the frame with the extra
      bytes beyond the provided content leaking the previous contents of this
      buffer on to the network.
      
      Now zero-padding is repeated in the local aligned buffer if one is used.
      
      Following a suggestion from the via-rhine maintainer, no attempt is made
      here to avoid the duplicated effort of padding the skb if it is known that
      an aligned buffer will definitely be used.  This is to make the change
      "obviously correct" and allow it to be applied to a stable kernel if
      necessary.  There is no change to the flow of control and the changes are
      only to the Rhine I code path.
      
      The patch has run on an in-service Rhine-I host without incident.  Frames
      shorter than 60 bytes are now correctly zero-padded when captured on a
      separate host.  I see no unusual stats reported by ifconfig, and no unusual
      log messages.
      Signed-off-by: NCraig Brind <craigbrind@gmail.com>
      Signed-off-by: NRoger Luethi <rl@hellgate.ch>
      Cc: Jeff Garzik <jeff@garzik.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      3e0d167a
    • O
      [PATCH] mv643xx_eth: provide sysfs class device symlink · b0b8dab2
      Olaf Hering 提交于
      On Sat, Mar 11, Olaf Hering wrote:
      > Why is the /sys/class/net/eth0/device symlink not created for the
      > mv643xx_eth driver? Does this work for other platform device drivers?
      > Seems to work for the ps2 keyboard at least.
      
      The SET_NETDEV_DEV has to be done before a call to register_netdev.  With
      the new patch below, the device symlink for the platform device was
      created.  Unfortunately, after the 4 ls commands, the network connection
      died.  No idea if the box crashed or if something else broke, lost remote
      access.
      
      Provide sysfs 'device' in /class/net/ethN Also, set module owner field,
      like pcnet32 driver does.
      Signed-off-by: NOlaf Hering <olh@suse.de>
      Acked-by: NDale Farnsworth <dale@farnsworth.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      b0b8dab2
  4. 02 5月, 2006 4 次提交