while (0); -> while (0) in multi-line macros
This commit is contained in:
parent
c487be961a
commit
1a3c917f9d
@ -45,7 +45,7 @@ struct timeval32 {
|
||||
#define TV_CP(src,dst,fld) do { \
|
||||
CP((src).fld,(dst).fld,tv_sec); \
|
||||
CP((src).fld,(dst).fld,tv_usec); \
|
||||
} while (0);
|
||||
} while (0)
|
||||
|
||||
struct timespec32 {
|
||||
u_int32_t tv_sec;
|
||||
|
@ -1257,8 +1257,7 @@ typedef struct work_queue_item work_queue_item;
|
||||
(w)->wqi_func = (func); \
|
||||
(w)->wqi_ctx = (ctx); \
|
||||
InitializeListHead(&((w)->wqi_entry)); \
|
||||
} while (0); \
|
||||
|
||||
} while (0)
|
||||
|
||||
/*
|
||||
* FreeBSD's kernel stack is 2 pages in size by default. The
|
||||
|
@ -322,7 +322,7 @@ struct arl_softc {
|
||||
for (i = cnt; i && ar->resetFlag; i--) { \
|
||||
DELAY(delay); \
|
||||
} \
|
||||
} while (0);
|
||||
} while (0)
|
||||
|
||||
#ifdef _KERNEL
|
||||
void arl_release_resources (device_t);
|
||||
|
@ -149,7 +149,7 @@ struct ath_txq {
|
||||
snprintf((_tq)->axq_name, sizeof((_tq)->axq_name), "%s_txq%u", \
|
||||
device_get_nameunit((_sc)->sc_dev), (_tq)->axq_qnum); \
|
||||
mtx_init(&(_tq)->axq_lock, (_tq)->axq_name, "ath_txq", MTX_DEF); \
|
||||
} while (0);
|
||||
} while (0)
|
||||
#define ATH_TXQ_LOCK_DESTROY(_tq) mtx_destroy(&(_tq)->axq_lock)
|
||||
#define ATH_TXQ_LOCK(_tq) mtx_lock(&(_tq)->axq_lock)
|
||||
#define ATH_TXQ_UNLOCK(_tq) mtx_unlock(&(_tq)->axq_lock)
|
||||
|
@ -74,7 +74,7 @@ MALLOC_DECLARE(M_IPSBUF);
|
||||
#define ips_set_error(command, error) do { \
|
||||
(command)->status.fields.basic_status = IPS_DRV_ERROR; \
|
||||
(command)->status.fields.reserved = ((error) & 0x0f); \
|
||||
} while (0);
|
||||
} while (0)
|
||||
|
||||
#ifndef IPS_DEBUG
|
||||
#define DEVICE_PRINTF(x...)
|
||||
|
@ -241,7 +241,7 @@ struct denode {
|
||||
(dep)->de_flag |= DE_MODIFIED; \
|
||||
} \
|
||||
(dep)->de_flag &= ~(DE_UPDATE | DE_CREATE | DE_ACCESS); \
|
||||
} while (0);
|
||||
} while (0)
|
||||
|
||||
/*
|
||||
* This overlays the fid structure (see mount.h)
|
||||
|
@ -45,7 +45,7 @@
|
||||
pbp = pbp->bio_caller1; \
|
||||
pbp->bio_caller1 = cbp; \
|
||||
} \
|
||||
} while (0);
|
||||
} while (0)
|
||||
|
||||
struct gv_raid5_packet {
|
||||
caddr_t data; /* Data buffer of this sub-request- */
|
||||
|
Loading…
Reference in New Issue
Block a user