mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-23 10:54:35 +03:00
lib{efi,avl,share,tpool,zfs_core,zfsbootenv,zutil}: -fvisibility=hidden
No symbols affected in libavl No symbols affected by libtpool, but pre-ANSI declarations got purged No symbols affected by libzfs_core No symbols affected by libzfs_bootenv libefi got cleaned, gained efi_debug documentation in efi_partition.h, and removes one undocumented and unused symbol from libzfs_core: D default_vtoc_map libnvpair saw removal of these symbols: D nv_alloc_nosleep_def D nv_alloc_sleep D nv_alloc_sleep_def D nv_fixed_ops_def D nvlist_hashtable_init_size D nvpair_max_recursion libshare saw removal of these symbols from libzfs: T libshare_nfs_init T libshare_smb_init T register_fstype B smb_shares libzutil saw removal of these internal symbols from libzfs_core: T label_paths T slice_cache_compare T zpool_find_import_blkid T zpool_open_func T zutil_alloc T zutil_strdup Reviewed-by: Matthew Ahrens <mahrens@delphix.com> Reviewed-by: John Kennedy <john.kennedy@delphix.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz> Closes #12191
This commit is contained in:
@@ -24,7 +24,7 @@
|
||||
*/
|
||||
|
||||
#ifndef _SYS_EFI_PARTITION_H
|
||||
#define _SYS_EFI_PARTITION_H
|
||||
#define _SYS_EFI_PARTITION_H extern __attribute__((visibility("default")))
|
||||
|
||||
#include <sys/uuid.h>
|
||||
|
||||
@@ -363,14 +363,15 @@ struct partition64 {
|
||||
#endif
|
||||
|
||||
#ifndef _KERNEL
|
||||
extern int efi_alloc_and_init(int, uint32_t, struct dk_gpt **);
|
||||
extern int efi_alloc_and_read(int, struct dk_gpt **);
|
||||
extern int efi_write(int, struct dk_gpt *);
|
||||
extern int efi_rescan(int);
|
||||
extern void efi_free(struct dk_gpt *);
|
||||
extern int efi_type(int);
|
||||
extern void efi_err_check(struct dk_gpt *);
|
||||
extern int efi_use_whole_disk(int fd);
|
||||
_SYS_EFI_PARTITION_H int efi_debug;
|
||||
_SYS_EFI_PARTITION_H int efi_alloc_and_init(int, uint32_t, struct dk_gpt **);
|
||||
_SYS_EFI_PARTITION_H int efi_alloc_and_read(int, struct dk_gpt **);
|
||||
_SYS_EFI_PARTITION_H int efi_write(int, struct dk_gpt *);
|
||||
_SYS_EFI_PARTITION_H int efi_rescan(int);
|
||||
_SYS_EFI_PARTITION_H void efi_free(struct dk_gpt *);
|
||||
_SYS_EFI_PARTITION_H int efi_type(int);
|
||||
_SYS_EFI_PARTITION_H void efi_err_check(struct dk_gpt *);
|
||||
_SYS_EFI_PARTITION_H int efi_use_whole_disk(int fd);
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
Reference in New Issue
Block a user