From: Blazej Kucman Date: Fri, 22 Mar 2024 11:51:15 +0000 (+0100) Subject: mdadm: Move pr_vrb define to mdadm.h X-Git-Tag: mdadm-4.4~205 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc75b0faaa016e54d569486c9a7abe6c39cb883a;p=thirdparty%2Fmdadm.git mdadm: Move pr_vrb define to mdadm.h Move pr_vrb define from super-intel.c to mdadm.h to make it widely available. This change will be used in the next patches. Signed-off-by: Blazej Kucman Signed-off-by: Mariusz Tkaczyk --- diff --git a/mdadm.h b/mdadm.h index ae2106a2..fbb161ba 100644 --- a/mdadm.h +++ b/mdadm.h @@ -1911,6 +1911,8 @@ static inline int xasprintf(char **strp, const char *fmt, ...) { #define pr_info(fmt, args...) printf("%s: "fmt, Name, ##args) +#define pr_vrb(fmt, arg...) ((void)(verbose && pr_err(fmt, ##arg))) + void *xmalloc(size_t len); void *xrealloc(void *ptr, size_t len); void *xcalloc(size_t num, size_t size); diff --git a/super-intel.c b/super-intel.c index 70f3c4ef..212387ec 100644 --- a/super-intel.c +++ b/super-intel.c @@ -393,8 +393,6 @@ struct md_list { struct md_list *next; }; -#define pr_vrb(fmt, arg...) (void) (verbose && pr_err(fmt, ##arg)) - static __u8 migr_type(struct imsm_dev *dev) { if (dev->vol.migr_type == MIGR_VERIFY &&