Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/ufs/ext2fs/ext2fs_vnops.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/ufs/ext2fs/ext2fs_vnops.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.111.2.1 retrieving revision 1.112 diff -u -p -r1.111.2.1 -r1.112 --- src/sys/ufs/ext2fs/ext2fs_vnops.c 2014/08/10 06:56:58 1.111.2.1 +++ src/sys/ufs/ext2fs/ext2fs_vnops.c 2014/05/25 13:47:22 1.112 @@ -1,4 +1,4 @@ -/* $NetBSD: ext2fs_vnops.c,v 1.111.2.1 2014/08/10 06:56:58 tls Exp $ */ +/* $NetBSD: ext2fs_vnops.c,v 1.112 2014/05/25 13:47:22 hannken Exp $ */ /* * Copyright (c) 1982, 1986, 1989, 1993 @@ -65,7 +65,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: ext2fs_vnops.c,v 1.111.2.1 2014/08/10 06:56:58 tls Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ext2fs_vnops.c,v 1.112 2014/05/25 13:47:22 hannken Exp $"); #include #include @@ -1143,8 +1143,6 @@ const struct vnodeopv_entry_desc ext2fs_ { &vop_setattr_desc, ext2fs_setattr }, /* setattr */ { &vop_read_desc, ext2fs_read }, /* read */ { &vop_write_desc, ext2fs_write }, /* write */ - { &vop_fallocate_desc, genfs_eopnotsupp }, /* fallocate */ - { &vop_fdiscard_desc, genfs_eopnotsupp }, /* fdiscard */ { &vop_ioctl_desc, ufs_ioctl }, /* ioctl */ { &vop_fcntl_desc, ufs_fcntl }, /* fcntl */ { &vop_poll_desc, ufs_poll }, /* poll */ @@ -1193,8 +1191,6 @@ const struct vnodeopv_entry_desc ext2fs_ { &vop_setattr_desc, ext2fs_setattr }, /* setattr */ { &vop_read_desc, ufsspec_read }, /* read */ { &vop_write_desc, ufsspec_write }, /* write */ - { &vop_fallocate_desc, spec_fallocate }, /* fallocate */ - { &vop_fdiscard_desc, spec_fdiscard }, /* fdiscard */ { &vop_ioctl_desc, spec_ioctl }, /* ioctl */ { &vop_fcntl_desc, ufs_fcntl }, /* fcntl */ { &vop_poll_desc, spec_poll }, /* poll */ @@ -1243,8 +1239,6 @@ const struct vnodeopv_entry_desc ext2fs_ { &vop_setattr_desc, ext2fs_setattr }, /* setattr */ { &vop_read_desc, ufsfifo_read }, /* read */ { &vop_write_desc, ufsfifo_write }, /* write */ - { &vop_fallocate_desc, vn_fifo_bypass }, /* fallocate */ - { &vop_fdiscard_desc, vn_fifo_bypass }, /* fdiscard */ { &vop_ioctl_desc, vn_fifo_bypass }, /* ioctl */ { &vop_fcntl_desc, ufs_fcntl }, /* fcntl */ { &vop_poll_desc, vn_fifo_bypass }, /* poll */