use off_t over __off64_t
authorpsykose <alice@ayaya.dev>
Sat, 14 Jan 2023 21:31:56 +0000 (21:31 +0000)
committerNikolaus Rath <Nikolaus@rath.org>
Sun, 15 Jan 2023 10:09:10 +0000 (10:09 +0000)
when -D_FILE_OFFSET_BITS=64 is defined, the off_t type is 64 bits wide
already. the fuse_common.h header already checks for this, and errors
when it is not, so be consistent with all the other uses of off_t.

some libcs like musl do not have a 32-bit off_t type, and don't define
__off64_t.

example/hello_ll_uds.c
include/fuse_lowlevel.h

index c1f64d7bba9189b6612b77b3f54ca8e98de724b6..f291fed99e18e5bd4a524c61f4ca74bc0c2539b0 100644 (file)
@@ -277,8 +277,8 @@ static ssize_t stream_read(int fd, void *buf, size_t buf_len, void *userdata) {
     return  (res == -1) ? res : (res + prev_res);
 }
 
-static ssize_t stream_splice_send(int fdin, __off64_t *offin, int fdout,
-                                           __off64_t *offout, size_t len,
+static ssize_t stream_splice_send(int fdin, off_t *offin, int fdout,
+                                           off_t *offout, size_t len,
                                   unsigned int flags, void *userdata) {
        (void)userdata;
 
index ff0d966e3c95f3de146cb83be0828fa818a5aafa..96088d7ae8f240a665d13a82ff4be60fd329d697 100644 (file)
@@ -130,11 +130,11 @@ struct fuse_forget_data {
 struct fuse_custom_io {
        ssize_t (*writev)(int fd, struct iovec *iov, int count, void *userdata);
        ssize_t (*read)(int fd, void *buf, size_t buf_len, void *userdata);
-       ssize_t (*splice_receive)(int fdin, __off64_t *offin, int fdout,
-                                         __off64_t *offout, size_t len,
+       ssize_t (*splice_receive)(int fdin, off_t *offin, int fdout,
+                                         off_t *offout, size_t len,
                                          unsigned int flags, void *userdata);
-       ssize_t (*splice_send)(int fdin, __off64_t *offin, int fdout,
-                                    __off64_t *offout, size_t len,
+       ssize_t (*splice_send)(int fdin, off_t *offin, int fdout,
+                                    off_t *offout, size_t len,
                                   unsigned int flags, void *userdata);
 };