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>
        
*** 34,48 ****
  
  #ifdef  __cplusplus
  extern "C" {
  #endif
  
! /*
!  * Common signature for all zio compress/decompress functions.
!  */
  typedef size_t zio_compress_func_t(void *src, void *dst,
      size_t s_len, size_t d_len, int);
  typedef int zio_decompress_func_t(void *src, void *dst,
      size_t s_len, size_t d_len, int);
  
  /*
   * Information about each compression function.
--- 34,47 ----
  
  #ifdef  __cplusplus
  extern "C" {
  #endif
  
! /* Common signature for all zio compress functions. */
  typedef size_t zio_compress_func_t(void *src, void *dst,
      size_t s_len, size_t d_len, int);
+ /* Common signature for all zio decompress functions. */
  typedef int zio_decompress_func_t(void *src, void *dst,
      size_t s_len, size_t d_len, int);
  
  /*
   * Information about each compression function.