Print this page
2882 implement libzfs_core
2883 changing "canmount" property to "on" should not always remount dataset
2900 "zfs snapshot" should be able to create multiple, arbitrary snapshots at once
Reviewed by: George Wilson <george.wilson@delphix.com>
Reviewed by: Chris Siden <christopher.siden@delphix.com>
Reviewed by: Garrett D'Amore <garrett@damore.org>
Reviewed by: Bill Pijewski <wdp@joyent.com>
Reviewed by: Dan Kruchinin <dan.kruchinin@gmail.com>

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/sys/sunddi.h
          +++ new/usr/src/uts/common/sys/sunddi.h
↓ open down ↓ 14 lines elided ↑ open up ↑
  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) 1990, 2010, Oracle and/or its affiliates. All rights reserved.
  24   24   * Copyright 2012 Garrett D'Amore <garrett@damore.org>.  All rights reserved.
       25 + * Copyright (c) 2012 by Delphix. All rights reserved.
  25   26   */
  26   27  
  27   28  #ifndef _SYS_SUNDDI_H
  28   29  #define _SYS_SUNDDI_H
  29   30  
  30   31  /*
  31   32   * Sun Specific DDI definitions
  32   33   */
  33   34  
  34   35  #include <sys/isa_defs.h>
↓ open down ↓ 418 lines elided ↑ open up ↑
 453  454  #else
 454  455  extern char *strchr(const char *, int);
 455  456  #endif  /* __cplusplus >= 199711L */
 456  457  #define DDI_STRSAME(s1, s2)     ((*(s1) == *(s2)) && (strcmp((s1), (s2)) == 0))
 457  458  extern int strcmp(const char *, const char *) __PURE;
 458  459  extern int strncmp(const char *, const char *, size_t) __PURE;
 459  460  extern char *strncat(char *, const char *, size_t);
 460  461  extern size_t strlcat(char *, const char *, size_t);
 461  462  extern size_t strlcpy(char *, const char *, size_t);
 462  463  extern size_t strspn(const char *, const char *);
      464 +extern size_t strcspn(const char *, const char *);
 463  465  extern int bcmp(const void *, const void *, size_t) __PURE;
 464  466  extern int stoi(char **);
 465  467  extern void numtos(ulong_t, char *);
 466  468  extern void bcopy(const void *, void *, size_t);
 467  469  extern void bzero(void *, size_t);
 468  470  
 469  471  extern void *memcpy(void *, const  void  *, size_t);
 470  472  extern void *memset(void *, int, size_t);
 471  473  extern void *memmove(void *, const void *, size_t);
 472  474  extern int memcmp(const void *, const void *, size_t) __PURE;
↓ open down ↓ 1812 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX