Merge branch 'gcc-invalid-prototype' into refs/top-bases/gcc-branch
This commit is contained in:
commit
82e0ed26f9
|
@ -195,7 +195,7 @@ typedef struct kthread kthread_t;
|
||||||
zk_thread_create(func, arg)
|
zk_thread_create(func, arg)
|
||||||
#define thread_exit() thr_exit(NULL)
|
#define thread_exit() thr_exit(NULL)
|
||||||
|
|
||||||
extern kthread_t *zk_thread_create(void (*func)(), void *arg);
|
extern kthread_t *zk_thread_create(void (*func)(void), void *arg);
|
||||||
|
|
||||||
#define issig(why) (FALSE)
|
#define issig(why) (FALSE)
|
||||||
#define ISSIG(thr, why) (FALSE)
|
#define ISSIG(thr, why) (FALSE)
|
||||||
|
|
|
@ -93,7 +93,7 @@ zfs_share_type_t zfs_is_shared_proto(zfs_handle_t *, char **,
|
||||||
static int (*iscsitgt_zfs_share)(const char *);
|
static int (*iscsitgt_zfs_share)(const char *);
|
||||||
static int (*iscsitgt_zfs_unshare)(const char *);
|
static int (*iscsitgt_zfs_unshare)(const char *);
|
||||||
static int (*iscsitgt_zfs_is_shared)(const char *);
|
static int (*iscsitgt_zfs_is_shared)(const char *);
|
||||||
static int (*iscsitgt_svc_online)();
|
static int (*iscsitgt_svc_online)(void);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The share protocols table must be in the same order as the zfs_share_prot_t
|
* The share protocols table must be in the same order as the zfs_share_prot_t
|
||||||
|
@ -146,7 +146,7 @@ zfs_iscsi_init(void)
|
||||||
"iscsitgt_zfs_unshare")) == NULL ||
|
"iscsitgt_zfs_unshare")) == NULL ||
|
||||||
(iscsitgt_zfs_is_shared = (int (*)(const char *))dlsym(libiscsitgt,
|
(iscsitgt_zfs_is_shared = (int (*)(const char *))dlsym(libiscsitgt,
|
||||||
"iscsitgt_zfs_is_shared")) == NULL ||
|
"iscsitgt_zfs_is_shared")) == NULL ||
|
||||||
(iscsitgt_svc_online = (int (*)(const char *))dlsym(libiscsitgt,
|
(iscsitgt_svc_online = (int (*)(void))dlsym(libiscsitgt,
|
||||||
"iscsitgt_svc_online")) == NULL) {
|
"iscsitgt_svc_online")) == NULL) {
|
||||||
iscsitgt_zfs_share = NULL;
|
iscsitgt_zfs_share = NULL;
|
||||||
iscsitgt_zfs_unshare = NULL;
|
iscsitgt_zfs_unshare = NULL;
|
||||||
|
|
|
@ -522,7 +522,7 @@ extern void vdev_cache_stat_fini(void);
|
||||||
/* Initialization and termination */
|
/* Initialization and termination */
|
||||||
extern void spa_init(int flags);
|
extern void spa_init(int flags);
|
||||||
extern void spa_fini(void);
|
extern void spa_fini(void);
|
||||||
extern void spa_boot_init();
|
extern void spa_boot_init(void);
|
||||||
|
|
||||||
/* properties */
|
/* properties */
|
||||||
extern int spa_prop_set(spa_t *spa, nvlist_t *nvp);
|
extern int spa_prop_set(spa_t *spa, nvlist_t *nvp);
|
||||||
|
|
|
@ -305,8 +305,8 @@ extern int zfs_rezget(znode_t *);
|
||||||
extern void zfs_zinactive(znode_t *);
|
extern void zfs_zinactive(znode_t *);
|
||||||
extern void zfs_znode_delete(znode_t *, dmu_tx_t *);
|
extern void zfs_znode_delete(znode_t *, dmu_tx_t *);
|
||||||
extern void zfs_znode_free(znode_t *);
|
extern void zfs_znode_free(znode_t *);
|
||||||
extern void zfs_remove_op_tables();
|
extern void zfs_remove_op_tables(void);
|
||||||
extern int zfs_create_op_tables();
|
extern int zfs_create_op_tables(void);
|
||||||
extern int zfs_sync(vfs_t *vfsp, short flag, cred_t *cr);
|
extern int zfs_sync(vfs_t *vfsp, short flag, cred_t *cr);
|
||||||
extern dev_t zfs_cmpldev(uint64_t);
|
extern dev_t zfs_cmpldev(uint64_t);
|
||||||
extern int zfs_get_zplprop(objset_t *os, zfs_prop_t prop, uint64_t *value);
|
extern int zfs_get_zplprop(objset_t *os, zfs_prop_t prop, uint64_t *value);
|
||||||
|
|
|
@ -176,7 +176,7 @@ spa_history_write(spa_t *spa, void *buf, uint64_t len, spa_history_phys_t *shpp,
|
||||||
}
|
}
|
||||||
|
|
||||||
static char *
|
static char *
|
||||||
spa_history_zone()
|
spa_history_zone(void)
|
||||||
{
|
{
|
||||||
#ifdef _KERNEL
|
#ifdef _KERNEL
|
||||||
return (curproc->p_zone->zone_name);
|
return (curproc->p_zone->zone_name);
|
||||||
|
|
|
@ -1329,7 +1329,7 @@ spa_busy(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
spa_boot_init()
|
spa_boot_init(void)
|
||||||
{
|
{
|
||||||
spa_config_load();
|
spa_config_load();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue