Print this page
fixup .text where possible
7127  remove -Wno-missing-braces from Makefile.uts

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/fs/ctfs/ctfs_latest.c
          +++ new/usr/src/uts/common/fs/ctfs/ctfs_latest.c
↓ open down ↓ 15 lines elided ↑ open up ↑
  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   24   */
  25   25  
  26      -#pragma ident   "%Z%%M% %I%     %E% SMI"
  27   26  
       27 +
  28   28  #include <sys/types.h>
  29   29  #include <sys/param.h>
  30   30  #include <sys/time.h>
  31   31  #include <sys/cred.h>
  32   32  #include <sys/vfs.h>
  33   33  #include <sys/vfs_opreg.h>
  34   34  #include <sys/gfs.h>
  35   35  #include <sys/vnode.h>
  36   36  #include <sys/systm.h>
  37   37  #include <sys/errno.h>
↓ open down ↓ 136 lines elided ↑ open up ↑
 174  174  
 175  175  const fs_operation_def_t ctfs_tops_latest[] = {
 176  176          { VOPNAME_OPEN,         { .vop_open = ctfs_latest_open } },
 177  177          { VOPNAME_CLOSE,        { .error = fs_inval } },
 178  178          { VOPNAME_IOCTL,        { .error = fs_inval } },
 179  179          { VOPNAME_GETATTR,      { .vop_getattr = ctfs_latest_getattr } },
 180  180          { VOPNAME_ACCESS,       { .vop_access = ctfs_latest_access } },
 181  181          { VOPNAME_READDIR,      { .error = fs_notdir } },
 182  182          { VOPNAME_LOOKUP,       { .error = fs_notdir } },
 183  183          { VOPNAME_INACTIVE,     { .vop_inactive = gfs_vop_inactive } },
 184      -        { NULL, NULL }
      184 +        { NULL,                 { NULL } }
 185  185  };
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX