diff options
author | Hannes Reinecke <hare@suse.de> | 2013-11-19 03:07:50 -0500 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2013-11-20 14:28:07 -0500 |
commit | 6be526c45d31840f3384f41f62bcd796d35a9a5b (patch) | |
tree | 40c6fa908da4a23476fc6925a15368ca72296b44 /drivers/target | |
parent | c0dc941e2bdfad4deccf3ba2626f485b5a5f59a4 (diff) |
target_core_alua: Make supported states configurable
Signed-off-by: Hannes Reinecke <hare@suse.de>
Diffstat (limited to 'drivers/target')
-rw-r--r-- | drivers/target/target_core_configfs.c | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/drivers/target/target_core_configfs.c b/drivers/target/target_core_configfs.c index 3a964fbf50ee..1e4ea288303a 100644 --- a/drivers/target/target_core_configfs.c +++ b/drivers/target/target_core_configfs.c | |||
@@ -2131,6 +2131,55 @@ static ssize_t target_core_alua_tg_pt_gp_store_attr_alua_access_type( | |||
2131 | SE_DEV_ALUA_TG_PT_ATTR(alua_access_type, S_IRUGO | S_IWUSR); | 2131 | SE_DEV_ALUA_TG_PT_ATTR(alua_access_type, S_IRUGO | S_IWUSR); |
2132 | 2132 | ||
2133 | /* | 2133 | /* |
2134 | * alua_supported_states | ||
2135 | */ | ||
2136 | static ssize_t target_core_alua_tg_pt_gp_show_attr_alua_supported_states( | ||
2137 | struct t10_alua_tg_pt_gp *tg_pt_gp, | ||
2138 | char *page) | ||
2139 | { | ||
2140 | return sprintf(page, "%02x\n", | ||
2141 | tg_pt_gp->tg_pt_gp_alua_supported_states); | ||
2142 | } | ||
2143 | |||
2144 | static ssize_t target_core_alua_tg_pt_gp_store_attr_alua_supported_states( | ||
2145 | struct t10_alua_tg_pt_gp *tg_pt_gp, | ||
2146 | const char *page, | ||
2147 | size_t count) | ||
2148 | { | ||
2149 | unsigned long tmp; | ||
2150 | int new_states, valid_states, ret; | ||
2151 | |||
2152 | if (!tg_pt_gp->tg_pt_gp_valid_id) { | ||
2153 | pr_err("Unable to do set supported ALUA states on non" | ||
2154 | " valid tg_pt_gp ID: %hu\n", | ||
2155 | tg_pt_gp->tg_pt_gp_valid_id); | ||
2156 | return -EINVAL; | ||
2157 | } | ||
2158 | |||
2159 | ret = strict_strtoul(page, 0, &tmp); | ||
2160 | if (ret < 0) { | ||
2161 | pr_err("Unable to extract new supported ALUA states" | ||
2162 | " from %s\n", page); | ||
2163 | return -EINVAL; | ||
2164 | } | ||
2165 | new_states = (int)tmp; | ||
2166 | valid_states = ALUA_T_SUP | ALUA_O_SUP | ALUA_LBD_SUP | \ | ||
2167 | ALUA_U_SUP | ALUA_S_SUP | ALUA_AN_SUP | ALUA_AO_SUP; | ||
2168 | |||
2169 | |||
2170 | if (new_states & ~valid_states) { | ||
2171 | pr_err("Illegal supported ALUA states: 0x%02x\n", | ||
2172 | new_states); | ||
2173 | return -EINVAL; | ||
2174 | } | ||
2175 | |||
2176 | tg_pt_gp->tg_pt_gp_alua_supported_states = new_states; | ||
2177 | return count; | ||
2178 | } | ||
2179 | |||
2180 | SE_DEV_ALUA_TG_PT_ATTR(alua_supported_states, S_IRUGO | S_IWUSR); | ||
2181 | |||
2182 | /* | ||
2134 | * alua_write_metadata | 2183 | * alua_write_metadata |
2135 | */ | 2184 | */ |
2136 | static ssize_t target_core_alua_tg_pt_gp_show_attr_alua_write_metadata( | 2185 | static ssize_t target_core_alua_tg_pt_gp_show_attr_alua_write_metadata( |
@@ -2350,6 +2399,7 @@ static struct configfs_attribute *target_core_alua_tg_pt_gp_attrs[] = { | |||
2350 | &target_core_alua_tg_pt_gp_alua_access_state.attr, | 2399 | &target_core_alua_tg_pt_gp_alua_access_state.attr, |
2351 | &target_core_alua_tg_pt_gp_alua_access_status.attr, | 2400 | &target_core_alua_tg_pt_gp_alua_access_status.attr, |
2352 | &target_core_alua_tg_pt_gp_alua_access_type.attr, | 2401 | &target_core_alua_tg_pt_gp_alua_access_type.attr, |
2402 | &target_core_alua_tg_pt_gp_alua_supported_states.attr, | ||
2353 | &target_core_alua_tg_pt_gp_alua_write_metadata.attr, | 2403 | &target_core_alua_tg_pt_gp_alua_write_metadata.attr, |
2354 | &target_core_alua_tg_pt_gp_nonop_delay_msecs.attr, | 2404 | &target_core_alua_tg_pt_gp_nonop_delay_msecs.attr, |
2355 | &target_core_alua_tg_pt_gp_trans_delay_msecs.attr, | 2405 | &target_core_alua_tg_pt_gp_trans_delay_msecs.attr, |