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

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

Diff for /src/sys/coda/coda_vnops.c between version 1.10 and 1.11

version 1.10, 1999/07/08 01:26:23 version 1.11, 1999/08/03 20:19:18
Line 56  symlink
Line 56  symlink
 /*  /*
  * HISTORY   * HISTORY
  * $Log$   * $Log$
    * Revision 1.11  1999/08/03 20:19:18  wrstuden
    * Add support for fcntl(2) to generate VOP_FCNTL calls. Any fcntl
    * call with F_FSCTL set and F_SETFL calls generate calls to a new
    * fileop fo_fcntl. Add genfs_fcntl() and soo_fcntl() which return 0
    * for F_SETFL and EOPNOTSUPP otherwise. Have all leaf filesystems
    * use genfs_fcntl().
    *
    * Reviewed by: thorpej
    * Tested by: wrstuden
    *
  * Revision 1.10  1999/07/08 01:26:23  wrstuden   * Revision 1.10  1999/07/08 01:26:23  wrstuden
  * Bump osrelease to 1.4E. Add layerfs files, remove null_subr.c.   * Bump osrelease to 1.4E. Add layerfs files, remove null_subr.c.
  *   *
Line 342  struct vnodeopv_entry_desc coda_vnodeop_
Line 352  struct vnodeopv_entry_desc coda_vnodeop_
     { &vop_setattr_desc, coda_setattr },        /* setattr */      { &vop_setattr_desc, coda_setattr },        /* setattr */
     { &vop_read_desc, coda_read },              /* read */      { &vop_read_desc, coda_read },              /* read */
     { &vop_write_desc, coda_write },            /* write */      { &vop_write_desc, coda_write },            /* write */
       { &vop_fcntl_desc, genfs_fcntl },           /* fcntl */
     { &vop_ioctl_desc, coda_ioctl },            /* ioctl */      { &vop_ioctl_desc, coda_ioctl },            /* ioctl */
 /* 1.3    { &vop_select_desc, coda_select },    select */  /* 1.3    { &vop_select_desc, coda_select },    select */
     { &vop_mmap_desc, coda_vop_error },         /* mmap */      { &vop_mmap_desc, coda_vop_error },         /* mmap */

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

CVSweb <webmaster@jp.NetBSD.org>