提交 c1206a2c 编写于 作者: A Adrian Bunk 提交者: Linus Torvalds

fs/afs/: possible cleanups

This patch contains the following possible cleanups:
- make the following needlessly global functions static:
  - rxrpc.c: afs_send_pages()
  - vlocation.c: afs_vlocation_queue_for_updates()
  - write.c: afs_writepages_region()
- make the following needlessly global variables static:
  - mntpt.c: afs_mntpt_expiry_timeout
  - proc.c: afs_vlocation_states[]
  - server.c: afs_server_timeout
  - vlocation.c: afs_vlocation_timeout
  - vlocation.c: afs_vlocation_update_timeout
- #if 0 the following unused function:
  - cell.c: afs_get_cell_maybe()
- #if 0 the following unused variables:
  - callback.c: afs_vnode_update_timeout
  - cmservice.c: struct afs_cm_workqueue
Signed-off-by: NAdrian Bunk <bunk@stusta.de>
Acked-by: NDavid Howells <dhowells@redhat.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 a4d63e72
...@@ -20,7 +20,9 @@ ...@@ -20,7 +20,9 @@
#include <linux/sched.h> #include <linux/sched.h>
#include "internal.h" #include "internal.h"
#if 0
unsigned afs_vnode_update_timeout = 10; unsigned afs_vnode_update_timeout = 10;
#endif /* 0 */
#define afs_breakring_space(server) \ #define afs_breakring_space(server) \
CIRC_SPACE((server)->cb_break_head, (server)->cb_break_tail, \ CIRC_SPACE((server)->cb_break_head, (server)->cb_break_tail, \
......
...@@ -265,6 +265,7 @@ struct afs_cell *afs_cell_lookup(const char *name, unsigned namesz) ...@@ -265,6 +265,7 @@ struct afs_cell *afs_cell_lookup(const char *name, unsigned namesz)
return cell; return cell;
} }
#if 0
/* /*
* try and get a cell record * try and get a cell record
*/ */
...@@ -280,6 +281,7 @@ struct afs_cell *afs_get_cell_maybe(struct afs_cell *cell) ...@@ -280,6 +281,7 @@ struct afs_cell *afs_get_cell_maybe(struct afs_cell *cell)
write_unlock(&afs_cells_lock); write_unlock(&afs_cells_lock);
return cell; return cell;
} }
#endif /* 0 */
/* /*
* destroy a cell record * destroy a cell record
......
...@@ -16,7 +16,9 @@ ...@@ -16,7 +16,9 @@
#include "internal.h" #include "internal.h"
#include "afs_cm.h" #include "afs_cm.h"
#if 0
struct workqueue_struct *afs_cm_workqueue; struct workqueue_struct *afs_cm_workqueue;
#endif /* 0 */
static int afs_deliver_cb_init_call_back_state(struct afs_call *, static int afs_deliver_cb_init_call_back_state(struct afs_call *,
struct sk_buff *, bool); struct sk_buff *, bool);
......
...@@ -570,7 +570,6 @@ extern int afs_abort_to_error(u32); ...@@ -570,7 +570,6 @@ extern int afs_abort_to_error(u32);
*/ */
extern const struct inode_operations afs_mntpt_inode_operations; extern const struct inode_operations afs_mntpt_inode_operations;
extern const struct file_operations afs_mntpt_file_operations; extern const struct file_operations afs_mntpt_file_operations;
extern unsigned long afs_mntpt_expiry_timeout;
extern int afs_mntpt_check_symlink(struct afs_vnode *, struct key *); extern int afs_mntpt_check_symlink(struct afs_vnode *, struct key *);
extern void afs_mntpt_kill_timer(void); extern void afs_mntpt_kill_timer(void);
......
...@@ -42,7 +42,7 @@ const struct inode_operations afs_mntpt_inode_operations = { ...@@ -42,7 +42,7 @@ const struct inode_operations afs_mntpt_inode_operations = {
static LIST_HEAD(afs_vfsmounts); static LIST_HEAD(afs_vfsmounts);
static DECLARE_DELAYED_WORK(afs_mntpt_expiry_timer, afs_mntpt_expiry_timed_out); static DECLARE_DELAYED_WORK(afs_mntpt_expiry_timer, afs_mntpt_expiry_timed_out);
unsigned long afs_mntpt_expiry_timeout = 10 * 60; static unsigned long afs_mntpt_expiry_timeout = 10 * 60;
/* /*
* check a symbolic link to see whether it actually encodes a mountpoint * check a symbolic link to see whether it actually encodes a mountpoint
......
...@@ -513,7 +513,7 @@ static void afs_proc_cell_volumes_stop(struct seq_file *p, void *v) ...@@ -513,7 +513,7 @@ static void afs_proc_cell_volumes_stop(struct seq_file *p, void *v)
up_read(&cell->vl_sem); up_read(&cell->vl_sem);
} }
const char afs_vlocation_states[][4] = { static const char afs_vlocation_states[][4] = {
[AFS_VL_NEW] = "New", [AFS_VL_NEW] = "New",
[AFS_VL_CREATING] = "Crt", [AFS_VL_CREATING] = "Crt",
[AFS_VL_VALID] = "Val", [AFS_VL_VALID] = "Val",
......
...@@ -239,7 +239,8 @@ void afs_flat_call_destructor(struct afs_call *call) ...@@ -239,7 +239,8 @@ void afs_flat_call_destructor(struct afs_call *call)
/* /*
* attach the data from a bunch of pages on an inode to a call * attach the data from a bunch of pages on an inode to a call
*/ */
int afs_send_pages(struct afs_call *call, struct msghdr *msg, struct kvec *iov) static int afs_send_pages(struct afs_call *call, struct msghdr *msg,
struct kvec *iov)
{ {
struct page *pages[8]; struct page *pages[8];
unsigned count, n, loop, offset, to; unsigned count, n, loop, offset, to;
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
#include <linux/slab.h> #include <linux/slab.h>
#include "internal.h" #include "internal.h"
unsigned afs_server_timeout = 10; /* server timeout in seconds */ static unsigned afs_server_timeout = 10; /* server timeout in seconds */
static void afs_reap_server(struct work_struct *); static void afs_reap_server(struct work_struct *);
......
...@@ -15,8 +15,8 @@ ...@@ -15,8 +15,8 @@
#include <linux/sched.h> #include <linux/sched.h>
#include "internal.h" #include "internal.h"
unsigned afs_vlocation_timeout = 10; /* volume location timeout in seconds */ static unsigned afs_vlocation_timeout = 10; /* volume location timeout in seconds */
unsigned afs_vlocation_update_timeout = 10 * 60; static unsigned afs_vlocation_update_timeout = 10 * 60;
static void afs_vlocation_reaper(struct work_struct *); static void afs_vlocation_reaper(struct work_struct *);
static void afs_vlocation_updater(struct work_struct *); static void afs_vlocation_updater(struct work_struct *);
...@@ -335,7 +335,7 @@ static int afs_vlocation_fill_in_record(struct afs_vlocation *vl, ...@@ -335,7 +335,7 @@ static int afs_vlocation_fill_in_record(struct afs_vlocation *vl,
/* /*
* queue a vlocation record for updates * queue a vlocation record for updates
*/ */
void afs_vlocation_queue_for_updates(struct afs_vlocation *vl) static void afs_vlocation_queue_for_updates(struct afs_vlocation *vl)
{ {
struct afs_vlocation *xvl; struct afs_vlocation *xvl;
......
...@@ -510,7 +510,7 @@ int afs_writepage(struct page *page, struct writeback_control *wbc) ...@@ -510,7 +510,7 @@ int afs_writepage(struct page *page, struct writeback_control *wbc)
/* /*
* write a region of pages back to the server * write a region of pages back to the server
*/ */
int afs_writepages_region(struct address_space *mapping, static int afs_writepages_region(struct address_space *mapping,
struct writeback_control *wbc, struct writeback_control *wbc,
pgoff_t index, pgoff_t end, pgoff_t *_next) pgoff_t index, pgoff_t end, pgoff_t *_next)
{ {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册