1. 19 10月, 2013 1 次提交
  2. 18 6月, 2013 2 次提交
  3. 14 7月, 2012 1 次提交
  4. 01 5月, 2012 1 次提交
    • P
      tipc: compress out gratuitous extra carriage returns · 617d3c7a
      Paul Gortmaker 提交于
      Some of the comment blocks are floating in limbo between two
      functions, or between blocks of code.  Delete the extra line
      feeds between any comment and its associated following block
      of code, to be consistent with the majority of the rest of
      the kernel.  Also delete trailing newlines at EOF and fix
      a couple trivial typos in existing comments.
      
      This is a 100% cosmetic change with no runtime impact.  We get
      rid of over 500 lines of non-code, and being blank line deletes,
      they won't even show up as noise in git blame.
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      617d3c7a
  5. 25 2月, 2012 1 次提交
  6. 28 12月, 2011 1 次提交
  7. 25 6月, 2011 1 次提交
  8. 11 5月, 2011 1 次提交
    • A
      tipc: Avoid recomputation of outgoing message length · 26896904
      Allan Stephens 提交于
      Rework TIPC's message sending routines to take advantage of the total
      amount of data value passed to it by the kernel socket infrastructure.
      This change eliminates the need for TIPC to compute the size of outgoing
      messages itself, as well as the check for an oversize message in
      tipc_msg_build().  In addition, this change warrants an explanation:
      
         -     res = send_packet(NULL, sock, &my_msg, 0);
         +     res = send_packet(NULL, sock, &my_msg, bytes_to_send);
      
      Previously, the final argument to send_packet() was ignored (since the
      amount of data being sent was recalculated by a lower-level routine)
      and we could just pass in a dummy value (0). Now that the
      recalculation is being eliminated, the argument value being passed to
      send_packet() is significant and we have to supply the actual amount
      of data we want to send.
      Signed-off-by: NAllan Stephens <Allan.Stephens@windriver.com>
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      26896904
  9. 14 3月, 2011 3 次提交
  10. 24 2月, 2011 2 次提交
  11. 02 1月, 2011 4 次提交
  12. 03 12月, 2010 1 次提交
  13. 17 10月, 2010 1 次提交
  14. 13 5月, 2010 1 次提交
  15. 05 6月, 2008 1 次提交
  16. 05 5月, 2008 1 次提交
  17. 07 3月, 2008 1 次提交
  18. 11 2月, 2007 1 次提交
  19. 18 1月, 2006 1 次提交
  20. 13 1月, 2006 4 次提交