1. 21 6月, 2005 11 次提交
  2. 19 6月, 2005 12 次提交
  3. 18 6月, 2005 1 次提交
  4. 14 6月, 2005 2 次提交
    • J
      [IPV4]: Sysctl configurable icmp error source address. · 1c2fb7f9
      J. Simonetti 提交于
      This patch alows you to change the source address of icmp error
      messages. It applies cleanly to 2.6.11.11 and retains the default
      behaviour.
      
      In the old (default) behaviour icmp error messages are sent with the ip
      of the exiting interface.
      
      The new behaviour (when the sysctl variable is toggled on), it will send
      the message with the ip of the interface that received the packet that
      caused the icmp error. This is the behaviour network administrators will
      expect from a router. It makes debugging complicated network layouts
      much easier. Also, all 'vendor routers' I know of have the later
      behaviour.
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      1c2fb7f9
    • T
      [NET]: linux/if_tr.h needs asm/byteorder.h · 03722adc
      Tom Rini 提交于
      <linux/if_tr.h> uses __be16, but does not directly include
      <asm/byteorder.h>.  Add this in, so that dhcp/net-tools token ring code
      can compile again.
      Signed-off-by: NTom Rini <trini@kernel.crashing.org>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      03722adc
  5. 13 6月, 2005 1 次提交
  6. 09 6月, 2005 2 次提交
  7. 08 6月, 2005 1 次提交
  8. 07 6月, 2005 1 次提交
  9. 03 6月, 2005 4 次提交
    • R
      [PATCH] USB: update urb documentation · 719df469
      Roman Kagan 提交于
      On Wed, May 04, 2005 at 01:37:30PM -0700, David Brownell wrote:
      > On Wednesday 04 May 2005 12:19 pm, Roman Kagan wrote:
      > > struct urb {
      > > 	/* private, usb core and host controller only fields in the urb */
      > > 	...
      > > 	struct list_head urb_list;	/* list pointer to all active urbs */
      > > 	...
      > > };
      > >
      > > Is it safe to use it for driver's purposes when the driver owns the urb,
      > > that is, starting from the completion routine until the urb is submitted
      > > with usb_submit_urb()?
      >
      > Right now, it should be.
      
      Great!  FWIW I've briefly tested a modified version of usbatm using
      the list head in struct urb instead of creating a wrapper struct, and I
      haven't seen any failures yet.  So I tend to believe that your "should
      be" actually means "is" :)
      
      > > If it is, can it be guaranteed in future, e.g.
      > > by moving the list head into the public section of struct urb?
      >
      > In fact I'm not sure why it ever got called "private" to usbcore/hcds.
      > I thought the idea was that it should be like urb->status, reserved for
      > whoever controls the URB.
      
      OK then how about the following (essentially documentation) patch?
      Signed-off-by: NRoman Kagan <rkagan@mail.ru>
      Acked-by: NDavid Brownell <david-b@pacbell.net>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      719df469
    • J
      [NET]: Fix HH_DATA_OFF. · 5ba0eac6
      Jiri Benc 提交于
      When the hardware header size is a multiple of HH_DATA_MOD, HH_DATA_OFF()
      incorrectly returns HH_DATA_MOD (instead of 0). This affects ieee80211 layer
      as 802.11 header is 32 bytes long.
      Signed-off-by: NJiri Benc <jbenc@suse.cz>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      5ba0eac6
    • C
      [NET]: Fix locking in shaper driver. · b597ef47
      Christoph Hellwig 提交于
       o use a semaphore instead of an opencoded and racy lock
       o move locking out of shaper_kick and into the callers - most just
         released the lock before calling shaper_kick
       o remove in_interrupt() tests.  from ->close we can always block, from
         ->hard_start_xmit and timer context never
      Signed-off-by: NChristoph Hellwig <hch@lst.de>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      b597ef47
    • E
      libata: update inline source docs · 0baab86b
      Edward Falk 提交于
      0baab86b
  10. 01 6月, 2005 2 次提交
  11. 30 5月, 2005 3 次提交