Commit 337349fb authored by Shraddha Barke's avatar Shraddha Barke Committed by Greg Kroah-Hartman

Staging: lustre: ptlrpc: Declare sptlrpc_rule_set_free as static

Declare sptlrpc_rule_set_free as static since it is accessed from this
particular file only. Also remove its declaration from
header file
Signed-off-by: default avatarShraddha Barke <shraddha.6596@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5cff0cc9
...@@ -329,7 +329,6 @@ static inline void sptlrpc_rule_set_init(struct sptlrpc_rule_set *set) ...@@ -329,7 +329,6 @@ static inline void sptlrpc_rule_set_init(struct sptlrpc_rule_set *set)
memset(set, 0, sizeof(*set)); memset(set, 0, sizeof(*set));
} }
void sptlrpc_rule_set_free(struct sptlrpc_rule_set *set);
int sptlrpc_rule_set_expand(struct sptlrpc_rule_set *set); int sptlrpc_rule_set_expand(struct sptlrpc_rule_set *set);
int sptlrpc_rule_set_choose(struct sptlrpc_rule_set *rset, int sptlrpc_rule_set_choose(struct sptlrpc_rule_set *rset,
enum lustre_sec_part from, enum lustre_sec_part from,
......
...@@ -215,7 +215,7 @@ int sptlrpc_parse_rule(char *param, struct sptlrpc_rule *rule) ...@@ -215,7 +215,7 @@ int sptlrpc_parse_rule(char *param, struct sptlrpc_rule *rule)
} }
EXPORT_SYMBOL(sptlrpc_parse_rule); EXPORT_SYMBOL(sptlrpc_parse_rule);
void sptlrpc_rule_set_free(struct sptlrpc_rule_set *rset) static void sptlrpc_rule_set_free(struct sptlrpc_rule_set *rset)
{ {
LASSERT(rset->srs_nslot || LASSERT(rset->srs_nslot ||
(rset->srs_nrule == 0 && rset->srs_rules == NULL)); (rset->srs_nrule == 0 && rset->srs_rules == NULL));
...@@ -225,7 +225,6 @@ void sptlrpc_rule_set_free(struct sptlrpc_rule_set *rset) ...@@ -225,7 +225,6 @@ void sptlrpc_rule_set_free(struct sptlrpc_rule_set *rset)
sptlrpc_rule_set_init(rset); sptlrpc_rule_set_init(rset);
} }
} }
EXPORT_SYMBOL(sptlrpc_rule_set_free);
/* /*
* return 0 if the rule set could accommodate one more rule. * return 0 if the rule set could accommodate one more rule.
......
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