[BACK]Return to xfs_rw.h CVS log [TXT][DIR] Up to [Development] / xfs-linux

File: [Development] / xfs-linux / xfs_rw.h (download)

Revision 1.4, Mon Mar 14 01:10:21 1994 UTC (23 years, 7 months ago) by ajs
Branch: MAIN
Changes since 1.3: +2 -1 lines

Changing prototype for xfs_zero_eof().


#ifndef	_XFS_RW_H
#define	_XFS_RW_H


/*
 * Prototypes for functions in xfs_rw.c.
 */
int
xfs_read(vnode_t	*vp,
	 uio_t		*uiop,
	 int		ioflag,
	 cred_t		*credp);

int
xfs_write(vnode_t	*vp,
	  uio_t		*uiop,
	  int		ioflag,
	  cred_t	*credp);

void
xfs_strategy(vnode_t	*vp,
	     buf_t	*bp);

int
xfs_bmap(vnode_t	*vp,
	 off_t		offset,
	 ssize_t	count,
	 int		flags,
	 cred_t		*credp,
	 struct bmapval	*bmapp,
	 int		*nbmaps);

void
xfs_zero_eof(xfs_inode_t	*ip,
	     off_t		offset,
	     __int64_t		isize,
	     cred_t		*credp);



#endif /* _XFS_RW_H */