mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-24 19:28:53 +03:00
Switch from _Noreturn to __attribute__((noreturn))
Parts of the Linux kernel build system struggle with _Noreturn. This
results in the following warnings when building on RHEL 8.5, and likely
other environments. Switch to using the __attribute__((noreturn)).
warning: objtool: dbuf_free_range()+0x2b8:
return with modified stack frame
warning: objtool: dbuf_free_range()+0x0:
stack state mismatch: cfa1=7+40 cfa2=7+8
...
WARNING: EXPORT symbol "arc_buf_size" [zfs.ko] version generation
failed, symbol will not be versioned.
WARNING: EXPORT symbol "spa_open" [zfs.ko] version generation
failed, symbol will not be versioned.
...
Additionally, __thread_exit() has been renamed spl_thread_exit() and
made a static inline function. This was needed because the kernel
will generate a warning for symbols which are __attribute__((noreturn))
and then exported with EXPORT_SYMBOL.
While we could continue to use _Noreturn in user space I've also
switched it to __attribute__((noreturn)) purely for consistency
throughout the code base.
Reviewed-by: Ryan Moeller <freqlabs@FreeBSD.org>
Reviewed-by: Brian Atkinson <batkinson@lanl.gov>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #13238
This commit is contained in:
@@ -1234,7 +1234,7 @@ redact_list_cb(redact_block_phys_t *rb, void *arg)
|
||||
* error code of the thread in case something goes wrong, and pushes the End of
|
||||
* Stream record when the traverse_dataset call has finished.
|
||||
*/
|
||||
static _Noreturn void
|
||||
static __attribute__((noreturn)) void
|
||||
send_traverse_thread(void *arg)
|
||||
{
|
||||
struct send_thread_arg *st_arg = arg;
|
||||
@@ -1324,7 +1324,7 @@ get_next_range(bqueue_t *bq, struct send_range *prev)
|
||||
return (next);
|
||||
}
|
||||
|
||||
static _Noreturn void
|
||||
static __attribute__((noreturn)) void
|
||||
redact_list_thread(void *arg)
|
||||
{
|
||||
struct redact_list_thread_arg *rlt_arg = arg;
|
||||
@@ -1519,7 +1519,7 @@ find_next_range(struct send_range **ranges, bqueue_t **qs, uint64_t *out_mask)
|
||||
* data from the redact_list_thread and use that to determine which blocks
|
||||
* should be redacted.
|
||||
*/
|
||||
static _Noreturn void
|
||||
static __attribute__((noreturn)) void
|
||||
send_merge_thread(void *arg)
|
||||
{
|
||||
struct send_merge_thread_arg *smt_arg = arg;
|
||||
@@ -1744,7 +1744,7 @@ enqueue_range(struct send_reader_thread_arg *srta, bqueue_t *q, dnode_t *dn,
|
||||
* some indirect blocks can be discarded because they're not holes. Second,
|
||||
* it issues prefetches for the data we need to send.
|
||||
*/
|
||||
static _Noreturn void
|
||||
static __attribute__((noreturn)) void
|
||||
send_reader_thread(void *arg)
|
||||
{
|
||||
struct send_reader_thread_arg *srta = arg;
|
||||
|
||||
Reference in New Issue
Block a user