11 Dec, 2014

1 commit


13 Nov, 2014

1 commit

  • Use the normal kernel debugging mechanism which also
    enables dynamic_debug at the same time.

    Other miscellanea:

    o Remove sysctl for irda_debug
    o Remove function tracing like uses (use ftrace instead)
    o Coalesce formats
    o Realign arguments
    o Remove unnecessary OOM messages

    Signed-off-by: Joe Perches
    Signed-off-by: David S. Miller

    Joe Perches
     

12 Nov, 2014

2 commits


07 Dec, 2013

1 commit

  • Several files refer to an old address for the Free Software Foundation
    in the file header comment. Resolve by replacing the address with
    the URL so that we do not have to keep
    updating the header comments anytime the address changes.

    Signed-off-by: Jeff Kirsher
    Signed-off-by: David S. Miller

    Jeff Kirsher
     

18 Oct, 2013

1 commit


24 Sep, 2013

1 commit

  • There are a mix of function prototypes with and without extern
    in the kernel sources. Standardize on not using extern for
    function prototypes.

    Function prototypes don't need to be written with extern.
    extern is assumed by the compiler. Its use is as unnecessary as
    using auto to declare automatic/local variables in a block.

    Signed-off-by: Joe Perches
    Signed-off-by: David S. Miller

    Joe Perches
     

03 Aug, 2013

1 commit


20 Apr, 2013

1 commit

  • The "reason" can come from skb->data[] and it hasn't been capped so it
    can be from 0-255 instead of just 0-6. For example in irlmp_state_dtr()
    the code does:

    reason = skb->data[3];
    ...
    irlmp_disconnect_indication(self, reason, skb);

    Also LMREASON has a couple other values which don't have entries in the
    irlmp_reasons[] array. And 0xff is a valid reason as well which means
    "unknown".

    So far as I can see we don't actually care about "reason" except for in
    the debug code.

    Signed-off-by: Dan Carpenter
    Signed-off-by: David S. Miller

    Dan Carpenter
     

03 Jan, 2013

1 commit


19 Nov, 2012

1 commit


13 Jun, 2012

6 commits


31 Mar, 2011

1 commit


18 Feb, 2011

3 commits


24 Sep, 2010

1 commit


15 Sep, 2010

1 commit


22 Aug, 2010

1 commit


22 Jul, 2010

1 commit


15 Feb, 2010

1 commit


06 Aug, 2009

1 commit


18 Dec, 2008

1 commit

  • We need to pad irda_skb_cb in order to keep it safe accross dev_queue_xmit()
    calls. This is some ugly and temporary hack triggered by recent qisc code
    changes.
    Even though it fixes bugzilla.kernel.org bug #11795, it will be replaced by a
    proper fix before 2.6.29 is released.

    Signed-off-by: Samuel Ortiz
    Signed-off-by: David S. Miller

    Samuel Ortiz
     

17 Oct, 2008

1 commit


09 Jul, 2008

2 commits


14 May, 2008

1 commit


15 Apr, 2008

1 commit

  • Even kernel 2.2.26 (sic) already contains the
    #undef CONFIG_IRLAN_SEND_GRATUITOUS_ARP
    with the comment "but for some reason the machine crashes if you use DHCP".

    Either someone finally looks into this or it's simply time to remove
    this dead code.

    Reported-by: Robert P. J. Day
    Signed-off-by: Adrian Bunk
    Signed-off-by: David S. Miller

    Adrian Bunk
     

06 Mar, 2008

1 commit


29 Jan, 2008

1 commit


21 Dec, 2007

1 commit


26 Oct, 2007

1 commit


20 Oct, 2007

1 commit


11 Jul, 2007

1 commit


09 Jun, 2007

1 commit

  • From: G. Liakhovetski

    We need to switch to NRM _before_ sending the final packet otherwise
    we might hit a race condition where we get the first packet from the
    peer while we're still in LAP_XMIT_P.

    Signed-off-by: Samuel Ortiz
    Signed-off-by: David S. Miller

    G. Liakhovetski