orangefs: make orangefs_make_bad_inode static
Signed-off-by: Martin Brandenburg <martin@omnibond.com> Signed-off-by: Mike Marshall <hubcap@omnibond.com>
This commit is contained in:
committed by
Mike Marshall
parent
538e304821
commit
4d0cac7e75
@@ -467,8 +467,6 @@ int orangefs_inode_check_changed(struct inode *inode);
|
|||||||
|
|
||||||
int orangefs_inode_setattr(struct inode *inode, struct iattr *iattr);
|
int orangefs_inode_setattr(struct inode *inode, struct iattr *iattr);
|
||||||
|
|
||||||
void orangefs_make_bad_inode(struct inode *inode);
|
|
||||||
|
|
||||||
int orangefs_unmount_sb(struct super_block *sb);
|
int orangefs_unmount_sb(struct super_block *sb);
|
||||||
|
|
||||||
bool orangefs_cancel_op_in_progress(struct orangefs_kernel_op_s *op);
|
bool orangefs_cancel_op_in_progress(struct orangefs_kernel_op_s *op);
|
||||||
|
|||||||
@@ -230,6 +230,25 @@ static int orangefs_inode_type(enum orangefs_ds_type objtype)
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void orangefs_make_bad_inode(struct inode *inode)
|
||||||
|
{
|
||||||
|
if (is_root_handle(inode)) {
|
||||||
|
/*
|
||||||
|
* if this occurs, the pvfs2-client-core was killed but we
|
||||||
|
* can't afford to lose the inode operations and such
|
||||||
|
* associated with the root handle in any case.
|
||||||
|
*/
|
||||||
|
gossip_debug(GOSSIP_UTILS_DEBUG,
|
||||||
|
"*** NOT making bad root inode %pU\n",
|
||||||
|
get_khandle_from_ino(inode));
|
||||||
|
} else {
|
||||||
|
gossip_debug(GOSSIP_UTILS_DEBUG,
|
||||||
|
"*** making bad inode %pU\n",
|
||||||
|
get_khandle_from_ino(inode));
|
||||||
|
make_bad_inode(inode);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static int orangefs_inode_is_stale(struct inode *inode, int new,
|
static int orangefs_inode_is_stale(struct inode *inode, int new,
|
||||||
struct ORANGEFS_sys_attr_s *attrs, char *link_target)
|
struct ORANGEFS_sys_attr_s *attrs, char *link_target)
|
||||||
{
|
{
|
||||||
@@ -444,25 +463,6 @@ int orangefs_inode_setattr(struct inode *inode, struct iattr *iattr)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
void orangefs_make_bad_inode(struct inode *inode)
|
|
||||||
{
|
|
||||||
if (is_root_handle(inode)) {
|
|
||||||
/*
|
|
||||||
* if this occurs, the pvfs2-client-core was killed but we
|
|
||||||
* can't afford to lose the inode operations and such
|
|
||||||
* associated with the root handle in any case.
|
|
||||||
*/
|
|
||||||
gossip_debug(GOSSIP_UTILS_DEBUG,
|
|
||||||
"*** NOT making bad root inode %pU\n",
|
|
||||||
get_khandle_from_ino(inode));
|
|
||||||
} else {
|
|
||||||
gossip_debug(GOSSIP_UTILS_DEBUG,
|
|
||||||
"*** making bad inode %pU\n",
|
|
||||||
get_khandle_from_ino(inode));
|
|
||||||
make_bad_inode(inode);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The following is a very dirty hack that is now a permanent part of the
|
* The following is a very dirty hack that is now a permanent part of the
|
||||||
* ORANGEFS protocol. See protocol.h for more error definitions.
|
* ORANGEFS protocol. See protocol.h for more error definitions.
|
||||||
|
|||||||
Reference in New Issue
Block a user