mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-25 03:37:45 +03:00
Add linux kernel module support
Setup linux kernel module support, this includes: - zfs context for kernel/user - kernel module build system integration - kernel module macros - kernel module symbol export - kernel module options Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
@@ -424,3 +424,21 @@ zprop_width(int prop, boolean_t *fixed, zfs_type_t type)
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
#if defined(_KERNEL) && defined(HAVE_SPL)
|
||||
/* Common routines to initialize property tables */
|
||||
EXPORT_SYMBOL(zprop_register_impl);
|
||||
EXPORT_SYMBOL(zprop_register_string);
|
||||
EXPORT_SYMBOL(zprop_register_number);
|
||||
EXPORT_SYMBOL(zprop_register_index);
|
||||
EXPORT_SYMBOL(zprop_register_hidden);
|
||||
|
||||
/* Common routines for zfs and zpool property management */
|
||||
EXPORT_SYMBOL(zprop_iter_common);
|
||||
EXPORT_SYMBOL(zprop_name_to_prop);
|
||||
EXPORT_SYMBOL(zprop_string_to_index);
|
||||
EXPORT_SYMBOL(zprop_index_to_string);
|
||||
EXPORT_SYMBOL(zprop_random_value);
|
||||
EXPORT_SYMBOL(zprop_values);
|
||||
EXPORT_SYMBOL(zprop_valid_for_type);
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user