Merge commit 'refs/top-bases/linux-have-uio-rw' into linux-have-uio-rw
This commit is contained in:
commit
91fcf9d661
|
@ -530,10 +530,11 @@ zfs_prop_align_right(zfs_prop_t prop)
|
||||||
|
|
||||||
#if defined(_KERNEL) && defined(HAVE_SPL)
|
#if defined(_KERNEL) && defined(HAVE_SPL)
|
||||||
/* zfs dataset property functions */
|
/* zfs dataset property functions */
|
||||||
|
EXPORT_SYMBOL(zfs_userquota_prop_prefixes);
|
||||||
EXPORT_SYMBOL(zfs_prop_init);
|
EXPORT_SYMBOL(zfs_prop_init);
|
||||||
EXPORT_SYMBOL(zfs_prop_get_type);
|
EXPORT_SYMBOL(zfs_prop_get_type);
|
||||||
EXPORT_SYMBOL(zfs_prop_delegatable);
|
|
||||||
EXPORT_SYMBOL(zfs_prop_get_table);
|
EXPORT_SYMBOL(zfs_prop_get_table);
|
||||||
|
EXPORT_SYMBOL(zfs_prop_delegatable);
|
||||||
|
|
||||||
/* Dataset property functions shared between libzfs and kernel. */
|
/* Dataset property functions shared between libzfs and kernel. */
|
||||||
EXPORT_SYMBOL(zfs_prop_default_string);
|
EXPORT_SYMBOL(zfs_prop_default_string);
|
||||||
|
@ -544,6 +545,7 @@ EXPORT_SYMBOL(zfs_prop_setonce);
|
||||||
EXPORT_SYMBOL(zfs_prop_to_name);
|
EXPORT_SYMBOL(zfs_prop_to_name);
|
||||||
EXPORT_SYMBOL(zfs_name_to_prop);
|
EXPORT_SYMBOL(zfs_name_to_prop);
|
||||||
EXPORT_SYMBOL(zfs_prop_user);
|
EXPORT_SYMBOL(zfs_prop_user);
|
||||||
|
EXPORT_SYMBOL(zfs_prop_userquota);
|
||||||
EXPORT_SYMBOL(zfs_prop_index_to_string);
|
EXPORT_SYMBOL(zfs_prop_index_to_string);
|
||||||
EXPORT_SYMBOL(zfs_prop_string_to_index);
|
EXPORT_SYMBOL(zfs_prop_string_to_index);
|
||||||
EXPORT_SYMBOL(zfs_prop_valid_for_type);
|
EXPORT_SYMBOL(zfs_prop_valid_for_type);
|
||||||
|
|
|
@ -483,6 +483,8 @@ int dmu_free_object(objset_t *os, uint64_t object);
|
||||||
#define DMU_WRITE_ZEROCOPY 4 /* zerocopy on write (test) */
|
#define DMU_WRITE_ZEROCOPY 4 /* zerocopy on write (test) */
|
||||||
int dmu_read(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
|
int dmu_read(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
|
||||||
void *buf, uint32_t flags);
|
void *buf, uint32_t flags);
|
||||||
|
void dmu_write_impl(objset_t *os, uint64_t object, uint64_t offset,
|
||||||
|
uint64_t size, const void *buf, dmu_tx_t *tx, int flags);
|
||||||
void dmu_write(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
|
void dmu_write(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
|
||||||
const void *buf, dmu_tx_t *tx);
|
const void *buf, dmu_tx_t *tx);
|
||||||
void dmu_prealloc(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
|
void dmu_prealloc(objset_t *os, uint64_t object, uint64_t offset, uint64_t size,
|
||||||
|
|
|
@ -14,7 +14,7 @@ KERNEL_MODULES=( \
|
||||||
)
|
)
|
||||||
|
|
||||||
SPL_MODULES=( \
|
SPL_MODULES=( \
|
||||||
${SPLBUILD}/module/spl/spl.ko \
|
${SPLBUILD}/spl/spl.ko \
|
||||||
)
|
)
|
||||||
|
|
||||||
ZFS_MODULES=( \
|
ZFS_MODULES=( \
|
||||||
|
|
Loading…
Reference in New Issue