Deleted Added
full compact
vfs_default.c (149175) vfs_default.c (153400)
1/*-
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed
6 * to Berkeley by John Heidemann of the UCLA Ficus project.
7 *
8 * Source: * @(#)i405_init.c 2.10 92/04/27 UCLA Ficus project

--- 19 unchanged lines hidden (view full) ---

28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed
6 * to Berkeley by John Heidemann of the UCLA Ficus project.
7 *
8 * Source: * @(#)i405_init.c 2.10 92/04/27 UCLA Ficus project

--- 19 unchanged lines hidden (view full) ---

28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 */
34
35#include <sys/cdefs.h>
36__FBSDID("$FreeBSD: head/sys/kern/vfs_default.c 149175 2005-08-17 06:59:23Z phk $");
36__FBSDID("$FreeBSD: head/sys/kern/vfs_default.c 153400 2005-12-14 00:49:52Z des $");
37
38#include <sys/param.h>
39#include <sys/systm.h>
40#include <sys/bio.h>
41#include <sys/buf.h>
42#include <sys/conf.h>
43#include <sys/event.h>
44#include <sys/kernel.h>

--- 482 unchanged lines hidden (view full) ---

527 return (EOPNOTSUPP);
528}
529
530int
531vfs_stdquotactl (mp, cmds, uid, arg, td)
532 struct mount *mp;
533 int cmds;
534 uid_t uid;
37
38#include <sys/param.h>
39#include <sys/systm.h>
40#include <sys/bio.h>
41#include <sys/buf.h>
42#include <sys/conf.h>
43#include <sys/event.h>
44#include <sys/kernel.h>

--- 482 unchanged lines hidden (view full) ---

527 return (EOPNOTSUPP);
528}
529
530int
531vfs_stdquotactl (mp, cmds, uid, arg, td)
532 struct mount *mp;
533 int cmds;
534 uid_t uid;
535 caddr_t arg;
535 void *arg;
536 struct thread *td;
537{
538
539 return (EOPNOTSUPP);
540}
541
542int
543vfs_stdsync(mp, waitfor, td)

--- 115 unchanged lines hidden ---
536 struct thread *td;
537{
538
539 return (EOPNOTSUPP);
540}
541
542int
543vfs_stdsync(mp, waitfor, td)

--- 115 unchanged lines hidden ---