1. 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
  2. 27 4月, 2012 2 次提交
  3. 20 4月, 2012 4 次提交
  4. 25 2月, 2012 3 次提交
  5. 30 12月, 2011 2 次提交
  6. 25 6月, 2011 3 次提交
    • A
      tipc: Eliminate checks for empty zone list during name translation · 8af4638a
      Allan Stephens 提交于
      Gets rid of a pair of checks to see if a name sequence entry in
      TIPC's name table has an empty zone list. These checks are pointless
      since the zone list can never be empty (i.e. as soon as the list
      becomes empty the associated name sequence entry is deleted).
      Signed-off-by: NAllan Stephens <allan.stephens@windriver.com>
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      8af4638a
    • A
      tipc: Convert name table publication lists to standard kernel lists · f6f0a4d2
      Allan Stephens 提交于
      Modifies the main circular linked lists of publications used in TIPC's
      name table to use the standard kernel linked list type. This change
      simplifies the deletion of an existing publication by eliminating
      the need to search up to three lists to locate the publication.
      The use of standard list routines also helps improve the readability
      of the name table code by make it clearer what each list operation
      being performed is actually doing.
      Signed-off-by: NAllan Stephens <allan.stephens@windriver.com>
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      f6f0a4d2
    • A
      tipc: Partition name table instance array info into two parts · b52124a5
      Allan Stephens 提交于
      Modifies the name table array structure that contains the name
      sequence instances for a given name type so that the publication
      lists associated with a given instance are stored in a dynamically
      allocated structure, rather than being embedded within the array
      entry itself. This change is being done for several reasons:
      
      1) It reduces the amount of data that needs to be copied whenever
      a given array is expanded or contracted to accommodate the first
      publication of a new name sequence or the removal of the last
      publication of an existing name sequence.
      
      2) It reduces the amount of memory associated with array entries that
      are currently unused.
      
      3) It facilitates the upcoming conversion of the publication lists
      from TIPC-specific circular lists to standard kernel lists. (Standard
      lists cannot be used with the former array structure because the
      relocation of array entries during array expansion and contraction
      would corrupt the lists.)
      
      Note that, aside from introducing a small amount of code to dynamically
      allocate and free the structure that now holds publication list info,
      this change is largely a simple renaming exercise that replaces
      references to "sseq->LIST" with "sseq->info->LIST" (or "info->LIST").
      Signed-off-by: NAllan Stephens <allan.stephens@windriver.com>
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      b52124a5
  7. 02 1月, 2011 4 次提交
  8. 03 12月, 2010 1 次提交
  9. 14 10月, 2010 1 次提交
  10. 24 9月, 2010 1 次提交
  11. 07 9月, 2010 1 次提交
  12. 18 8月, 2010 1 次提交
  13. 13 5月, 2010 1 次提交
  14. 08 11月, 2008 1 次提交
  15. 15 7月, 2008 2 次提交
  16. 05 6月, 2008 2 次提交
  17. 13 5月, 2008 1 次提交
  18. 03 8月, 2007 1 次提交
  19. 20 7月, 2007 1 次提交
  20. 11 2月, 2007 1 次提交
  21. 22 7月, 2006 1 次提交
  22. 28 6月, 2006 1 次提交
  23. 26 6月, 2006 3 次提交
  24. 21 3月, 2006 1 次提交