diff options
| author | Michael Forney <mforney@mforney.org> | 2019-04-22 20:29:01 -0700 |
|---|---|---|
| committer | Michael Forney <mforney@mforney.org> | 2019-04-23 21:37:12 -0700 |
| commit | 79ee6160fe37f048935ec80ed66309fb3e4fe288 (patch) | |
| tree | 09d5728503b8a4a379bdf34677475a31cda373e1 /pkg | |
| parent | a2d6cf935418083f6d2a2a05951e3fb1a0d09660 (diff) | |
fuse: Update to 3.5.0
Diffstat (limited to 'pkg')
| -rw-r--r-- | pkg/fuse/config.h | 2 | ||||
| -rw-r--r-- | pkg/fuse/patch/0002-Fix-prototype-of-cuse_fll_ioctl.patch | 31 | ||||
| m--------- | pkg/fuse/src | 0 | ||||
| -rw-r--r-- | pkg/fuse/ver | 2 |
4 files changed, 33 insertions, 2 deletions
diff --git a/pkg/fuse/config.h b/pkg/fuse/config.h index 95f4c819..d549db80 100644 --- a/pkg/fuse/config.h +++ b/pkg/fuse/config.h @@ -18,4 +18,4 @@ #undef HAVE_STRUCT_STAT_ST_ATIMESPEC #define HAVE_UTIMENSAT #define HAVE_VMSPLICE -#define PACKAGE_VERSION "3.4.2" +#define PACKAGE_VERSION "3.5.0" diff --git a/pkg/fuse/patch/0002-Fix-prototype-of-cuse_fll_ioctl.patch b/pkg/fuse/patch/0002-Fix-prototype-of-cuse_fll_ioctl.patch new file mode 100644 index 00000000..073ccbe2 --- /dev/null +++ b/pkg/fuse/patch/0002-Fix-prototype-of-cuse_fll_ioctl.patch @@ -0,0 +1,31 @@ +From e3f3b5690d6eeed23745ac1d966d4b51f0b5e270 Mon Sep 17 00:00:00 2001 +From: Michael Forney <mforney@mforney.org> +Date: Mon, 22 Apr 2019 20:28:01 -0700 +Subject: [PATCH] Fix prototype of cuse_fll_ioctl + +The type of cmd was changed to unsigned int. +--- + lib/cuse_lowlevel.c | 7 ++++--- + 1 file changed, 4 insertions(+), 3 deletions(-) + +diff --git a/lib/cuse_lowlevel.c b/lib/cuse_lowlevel.c +index 56e6aa9..7c146ba 100644 +--- a/lib/cuse_lowlevel.c ++++ b/lib/cuse_lowlevel.c +@@ -77,9 +77,10 @@ static void cuse_fll_fsync(fuse_req_t req, fuse_ino_t ino, int datasync, + req_clop(req)->fsync(req, datasync, fi); + } + +-static void cuse_fll_ioctl(fuse_req_t req, fuse_ino_t ino, int cmd, void *arg, +- struct fuse_file_info *fi, unsigned int flags, +- const void *in_buf, size_t in_bufsz, size_t out_bufsz) ++static void cuse_fll_ioctl(fuse_req_t req, fuse_ino_t ino, unsigned int cmd, ++ void *arg, struct fuse_file_info *fi, ++ unsigned int flags, const void *in_buf, ++ size_t in_bufsz, size_t out_bufsz) + { + (void)ino; + req_clop(req)->ioctl(req, cmd, arg, fi, flags, in_buf, in_bufsz, +-- +2.21.0 + diff --git a/pkg/fuse/src b/pkg/fuse/src -Subproject 16337224ea221965b02ce538184cf28170b15e6 +Subproject 9ec8e1c9406451262b6fd3c93787b2bb6d745ea diff --git a/pkg/fuse/ver b/pkg/fuse/ver index dad21099..142adba1 100644 --- a/pkg/fuse/ver +++ b/pkg/fuse/ver @@ -1 +1 @@ -3.4.2 r0 +3.5.0 r0 |
