Commit 70823b9b authored by Jan Kara's avatar Jan Kara Committed by Mike Marshall

orangefs: Remove orangefs_backing_dev_info

It is not used anywhere.

CC: Mike Marshall <hubcap@omnibond.com>
Signed-off-by: default avatarJan Kara <jack@suse.cz>
Signed-off-by: default avatarMike Marshall <hubcap@omnibond.com>
parent 31c829f3
...@@ -135,12 +135,6 @@ static ssize_t orangefs_direct_IO(struct kiocb *iocb, ...@@ -135,12 +135,6 @@ static ssize_t orangefs_direct_IO(struct kiocb *iocb,
return -EINVAL; return -EINVAL;
} }
struct backing_dev_info orangefs_backing_dev_info = {
.name = "orangefs",
.ra_pages = 0,
.capabilities = BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_WRITEBACK,
};
/** ORANGEFS2 implementation of address space operations */ /** ORANGEFS2 implementation of address space operations */
const struct address_space_operations orangefs_address_operations = { const struct address_space_operations orangefs_address_operations = {
.readpage = orangefs_readpage, .readpage = orangefs_readpage,
......
...@@ -529,7 +529,6 @@ extern spinlock_t orangefs_htable_ops_in_progress_lock; ...@@ -529,7 +529,6 @@ extern spinlock_t orangefs_htable_ops_in_progress_lock;
extern int hash_table_size; extern int hash_table_size;
extern const struct address_space_operations orangefs_address_operations; extern const struct address_space_operations orangefs_address_operations;
extern struct backing_dev_info orangefs_backing_dev_info;
extern const struct inode_operations orangefs_file_inode_operations; extern const struct inode_operations orangefs_file_inode_operations;
extern const struct file_operations orangefs_file_operations; extern const struct file_operations orangefs_file_operations;
extern const struct inode_operations orangefs_symlink_inode_operations; extern const struct inode_operations orangefs_symlink_inode_operations;
......
...@@ -80,11 +80,6 @@ static int __init orangefs_init(void) ...@@ -80,11 +80,6 @@ static int __init orangefs_init(void)
int ret = -1; int ret = -1;
__u32 i = 0; __u32 i = 0;
ret = bdi_init(&orangefs_backing_dev_info);
if (ret)
return ret;
if (op_timeout_secs < 0) if (op_timeout_secs < 0)
op_timeout_secs = 0; op_timeout_secs = 0;
...@@ -94,7 +89,7 @@ static int __init orangefs_init(void) ...@@ -94,7 +89,7 @@ static int __init orangefs_init(void)
/* initialize global book keeping data structures */ /* initialize global book keeping data structures */
ret = op_cache_initialize(); ret = op_cache_initialize();
if (ret < 0) if (ret < 0)
goto err; goto out;
ret = orangefs_inode_cache_initialize(); ret = orangefs_inode_cache_initialize();
if (ret < 0) if (ret < 0)
...@@ -181,9 +176,6 @@ static int __init orangefs_init(void) ...@@ -181,9 +176,6 @@ static int __init orangefs_init(void)
cleanup_op: cleanup_op:
op_cache_finalize(); op_cache_finalize();
err:
bdi_destroy(&orangefs_backing_dev_info);
out: out:
return ret; return ret;
} }
...@@ -207,8 +199,6 @@ static void __exit orangefs_exit(void) ...@@ -207,8 +199,6 @@ static void __exit orangefs_exit(void)
kfree(orangefs_htable_ops_in_progress); kfree(orangefs_htable_ops_in_progress);
bdi_destroy(&orangefs_backing_dev_info);
pr_info("orangefs: module version %s unloaded\n", ORANGEFS_VERSION); pr_info("orangefs: module version %s unloaded\n", ORANGEFS_VERSION);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment