1. 28 Jan, 2013 2 commits
    • Dan Carpenter's avatar
      irda: buffer overflow in irnet_ctrl_read() · 4bf613c6
      Dan Carpenter authored
      The comments here say that the /* Max event is 61 char */ but in 2003 we
      changed the event format and now the max event size is 75.  The longest
      event is:
      
      	"Discovered %08x (%s) behind %08x {hints %02X-%02X}\n",
               12345678901    23  456789012    34567890    1    2 3
      	            +8    +21        +8          +2   +2     +1
               = 75 characters.
      
      There was a check to return -EOVERFLOW if the user gave us a "count"
      value that was less than 64.  Raising it to 75 might break backwards
      compatability.  Instead I removed the check and now it returns a
      truncated string if "count" is too low.
      Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      4bf613c6
    • David S. Miller's avatar
      Merge branch 'intel' · 6efecd8c
      David S. Miller authored
      Jeff Kirsher says:
      
      ====================
      This series contains updates to e1000e only.  All the updates come
      from Bruce Allan and most of the patch fix or enable features on
      i217/i218.  Most notably is patch 03 "e1000e: add support for IEEE-1588
      PTP", which is v2 of the patch based on feedback from Stephen Hemminger.
      
      Also patch 04 "e1000e: enable ECC on I217/I218 to catch packet buffer
      memory errors" should be queued up for stable (as well as net) trees, but
      the patch does not apply cleanly to either of those trees currently.
      So I will work with Bruce to provide a version of the patch which will
      apply cleanly to net (and stable) and we can queue it up at that point
      for stable 3.5 tree.
      
      The remaining patches are general cleanups of the code.
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      6efecd8c
  2. 27 Jan, 2013 26 commits
  3. 23 Jan, 2013 12 commits