2005-04-17 00:20:36 +02:00
|
|
|
/*
|
2005-11-02 04:58:39 +01:00
|
|
|
* Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
|
|
|
|
* All Rights Reserved.
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
2005-11-02 04:58:39 +01:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
2005-04-17 00:20:36 +02:00
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
2005-11-02 04:58:39 +01:00
|
|
|
* This program is distributed in the hope that it would be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
2005-11-02 04:58:39 +01:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
|
|
|
#include "xfs.h"
|
2007-08-29 02:58:01 +02:00
|
|
|
#include "xfs_vnodeops.h"
|
|
|
|
#include "xfs_bmap_btree.h"
|
|
|
|
#include "xfs_inode.h"
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-08-29 03:46:28 +02:00
|
|
|
/*
|
|
|
|
* And this gunk is needed for xfs_mount.h"
|
|
|
|
*/
|
|
|
|
#include "xfs_log.h"
|
|
|
|
#include "xfs_trans.h"
|
|
|
|
#include "xfs_sb.h"
|
|
|
|
#include "xfs_dmapi.h"
|
|
|
|
#include "xfs_inum.h"
|
|
|
|
#include "xfs_ag.h"
|
|
|
|
#include "xfs_mount.h"
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Dedicated vnode inactive/reclaim sync semaphores.
|
|
|
|
* Prime number of hash buckets since address is used as the key.
|
|
|
|
*/
|
|
|
|
#define NVSYNC 37
|
|
|
|
#define vptosync(v) (&vsync[((unsigned long)v) % NVSYNC])
|
2007-02-10 08:34:56 +01:00
|
|
|
static wait_queue_head_t vsync[NVSYNC];
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2008-02-06 03:37:56 +01:00
|
|
|
void __init
|
2005-04-17 00:20:36 +02:00
|
|
|
vn_init(void)
|
|
|
|
{
|
2005-09-02 08:58:38 +02:00
|
|
|
int i;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-09-02 08:58:38 +02:00
|
|
|
for (i = 0; i < NVSYNC; i++)
|
|
|
|
init_waitqueue_head(&vsync[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
vn_iowait(
|
2007-08-29 03:46:28 +02:00
|
|
|
xfs_inode_t *ip)
|
2005-09-02 08:58:38 +02:00
|
|
|
{
|
2007-08-29 03:46:28 +02:00
|
|
|
wait_queue_head_t *wq = vptosync(ip);
|
2005-09-02 08:58:38 +02:00
|
|
|
|
2007-08-29 03:46:28 +02:00
|
|
|
wait_event(*wq, (atomic_read(&ip->i_iocount) == 0));
|
2005-09-02 08:58:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
vn_iowake(
|
2007-08-29 03:46:28 +02:00
|
|
|
xfs_inode_t *ip)
|
2005-09-02 08:58:38 +02:00
|
|
|
{
|
2007-08-29 03:46:28 +02:00
|
|
|
if (atomic_dec_and_test(&ip->i_iocount))
|
|
|
|
wake_up(vptosync(ip));
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2006-06-09 06:58:38 +02:00
|
|
|
/*
|
|
|
|
* Volume managers supporting multiple paths can send back ENODEV when the
|
|
|
|
* final path disappears. In this case continuing to fill the page cache
|
|
|
|
* with dirty data which cannot be written out is evil, so prevent that.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
vn_ioerror(
|
2007-08-29 03:46:28 +02:00
|
|
|
xfs_inode_t *ip,
|
2006-06-09 06:58:38 +02:00
|
|
|
int error,
|
|
|
|
char *f,
|
|
|
|
int l)
|
|
|
|
{
|
|
|
|
if (unlikely(error == -ENODEV))
|
2007-08-30 09:20:39 +02:00
|
|
|
xfs_do_force_shutdown(ip->i_mount, SHUTDOWN_DEVICE_REQ, f, l);
|
2006-06-09 06:58:38 +02:00
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
2007-09-19 07:27:49 +02:00
|
|
|
* Revalidate the Linux inode from the XFS inode.
|
2005-04-17 00:20:36 +02:00
|
|
|
* Note: i_size _not_ updated; we must hold the inode
|
|
|
|
* semaphore when doing that - callers responsibility.
|
|
|
|
*/
|
2007-09-19 07:27:49 +02:00
|
|
|
int
|
|
|
|
vn_revalidate(
|
|
|
|
bhv_vnode_t *vp)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-09-19 07:27:49 +02:00
|
|
|
struct inode *inode = vn_to_inode(vp);
|
|
|
|
struct xfs_inode *ip = XFS_I(inode);
|
|
|
|
struct xfs_mount *mp = ip->i_mount;
|
|
|
|
unsigned long xflags;
|
|
|
|
|
|
|
|
xfs_itrace_entry(ip);
|
|
|
|
|
|
|
|
if (XFS_FORCED_SHUTDOWN(mp))
|
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
xfs_ilock(ip, XFS_ILOCK_SHARED);
|
|
|
|
inode->i_mode = ip->i_d.di_mode;
|
|
|
|
inode->i_uid = ip->i_d.di_uid;
|
|
|
|
inode->i_gid = ip->i_d.di_gid;
|
|
|
|
inode->i_mtime.tv_sec = ip->i_d.di_mtime.t_sec;
|
|
|
|
inode->i_mtime.tv_nsec = ip->i_d.di_mtime.t_nsec;
|
|
|
|
inode->i_ctime.tv_sec = ip->i_d.di_ctime.t_sec;
|
|
|
|
inode->i_ctime.tv_nsec = ip->i_d.di_ctime.t_nsec;
|
|
|
|
|
|
|
|
xflags = xfs_ip2xflags(ip);
|
|
|
|
if (xflags & XFS_XFLAG_IMMUTABLE)
|
2005-04-17 00:20:36 +02:00
|
|
|
inode->i_flags |= S_IMMUTABLE;
|
|
|
|
else
|
|
|
|
inode->i_flags &= ~S_IMMUTABLE;
|
2007-09-19 07:27:49 +02:00
|
|
|
if (xflags & XFS_XFLAG_APPEND)
|
2005-04-17 00:20:36 +02:00
|
|
|
inode->i_flags |= S_APPEND;
|
|
|
|
else
|
|
|
|
inode->i_flags &= ~S_APPEND;
|
2007-09-19 07:27:49 +02:00
|
|
|
if (xflags & XFS_XFLAG_SYNC)
|
2005-04-17 00:20:36 +02:00
|
|
|
inode->i_flags |= S_SYNC;
|
|
|
|
else
|
|
|
|
inode->i_flags &= ~S_SYNC;
|
2007-09-19 07:27:49 +02:00
|
|
|
if (xflags & XFS_XFLAG_NOATIME)
|
2005-04-17 00:20:36 +02:00
|
|
|
inode->i_flags |= S_NOATIME;
|
|
|
|
else
|
|
|
|
inode->i_flags &= ~S_NOATIME;
|
2007-09-19 07:27:49 +02:00
|
|
|
xfs_iunlock(ip, XFS_ILOCK_SHARED);
|
2006-03-14 03:33:36 +01:00
|
|
|
|
2007-09-19 07:27:49 +02:00
|
|
|
xfs_iflags_clear(ip, XFS_IMODIFIED);
|
|
|
|
return 0;
|
2006-03-14 03:33:36 +01:00
|
|
|
}
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* Add a reference to a referenced vnode.
|
|
|
|
*/
|
2006-06-09 09:00:52 +02:00
|
|
|
bhv_vnode_t *
|
2005-04-17 00:20:36 +02:00
|
|
|
vn_hold(
|
2006-06-09 09:00:52 +02:00
|
|
|
bhv_vnode_t *vp)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct inode *inode;
|
|
|
|
|
|
|
|
XFS_STATS_INC(vn_hold);
|
|
|
|
|
2006-03-17 07:25:36 +01:00
|
|
|
inode = igrab(vn_to_inode(vp));
|
2005-04-17 00:20:36 +02:00
|
|
|
ASSERT(inode);
|
|
|
|
|
|
|
|
return vp;
|
|
|
|
}
|
|
|
|
|
2008-02-07 06:42:19 +01:00
|
|
|
#ifdef XFS_INODE_TRACE
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-08-29 03:46:47 +02:00
|
|
|
/*
|
|
|
|
* Reference count of Linux inode if present, -1 if the xfs_inode
|
|
|
|
* has no associated Linux inode.
|
|
|
|
*/
|
|
|
|
static inline int xfs_icount(struct xfs_inode *ip)
|
|
|
|
{
|
|
|
|
bhv_vnode_t *vp = XFS_ITOV_NULL(ip);
|
|
|
|
|
|
|
|
if (vp)
|
|
|
|
return vn_count(vp);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define KTRACE_ENTER(ip, vk, s, line, ra) \
|
|
|
|
ktrace_enter( (ip)->i_trace, \
|
2005-04-17 00:20:36 +02:00
|
|
|
/* 0 */ (void *)(__psint_t)(vk), \
|
|
|
|
/* 1 */ (void *)(s), \
|
|
|
|
/* 2 */ (void *)(__psint_t) line, \
|
2007-08-29 03:46:47 +02:00
|
|
|
/* 3 */ (void *)(__psint_t)xfs_icount(ip), \
|
2005-04-17 00:20:36 +02:00
|
|
|
/* 4 */ (void *)(ra), \
|
2007-08-29 03:44:37 +02:00
|
|
|
/* 5 */ NULL, \
|
2005-04-17 00:20:36 +02:00
|
|
|
/* 6 */ (void *)(__psint_t)current_cpu(), \
|
|
|
|
/* 7 */ (void *)(__psint_t)current_pid(), \
|
|
|
|
/* 8 */ (void *)__return_address, \
|
2005-06-21 07:33:48 +02:00
|
|
|
/* 9 */ NULL, NULL, NULL, NULL, NULL, NULL, NULL)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Vnode tracing code.
|
|
|
|
*/
|
|
|
|
void
|
2008-02-07 06:42:19 +01:00
|
|
|
_xfs_itrace_entry(xfs_inode_t *ip, const char *func, inst_t *ra)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-02-07 06:42:19 +01:00
|
|
|
KTRACE_ENTER(ip, INODE_KTRACE_ENTRY, func, 0, ra);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-02-07 06:42:19 +01:00
|
|
|
_xfs_itrace_exit(xfs_inode_t *ip, const char *func, inst_t *ra)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-02-07 06:42:19 +01:00
|
|
|
KTRACE_ENTER(ip, INODE_KTRACE_EXIT, func, 0, ra);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-02-07 06:42:19 +01:00
|
|
|
xfs_itrace_hold(xfs_inode_t *ip, char *file, int line, inst_t *ra)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-02-07 06:42:19 +01:00
|
|
|
KTRACE_ENTER(ip, INODE_KTRACE_HOLD, file, line, ra);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-02-07 06:42:19 +01:00
|
|
|
_xfs_itrace_ref(xfs_inode_t *ip, char *file, int line, inst_t *ra)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-02-07 06:42:19 +01:00
|
|
|
KTRACE_ENTER(ip, INODE_KTRACE_REF, file, line, ra);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-02-07 06:42:19 +01:00
|
|
|
xfs_itrace_rele(xfs_inode_t *ip, char *file, int line, inst_t *ra)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-02-07 06:42:19 +01:00
|
|
|
KTRACE_ENTER(ip, INODE_KTRACE_RELE, file, line, ra);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2008-02-07 06:42:19 +01:00
|
|
|
#endif /* XFS_INODE_TRACE */
|