Print this page
*** NO COMMENTS ***

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libzfs/common/libzfs.h
          +++ new/usr/src/lib/libzfs/common/libzfs.h
↓ open down ↓ 13 lines elided ↑ open up ↑
  14   14   * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15   15   * If applicable, add the following below this CDDL HEADER, with the
  16   16   * fields enclosed by brackets "[]" replaced with your own identifying
  17   17   * information: Portions Copyright [yyyy] [name of copyright owner]
  18   18   *
  19   19   * CDDL HEADER END
  20   20   */
  21   21  
  22   22  /*
  23   23   * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
  24      - * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
       24 + * Copyright 2012 Nexenta Systems, Inc. All rights reserved.
  25   25   * Copyright (c) 2012 by Delphix. All rights reserved.
  26   26   * Copyright (c) 2012, Joyent, Inc. All rights reserved.
  27   27   */
  28   28  
  29   29  #ifndef _LIBZFS_H
  30   30  #define _LIBZFS_H
  31   31  
  32   32  #include <assert.h>
  33   33  #include <libnvpair.h>
  34   34  #include <sys/mnttab.h>
↓ open down ↓ 538 lines elided ↑ open up ↑
 573  573  
 574  574          /* do deduplication */
 575  575          boolean_t dedup;
 576  576  
 577  577          /* send properties (ie, -p) */
 578  578          boolean_t props;
 579  579  
 580  580          /* do not send (no-op, ie. -n) */
 581  581          boolean_t dryrun;
 582  582  
      583 +        /* do not send (just calculate exact send stream size, ie. -s */
      584 +        boolean_t sendsize;
      585 +
 583  586          /* parsable verbose output (ie. -P) */
 584  587          boolean_t parsable;
 585  588  
 586  589          /* show progress (ie. -v) */
 587  590          boolean_t progress;
 588  591  } sendflags_t;
 589  592  
 590  593  typedef boolean_t (snapfilter_cb_t)(zfs_handle_t *, void *);
 591  594  
 592  595  extern int zfs_send(zfs_handle_t *, const char *, const char *,
↓ open down ↓ 165 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX