Print this page
3742 zfs comments need cleaner, more consistent style
Submitted by:   Will Andrews <willa@spectralogic.com>
Submitted by:   Alan Somers <alans@spectralogic.com>
Reviewed by:    Matthew Ahrens <mahrens@delphix.com>
Reviewed by:    George Wilson <george.wilson@delphix.com>
Reviewed by:    Eric Schrock <eric.schrock@delphix.com>

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/fs/zfs/sys/unique.h
          +++ new/usr/src/uts/common/fs/zfs/sys/unique.h
↓ open down ↓ 34 lines elided ↑ open up ↑
  35   35  #endif
  36   36  
  37   37  /* The number of significant bits in each unique value. */
  38   38  #define UNIQUE_BITS     56
  39   39  
  40   40  void unique_init(void);
  41   41  void unique_fini(void);
  42   42  
  43   43  /*
  44   44   * Return a new unique value (which will not be uniquified against until
  45      - * it is unique_insert()-ed.
       45 + * it is unique_insert()-ed).
  46   46   */
  47   47  uint64_t unique_create(void);
  48   48  
  49   49  /* Return a unique value, which equals the one passed in if possible. */
  50   50  uint64_t unique_insert(uint64_t value);
  51   51  
  52   52  /* Indicate that this value no longer needs to be uniquified against. */
  53   53  void unique_remove(uint64_t value);
  54   54  
  55   55  #ifdef  __cplusplus
  56   56  }
  57   57  #endif
  58   58  
  59   59  #endif /* _SYS_UNIQUE_H */
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX