Print this page
3996 want a libzfs_core API to rollback to latest snapshot
Reviewed by: Christopher Siden <christopher.siden@delphix.com>
Reviewed by: Adam Leventhal <ahl@delphix.com>
Reviewed by: George Wilson <george.wilson@delphix.com>

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/libzfs_core/common/libzfs_core.h
          +++ new/usr/src/lib/libzfs_core/common/libzfs_core.h
↓ open down ↓ 12 lines elided ↑ open up ↑
  13   13   * When distributing Covered Code, include this CDDL HEADER in each
  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      - * Copyright (c) 2012 by Delphix. All rights reserved.
       23 + * Copyright (c) 2013 by Delphix. All rights reserved.
  24   24   */
  25   25  
  26   26  #ifndef _LIBZFS_CORE_H
  27   27  #define _LIBZFS_CORE_H
  28   28  
  29   29  #include <libnvpair.h>
  30   30  #include <sys/param.h>
  31   31  #include <sys/types.h>
  32   32  #include <sys/fs/zfs.h>
  33   33  
↓ open down ↓ 17 lines elided ↑ open up ↑
  51   51  int lzc_get_holds(const char *snapname, nvlist_t **holdsp);
  52   52  
  53   53  int lzc_send(const char *snapname, const char *fromsnap, int fd);
  54   54  int lzc_receive(const char *snapname, nvlist_t *props, const char *origin,
  55   55      boolean_t force, int fd);
  56   56  int lzc_send_space(const char *snapname, const char *fromsnap,
  57   57      uint64_t *result);
  58   58  
  59   59  boolean_t lzc_exists(const char *dataset);
  60   60  
       61 +int lzc_rollback(const char *fsname, char *snapnamebuf, int snapnamelen);
  61   62  
  62   63  #ifdef  __cplusplus
  63   64  }
  64   65  #endif
  65   66  
  66   67  #endif  /* _LIBZFS_CORE_H */
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX