[BACK]Return to xfsrtstubs.c CVS log [TXT][DIR] Up to [Development] / xfs-linux-nodel

File: [Development] / xfs-linux-nodel / Attic / xfsrtstubs.c (download)

Revision 1.3, Wed Nov 17 19:22:23 1999 UTC (17 years, 11 months ago) by lord
Branch: MAIN
Changes since 1.2: +2 -2 lines

replace struct buf and buf_t references with xfs_buf and xfs_buf_t

#ident "$Revision: 1.3 $"
/*
 * xfsrt stubs
 */
#include <sys/types.h>
#include <sys/uuid.h>
#include <sys/vfs.h>
#include <sys/vnode.h>
#include "xfs_buf.h"
#include <ksys/behavior.h>
#include <sys/fs/xfs_types.h>
#include <sys/fs/xfs_inum.h>
#include <sys/fs/xfs_sb.h>
#include <sys/fs/xfs_log.h>
#include <sys/fs/xfs_trans.h>
#include <sys/fs/xfs_dir.h>
#include <sys/fs/xfs_mount.h>

extern int nopkg(void);

int xfs_rtallocate_extent(void) { return nopkg(); }
int xfs_rtfree_extent(void) { return nopkg(); }
int xfs_growfs_rt(void) { return nopkg(); }
int xfs_rtpick_extent(void) { return nopkg(); }

int
xfs_rtmount_init(xfs_mount_t *mp)
{
	if (mp->m_sb.sb_rblocks == 0)
		return 0;
	return nopkg();
}

int
xfs_rtmount_inodes(xfs_mount_t *mp)
{
	if (mp->m_sb.sb_rblocks == 0)
		return 0;
	return nopkg();
}