diff options
author | David Teigland <teigland@redhat.com> | 2007-01-09 10:41:48 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2007-02-05 13:36:37 -0500 |
commit | 68c817a1c4e21b893672ac73d8a498e6647453aa (patch) | |
tree | 12c0fe9bd087ac1a0189048a7f4535993d6cb697 /fs/dlm/config.h | |
parent | 8ec6886748443bec53ce9b9bf50cec92bc417a1b (diff) |
[DLM] rename dlm_config_info fields
Add a "ci_" prefix to the fields in the dlm_config_info struct so that we
can use macros to add configfs functions to access them (in a later
patch). No functional changes in this patch, just naming changes.
Signed-off-by: David Teigland <teigland@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/dlm/config.h')
-rw-r--r-- | fs/dlm/config.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/fs/dlm/config.h b/fs/dlm/config.h index 9da7839958a9..ce603e1c3bac 100644 --- a/fs/dlm/config.h +++ b/fs/dlm/config.h | |||
@@ -17,14 +17,14 @@ | |||
17 | #define DLM_MAX_ADDR_COUNT 3 | 17 | #define DLM_MAX_ADDR_COUNT 3 |
18 | 18 | ||
19 | struct dlm_config_info { | 19 | struct dlm_config_info { |
20 | int tcp_port; | 20 | int ci_tcp_port; |
21 | int buffer_size; | 21 | int ci_buffer_size; |
22 | int rsbtbl_size; | 22 | int ci_rsbtbl_size; |
23 | int lkbtbl_size; | 23 | int ci_lkbtbl_size; |
24 | int dirtbl_size; | 24 | int ci_dirtbl_size; |
25 | int recover_timer; | 25 | int ci_recover_timer; |
26 | int toss_secs; | 26 | int ci_toss_secs; |
27 | int scan_secs; | 27 | int ci_scan_secs; |
28 | }; | 28 | }; |
29 | 29 | ||
30 | extern struct dlm_config_info dlm_config; | 30 | extern struct dlm_config_info dlm_config; |