File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed
include/os/linux/kernel/linux Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ enum scope_prefix_types {
79
79
};
80
80
81
81
/*
82
- * While we define our own s64/ u64 types, there is no reason to reimplement the
82
+ * While we define our own u64 types, there is no reason to reimplement the
83
83
* existing Linux kernel types, so we use the preprocessor to remap our
84
84
* "custom" implementations to the kernel ones. This is done because the CPP
85
85
* does not allow us to write conditional definitions. The fourth definition
@@ -112,11 +112,6 @@ enum scope_prefix_types {
112
112
#define spl_param_ops_charp param_ops_charp
113
113
#define spl_param_ops_STRING param_ops_charp
114
114
115
- int spl_param_set_s64 (const char * val , zfs_kernel_param_t * kp );
116
- extern int spl_param_get_s64 (char * buffer , zfs_kernel_param_t * kp );
117
- extern const struct kernel_param_ops spl_param_ops_s64 ;
118
- #define spl_param_ops_S64 spl_param_ops_s64
119
-
120
115
extern int spl_param_set_u64 (const char * val , zfs_kernel_param_t * kp );
121
116
extern int spl_param_get_u64 (char * buffer , zfs_kernel_param_t * kp );
122
117
extern const struct kernel_param_ops spl_param_ops_u64 ;
Original file line number Diff line number Diff line change @@ -575,7 +575,6 @@ EXPORT_SYMBOL(spl_param_get_##type); \
575
575
EXPORT_SYMBOL(spl_param_set_##type); \
576
576
EXPORT_SYMBOL(spl_param_ops_##type);
577
577
578
- define_spl_param (s64 , "%lld" )
579
578
define_spl_param (u64 , "%llu" )
580
579
581
580
/*
You can’t perform that action at this time.
0 commit comments