mirror of
https://github.com/torvalds/linux
synced 2026-07-22 18:20:51 +09:00
smb/client: Use EXPORT_SYMBOL_IF_KUNIT() to export symbols in SMB2
Replace EXPORT_SYMBOL_FOR_MODULES() with EXPORT_SYMBOL_IF_KUNIT() to mark the symbols as visible only if CONFIG_KUNIT is enabled. Kunit test should import the namespace EXPORTED_FOR_KUNIT_TESTING to use these marked symbols. This is the standard way for all KUnit tests. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: ChenXiaoSong <chenxiaosong@kylinos.cn> Signed-off-by: Steve French <stfrench@microsoft.com>
This commit is contained in:
committed by
Steve French
parent
b8de511f0e
commit
e2e08effef
@@ -8,6 +8,9 @@
|
||||
*
|
||||
*/
|
||||
#include <linux/errno.h>
|
||||
|
||||
#include <kunit/visibility.h>
|
||||
|
||||
#include "cifsproto.h"
|
||||
#include "cifs_debug.h"
|
||||
#include "smb2proto.h"
|
||||
@@ -109,18 +112,15 @@ int __init smb2_init_maperror(void)
|
||||
}
|
||||
|
||||
#if IS_ENABLED(CONFIG_SMB_KUNIT_TESTS)
|
||||
#define EXPORT_SYMBOL_FOR_SMB_TEST(sym) \
|
||||
EXPORT_SYMBOL_FOR_MODULES(sym, "smb2maperror_test")
|
||||
|
||||
const struct status_to_posix_error *smb2_get_err_map_test(__u32 smb2_status)
|
||||
{
|
||||
return smb2_get_err_map(smb2_status);
|
||||
}
|
||||
EXPORT_SYMBOL_FOR_SMB_TEST(smb2_get_err_map_test);
|
||||
EXPORT_SYMBOL_IF_KUNIT(smb2_get_err_map_test);
|
||||
|
||||
const struct status_to_posix_error *smb2_error_map_table_test = smb2_error_map_table;
|
||||
EXPORT_SYMBOL_FOR_SMB_TEST(smb2_error_map_table_test);
|
||||
EXPORT_SYMBOL_IF_KUNIT(smb2_error_map_table_test);
|
||||
|
||||
unsigned int smb2_error_map_num = ARRAY_SIZE(smb2_error_map_table);
|
||||
EXPORT_SYMBOL_FOR_SMB_TEST(smb2_error_map_num);
|
||||
EXPORT_SYMBOL_IF_KUNIT(smb2_error_map_num);
|
||||
#endif
|
||||
|
||||
@@ -47,3 +47,4 @@ kunit_test_suite(maperror_suite);
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_DESCRIPTION("KUnit tests of SMB2 maperror");
|
||||
MODULE_IMPORT_NS("EXPORTED_FOR_KUNIT_TESTING");
|
||||
|
||||
Reference in New Issue
Block a user