summaryrefslogtreecommitdiffstats
path: root/src/kernel/tests/include/tst_safe_file_ops.h
diff options
context:
space:
mode:
authorManuel Bentele2020-10-23 15:18:01 +0200
committerManuel Bentele2020-10-23 15:18:01 +0200
commitdbb41ce2b7f309d394054a6bd1e33afd578798a5 (patch)
tree6a31092063d9f2fb5ac5720ec6759040e793c3d5 /src/kernel/tests/include/tst_safe_file_ops.h
parentSet Linux kernel version to unknown if it is not detectable (diff)
downloadxloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.tar.gz
xloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.tar.xz
xloop-dbb41ce2b7f309d394054a6bd1e33afd578798a5.zip
Move the source code of all xloop components to the common 'src' directory
Diffstat (limited to 'src/kernel/tests/include/tst_safe_file_ops.h')
-rw-r--r--src/kernel/tests/include/tst_safe_file_ops.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/kernel/tests/include/tst_safe_file_ops.h b/src/kernel/tests/include/tst_safe_file_ops.h
new file mode 100644
index 0000000..894c161
--- /dev/null
+++ b/src/kernel/tests/include/tst_safe_file_ops.h
@@ -0,0 +1,49 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later
+ * Copyright (C) 2012 Cyril Hrubis chrubis@suse.cz
+ */
+
+#ifndef TST_SAFE_FILE_OPS
+#define TST_SAFE_FILE_OPS
+
+#include "safe_file_ops_fn.h"
+
+#define SAFE_FILE_SCANF(path, fmt, ...) \
+ safe_file_scanf(__FILE__, __LINE__, NULL, \
+ (path), (fmt), ## __VA_ARGS__)
+
+#define FILE_LINES_SCANF(path, fmt, ...) \
+ file_lines_scanf(__FILE__, __LINE__, NULL, 0,\
+ (path), (fmt), ## __VA_ARGS__)
+
+#define SAFE_FILE_LINES_SCANF(path, fmt, ...) \
+ file_lines_scanf(__FILE__, __LINE__, NULL, 1,\
+ (path), (fmt), ## __VA_ARGS__)
+
+#define SAFE_READ_MEMINFO(item) \
+ ({long tst_rval; \
+ SAFE_FILE_LINES_SCANF("/proc/meminfo", item " %ld", \
+ &tst_rval); \
+ tst_rval;})
+
+#define FILE_PRINTF(path, fmt, ...) \
+ file_printf(__FILE__, __LINE__, \
+ (path), (fmt), ## __VA_ARGS__)
+
+#define SAFE_FILE_PRINTF(path, fmt, ...) \
+ safe_file_printf(__FILE__, __LINE__, NULL, \
+ (path), (fmt), ## __VA_ARGS__)
+
+#define SAFE_CP(src, dst) \
+ safe_cp(__FILE__, __LINE__, NULL, (src), (dst))
+
+#define SAFE_TOUCH(pathname, mode, times) \
+ safe_touch(__FILE__, __LINE__, NULL, \
+ (pathname), (mode), (times))
+
+#define SAFE_MOUNT_OVERLAY() \
+ ((void) mount_overlay(__FILE__, __LINE__, 1))
+
+#define TST_MOUNT_OVERLAY() \
+ (mount_overlay(__FILE__, __LINE__, 0) == 0)
+
+#endif /* TST_SAFE_FILE_OPS */