lib80211: remove exports for functions not called by other modules
Signed-off-by: Pavel Roskin <proski@gnu.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
c027ed4cea
commit
9d630c7796
@@ -117,10 +117,7 @@ void lib80211_crypt_info_free(struct lib80211_crypt_info *info);
|
|||||||
int lib80211_register_crypto_ops(struct lib80211_crypto_ops *ops);
|
int lib80211_register_crypto_ops(struct lib80211_crypto_ops *ops);
|
||||||
int lib80211_unregister_crypto_ops(struct lib80211_crypto_ops *ops);
|
int lib80211_unregister_crypto_ops(struct lib80211_crypto_ops *ops);
|
||||||
struct lib80211_crypto_ops *lib80211_get_crypto_ops(const char *name);
|
struct lib80211_crypto_ops *lib80211_get_crypto_ops(const char *name);
|
||||||
void lib80211_crypt_deinit_entries(struct lib80211_crypt_info *, int);
|
|
||||||
void lib80211_crypt_deinit_handler(unsigned long);
|
|
||||||
void lib80211_crypt_delayed_deinit(struct lib80211_crypt_info *info,
|
void lib80211_crypt_delayed_deinit(struct lib80211_crypt_info *info,
|
||||||
struct lib80211_crypt_data **crypt);
|
struct lib80211_crypt_data **crypt);
|
||||||
void lib80211_crypt_quiescing(struct lib80211_crypt_info *info);
|
|
||||||
|
|
||||||
#endif /* LIB80211_H */
|
#endif /* LIB80211_H */
|
||||||
|
@@ -41,6 +41,11 @@ struct lib80211_crypto_alg {
|
|||||||
static LIST_HEAD(lib80211_crypto_algs);
|
static LIST_HEAD(lib80211_crypto_algs);
|
||||||
static DEFINE_SPINLOCK(lib80211_crypto_lock);
|
static DEFINE_SPINLOCK(lib80211_crypto_lock);
|
||||||
|
|
||||||
|
static void lib80211_crypt_deinit_entries(struct lib80211_crypt_info *info,
|
||||||
|
int force);
|
||||||
|
static void lib80211_crypt_quiescing(struct lib80211_crypt_info *info);
|
||||||
|
static void lib80211_crypt_deinit_handler(unsigned long data);
|
||||||
|
|
||||||
const char *print_ssid(char *buf, const char *ssid, u8 ssid_len)
|
const char *print_ssid(char *buf, const char *ssid, u8 ssid_len)
|
||||||
{
|
{
|
||||||
const char *s = ssid;
|
const char *s = ssid;
|
||||||
@@ -111,7 +116,8 @@ void lib80211_crypt_info_free(struct lib80211_crypt_info *info)
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL(lib80211_crypt_info_free);
|
EXPORT_SYMBOL(lib80211_crypt_info_free);
|
||||||
|
|
||||||
void lib80211_crypt_deinit_entries(struct lib80211_crypt_info *info, int force)
|
static void lib80211_crypt_deinit_entries(struct lib80211_crypt_info *info,
|
||||||
|
int force)
|
||||||
{
|
{
|
||||||
struct lib80211_crypt_data *entry, *next;
|
struct lib80211_crypt_data *entry, *next;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
@@ -131,10 +137,9 @@ void lib80211_crypt_deinit_entries(struct lib80211_crypt_info *info, int force)
|
|||||||
}
|
}
|
||||||
spin_unlock_irqrestore(info->lock, flags);
|
spin_unlock_irqrestore(info->lock, flags);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(lib80211_crypt_deinit_entries);
|
|
||||||
|
|
||||||
/* After this, crypt_deinit_list won't accept new members */
|
/* After this, crypt_deinit_list won't accept new members */
|
||||||
void lib80211_crypt_quiescing(struct lib80211_crypt_info *info)
|
static void lib80211_crypt_quiescing(struct lib80211_crypt_info *info)
|
||||||
{
|
{
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
@@ -142,9 +147,8 @@ void lib80211_crypt_quiescing(struct lib80211_crypt_info *info)
|
|||||||
info->crypt_quiesced = 1;
|
info->crypt_quiesced = 1;
|
||||||
spin_unlock_irqrestore(info->lock, flags);
|
spin_unlock_irqrestore(info->lock, flags);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(lib80211_crypt_quiescing);
|
|
||||||
|
|
||||||
void lib80211_crypt_deinit_handler(unsigned long data)
|
static void lib80211_crypt_deinit_handler(unsigned long data)
|
||||||
{
|
{
|
||||||
struct lib80211_crypt_info *info = (struct lib80211_crypt_info *)data;
|
struct lib80211_crypt_info *info = (struct lib80211_crypt_info *)data;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
@@ -160,7 +164,6 @@ void lib80211_crypt_deinit_handler(unsigned long data)
|
|||||||
}
|
}
|
||||||
spin_unlock_irqrestore(info->lock, flags);
|
spin_unlock_irqrestore(info->lock, flags);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(lib80211_crypt_deinit_handler);
|
|
||||||
|
|
||||||
void lib80211_crypt_delayed_deinit(struct lib80211_crypt_info *info,
|
void lib80211_crypt_delayed_deinit(struct lib80211_crypt_info *info,
|
||||||
struct lib80211_crypt_data **crypt)
|
struct lib80211_crypt_data **crypt)
|
||||||
|
Reference in New Issue
Block a user