1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// SPDX-License-Identifier: GPL-2.0
/*
* ALSA Virtual Soundcard
*
* utils.h - Some useful utilities for AVIRT
*
* Copyright (C) 2010-2018 Fiberdyne Systems Pty Ltd
*/
#ifndef __AVIRT_UTILS_H__
#define __AVIRT_UTILS_H__
#include <linux/slab.h>
#define PRINT_ERR(errno, errmsg) \
pr_err("[%s]:[ERRNO:%d]: %s \n", __func__, errno, (errmsg));
#define CHK_ERR(errno) \
do { \
if ((errno) < 0) \
return (errno); \
} while (0)
#define CHK_ERR_V(errno, errmsg, ...) \
do { \
if ((errno) < 0) { \
PRINT_ERR((errno), (errmsg), ##__VA_ARGS__) \
return (errno); \
} \
} while (0)
#define CHK_NULL(x, errno) \
do { \
if (!(x)) \
return errno; \
} while (0)
#define CHK_NULL_V(x, errno, errmsg, ...) \
do { \
if (!(x)) { \
char *errmsg_done = \
kasprintf(GFP_KERNEL, errmsg, ##__VA_ARGS__); \
PRINT_ERR(EFAULT, errmsg_done); \
kfree(errmsg_done); \
return errno; \
} \
} while (0)
#endif
|