Merge commit 'refs/top-bases/linux-zfs-branch' into linux-zfs-branch
This commit is contained in:
commit
821c68e73d
|
@ -27,4 +27,7 @@
|
||||||
#ifndef _LIBSPL_SYS_FM_UTIL_H
|
#ifndef _LIBSPL_SYS_FM_UTIL_H
|
||||||
#define _LIBSPL_SYS_FM_UTIL_H
|
#define _LIBSPL_SYS_FM_UTIL_H
|
||||||
|
|
||||||
|
static inline void fm_init(void) { }
|
||||||
|
static inline void fm_fini(void) { }
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -7,3 +7,4 @@ obj-m := ${MODULE}.o
|
||||||
|
|
||||||
${MODULE}-objs += nvpair.o
|
${MODULE}-objs += nvpair.o
|
||||||
${MODULE}-objs += nvpair_alloc_spl.o
|
${MODULE}-objs += nvpair_alloc_spl.o
|
||||||
|
${MODULE}-objs += nvpair_alloc_fixed.o
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
* Use is subject to license terms.
|
* Use is subject to license terms.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma ident "%Z%%M% %I% %E% SMI"
|
|
||||||
|
|
||||||
#include <sys/stropts.h>
|
#include <sys/stropts.h>
|
||||||
#include <sys/isa_defs.h>
|
#include <sys/isa_defs.h>
|
||||||
|
@ -118,3 +118,7 @@ const nv_alloc_ops_t nv_fixed_ops_def = {
|
||||||
};
|
};
|
||||||
|
|
||||||
const nv_alloc_ops_t *nv_fixed_ops = &nv_fixed_ops_def;
|
const nv_alloc_ops_t *nv_fixed_ops = &nv_fixed_ops_def;
|
||||||
|
|
||||||
|
#if defined(_KERNEL) && defined(HAVE_SPL)
|
||||||
|
EXPORT_SYMBOL(nv_fixed_ops);
|
||||||
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue