Print this page
6198 Let's EOL cachefs

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/sys/mntent.h
          +++ new/usr/src/uts/common/sys/mntent.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   * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
  23   23   * Use is subject to license terms.
       24 + * Copyright 2015 Nexenta Systems, Inc. All rights reserved.
  24   25   *
  25   26   *      Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T
  26   27   *              All Rights Reserved
  27   28   */
  28   29  
  29   30  #ifndef _SYS_MNTENT_H
  30   31  #define _SYS_MNTENT_H
  31   32  
  32   33  #ifdef  __cplusplus
  33   34  extern "C" {
↓ open down ↓ 2 lines elided ↑ open up ↑
  36   37  #define MNTTAB          "/etc/mnttab"
  37   38  #define VFSTAB          "/etc/vfstab"
  38   39  #define MNTMAXSTR       128
  39   40  
  40   41  #define MNTTYPE_ZFS     "zfs"           /* ZFS file system */
  41   42  #define MNTTYPE_UFS     "ufs"           /* Unix file system */
  42   43  #define MNTTYPE_SMBFS   "smbfs"         /* SMBFS file system */
  43   44  #define MNTTYPE_NFS     "nfs"           /* NFS file system */
  44   45  #define MNTTYPE_NFS3    "nfs3"          /* NFS Version 3 file system */
  45   46  #define MNTTYPE_NFS4    "nfs4"          /* NFS Version 4 file system */
  46      -#define MNTTYPE_CACHEFS "cachefs"       /* Cache File System */
  47   47  #define MNTTYPE_PCFS    "pcfs"          /* PC (MSDOS) file system */
  48   48  #define MNTTYPE_PC      MNTTYPE_PCFS    /* Deprecated name; use MNTTYPE_PCFS */
  49   49  #define MNTTYPE_LOFS    "lofs"          /* Loop back file system */
  50   50  #define MNTTYPE_LO      MNTTYPE_LOFS    /* Deprecated name; use MNTTYPE_LOFS */
  51   51  #define MNTTYPE_HSFS    "hsfs"          /* High Sierra (9660) file system */
  52   52  #define MNTTYPE_SWAP    "swap"          /* Swap file system */
  53   53  #define MNTTYPE_TMPFS   "tmpfs"         /* Tmp volatile file system */
  54   54  #define MNTTYPE_AUTOFS  "autofs"        /* Automounter ``file'' system */
  55   55  #define MNTTYPE_MNTFS   "mntfs"         /* In-kernel mnttab */
  56   56  #define MNTTYPE_DEV     "dev"           /* /dev file system */
↓ open down ↓ 85 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX