diff options
Diffstat (limited to 'drivers/target/iscsi/iscsi_target_tq.c')
-rw-r--r-- | drivers/target/iscsi/iscsi_target_tq.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/target/iscsi/iscsi_target_tq.c b/drivers/target/iscsi/iscsi_target_tq.c index 977e1cf90e83..9d881a000e42 100644 --- a/drivers/target/iscsi/iscsi_target_tq.c +++ b/drivers/target/iscsi/iscsi_target_tq.c | |||
@@ -40,7 +40,7 @@ static void iscsi_add_ts_to_active_list(struct iscsi_thread_set *ts) | |||
40 | spin_unlock(&active_ts_lock); | 40 | spin_unlock(&active_ts_lock); |
41 | } | 41 | } |
42 | 42 | ||
43 | extern void iscsi_add_ts_to_inactive_list(struct iscsi_thread_set *ts) | 43 | static void iscsi_add_ts_to_inactive_list(struct iscsi_thread_set *ts) |
44 | { | 44 | { |
45 | spin_lock(&inactive_ts_lock); | 45 | spin_lock(&inactive_ts_lock); |
46 | list_add_tail(&ts->ts_list, &inactive_ts_list); | 46 | list_add_tail(&ts->ts_list, &inactive_ts_list); |
@@ -76,7 +76,7 @@ static struct iscsi_thread_set *iscsi_get_ts_from_inactive_list(void) | |||
76 | return ts; | 76 | return ts; |
77 | } | 77 | } |
78 | 78 | ||
79 | extern int iscsi_allocate_thread_sets(u32 thread_pair_count) | 79 | int iscsi_allocate_thread_sets(u32 thread_pair_count) |
80 | { | 80 | { |
81 | int allocated_thread_pair_count = 0, i, thread_id; | 81 | int allocated_thread_pair_count = 0, i, thread_id; |
82 | struct iscsi_thread_set *ts = NULL; | 82 | struct iscsi_thread_set *ts = NULL; |
@@ -140,7 +140,7 @@ extern int iscsi_allocate_thread_sets(u32 thread_pair_count) | |||
140 | return allocated_thread_pair_count; | 140 | return allocated_thread_pair_count; |
141 | } | 141 | } |
142 | 142 | ||
143 | extern void iscsi_deallocate_thread_sets(void) | 143 | void iscsi_deallocate_thread_sets(void) |
144 | { | 144 | { |
145 | u32 released_count = 0; | 145 | u32 released_count = 0; |
146 | struct iscsi_thread_set *ts = NULL; | 146 | struct iscsi_thread_set *ts = NULL; |