[BACK]Return to vfs_init.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / kern

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/kern/vfs_init.c between version 1.46 and 1.46.2.2

version 1.46, 2012/03/13 18:40:55 version 1.46.2.2, 2017/12/03 11:38:45
Line 107  extern const struct vnodeop_desc * const
Line 107  extern const struct vnodeop_desc * const
 extern const struct vnodeopv_desc dead_vnodeop_opv_desc;  extern const struct vnodeopv_desc dead_vnodeop_opv_desc;
 extern const struct vnodeopv_desc fifo_vnodeop_opv_desc;  extern const struct vnodeopv_desc fifo_vnodeop_opv_desc;
 extern const struct vnodeopv_desc spec_vnodeop_opv_desc;  extern const struct vnodeopv_desc spec_vnodeop_opv_desc;
 extern const struct vnodeopv_desc sync_vnodeop_opv_desc;  
   
 const struct vnodeopv_desc * const vfs_special_vnodeopv_descs[] = {  const struct vnodeopv_desc * const vfs_special_vnodeopv_descs[] = {
         &dead_vnodeop_opv_desc,          &dead_vnodeop_opv_desc,
         &fifo_vnodeop_opv_desc,          &fifo_vnodeop_opv_desc,
         &spec_vnodeop_opv_desc,          &spec_vnodeop_opv_desc,
         &sync_vnodeop_opv_desc,  
         NULL,          NULL,
 };  };
   
Line 154  sysctl_vfs_setup(void)
Line 152  sysctl_vfs_setup(void)
   
         sysctl_createv(&vfs_sysctllog, 0, NULL, NULL,          sysctl_createv(&vfs_sysctllog, 0, NULL, NULL,
                        CTLFLAG_PERMANENT,                         CTLFLAG_PERMANENT,
                        CTLTYPE_NODE, "vfs", NULL,  
                        NULL, 0, NULL, 0,  
                        CTL_VFS, CTL_EOL);  
         sysctl_createv(&vfs_sysctllog, 0, NULL, NULL,  
                        CTLFLAG_PERMANENT,  
                        CTLTYPE_NODE, "generic",                         CTLTYPE_NODE, "generic",
                        SYSCTL_DESCR("Non-specific vfs related information"),                         SYSCTL_DESCR("Non-specific vfs related information"),
                        NULL, 0, NULL, 0,                         NULL, 0, NULL, 0,

Legend:
Removed from v.1.46  
changed lines
  Added in v.1.46.2.2

CVSweb <webmaster@jp.NetBSD.org>