--- src/sys/sys/file.h 2006/06/13 08:12:04 1.21 +++ src/sys/sys/file.h 2006/08/02 01:25:27 1.22 @@ -69,22 +69,19 @@ struct lwkt_port; struct namecache; struct fileops { - struct lwkt_port *fo_port; - int (*fo_clone) (struct file *);/* additional work after dup */ - - int (*fold_read) (struct file *fp, struct uio *uio, - struct ucred *cred, int flags); - int (*fold_write) (struct file *fp, struct uio *uio, - struct ucred *cred, int flags); - int (*fold_ioctl) (struct file *fp, u_long com, caddr_t data, - struct ucred *cred); - int (*fold_poll) (struct file *fp, int events, - struct ucred *cred); - int (*fold_kqfilter) (struct file *fp, struct knote *kn); - int (*fold_stat) (struct file *fp, struct stat *sb, - struct ucred *cred); - int (*fold_close) (struct file *fp); - int (*fold_shutdown) (struct file *fp, int how); + int (*fo_read) (struct file *fp, struct uio *uio, + struct ucred *cred, int flags); + int (*fo_write) (struct file *fp, struct uio *uio, + struct ucred *cred, int flags); + int (*fo_ioctl) (struct file *fp, u_long com, caddr_t data, + struct ucred *cred); + int (*fo_poll) (struct file *fp, int events, + struct ucred *cred); + int (*fo_kqfilter)(struct file *fp, struct knote *kn); + int (*fo_stat) (struct file *fp, struct stat *sb, + struct ucred *cred); + int (*fo_close) (struct file *fp); + int (*fo_shutdown)(struct file *fp, int how); }; /*