~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Linux Cross Reference
Linux/fs/adfs/file.c

Version: ~ [ 2.4.0 ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /*
  2  *  linux/fs/adfs/file.c
  3  *
  4  * Copyright (C) 1997-1999 Russell King
  5  * from:
  6  *
  7  *  linux/fs/ext2/file.c
  8  *
  9  * Copyright (C) 1992, 1993, 1994, 1995
 10  * Remy Card (card@masi.ibp.fr)
 11  * Laboratoire MASI - Institut Blaise Pascal
 12  * Universite Pierre et Marie Curie (Paris VI)
 13  *
 14  *  from
 15  *
 16  *  linux/fs/minix/file.c
 17  *
 18  *  Copyright (C) 1991, 1992  Linus Torvalds
 19  *
 20  *  adfs regular file handling primitives           
 21  */
 22 #include <linux/version.h>
 23 #include <linux/errno.h>
 24 #include <linux/fs.h>
 25 #include <linux/fcntl.h>
 26 #include <linux/sched.h>
 27 #include <linux/stat.h>
 28 
 29 #include "adfs.h"
 30 
 31 struct file_operations adfs_file_operations = {
 32         read:           generic_file_read,
 33         mmap:           generic_file_mmap,
 34         fsync:          file_fsync,
 35         write:          generic_file_write,
 36 };
 37 
 38 struct inode_operations adfs_file_inode_operations = {
 39         setattr:        adfs_notify_change,
 40 };
 41 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.