File: kernel-fsync.m4

package info (click to toggle)
zfs-linux 2.1.11-1%2Bdeb12u1
  • links: PTS, VCS
  • area: contrib
  • in suites: bookworm
  • size: 77,344 kB
  • sloc: ansic: 376,447; sh: 59,625; python: 7,872; asm: 6,476; makefile: 5,812; perl: 770; sed: 41; awk: 5
file content (53 lines) | stat: -rw-r--r-- 1,212 bytes parent folder | download | duplicates (2)
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
50
51
52
53
dnl #
dnl # Check file_operations->fsync interface.
dnl #
AC_DEFUN([ZFS_AC_KERNEL_SRC_FSYNC], [
	ZFS_LINUX_TEST_SRC([fsync_without_dentry], [
		#include <linux/fs.h>

		int test_fsync(struct file *f, int x) { return 0; }

		static const struct file_operations
		    fops __attribute__ ((unused)) = {
			.fsync = test_fsync,
		};
	],[])

	ZFS_LINUX_TEST_SRC([fsync_range], [
		#include <linux/fs.h>

		int test_fsync(struct file *f, loff_t a, loff_t b, int c)
		    { return 0; }

		static const struct file_operations
		    fops __attribute__ ((unused)) = {
			.fsync = test_fsync,
		};
	],[])
])

AC_DEFUN([ZFS_AC_KERNEL_FSYNC], [
	dnl #
	dnl # Linux 2.6.35 - Linux 3.0 API
	dnl #
	AC_MSG_CHECKING([whether fops->fsync() wants no dentry])
	ZFS_LINUX_TEST_RESULT([fsync_without_dentry], [
		AC_MSG_RESULT([yes])
		AC_DEFINE(HAVE_FSYNC_WITHOUT_DENTRY, 1,
		    [fops->fsync() without dentry])
	],[
		AC_MSG_RESULT([no])

		dnl #
		dnl # Linux 3.1 - 3.x API
		dnl #
		AC_MSG_CHECKING([whether fops->fsync() wants range])
		ZFS_LINUX_TEST_RESULT([fsync_range], [
			AC_MSG_RESULT([range])
			AC_DEFINE(HAVE_FSYNC_RANGE, 1,
			    [fops->fsync() with range])
		],[
			ZFS_LINUX_TEST_ERROR([fops->fsync])
		])
	])
])