examples: mark ops variables constant (#496)
authorzsugabubus <zsugabubus@users.noreply.github.com>
Thu, 30 Jan 2020 16:17:25 +0000 (16:17 +0000)
committerGitHub <noreply@github.com>
Thu, 30 Jan 2020 16:17:25 +0000 (11:17 -0500)
13 files changed:
example/hello.c
example/hello_ll.c
example/invalidate_path.c
example/ioctl.c
example/notify_inval_entry.c
example/notify_inval_inode.c
example/notify_store_retrieve.c
example/null.c
example/passthrough.c
example/passthrough_fh.c
example/passthrough_ll.c
example/poll.c
example/printcap.c

index f307bf2d865ba55637acaded4cc0b7ee24da9961..dd08ef6f2981801e01888cca5797ca82607091d5 100644 (file)
@@ -128,7 +128,7 @@ static int hello_read(const char *path, char *buf, size_t size, off_t offset,
        return size;
 }
 
-static struct fuse_operations hello_oper = {
+static const struct fuse_operations hello_oper = {
        .init           = hello_init,
        .getattr        = hello_getattr,
        .readdir        = hello_readdir,
index 51b452c989e55b20a9ed2594649c826aeef2952f..73cd78de1b31eda9be872639ffe25ec43acc2f88 100644 (file)
@@ -153,7 +153,7 @@ static void hello_ll_read(fuse_req_t req, fuse_ino_t ino, size_t size,
        reply_buf_limited(req, hello_str, strlen(hello_str), off, size);
 }
 
-static struct fuse_lowlevel_ops hello_ll_oper = {
+static const struct fuse_lowlevel_ops hello_ll_oper = {
        .lookup         = hello_ll_lookup,
        .getattr        = hello_ll_getattr,
        .readdir        = hello_ll_readdir,
index 74c83c325971160b8491720891090b1ca8573290..9e2754b688d33e2502dfc2ef4a4d56e7bb8e4be9 100644 (file)
@@ -153,7 +153,7 @@ static int xmp_read(const char *path, char *buf, size_t size, off_t offset,
        }
 }
 
-static struct fuse_operations xmp_oper = {
+static const struct fuse_operations xmp_oper = {
                .init     = xmp_init,
                .getattr  = xmp_getattr,
                .readdir  = xmp_readdir,
index 8fdd8f69c7427f955e438d60a66145170f8c0af2..52973236459dc536a15c107ab1af04682fd0c1b7 100644 (file)
@@ -214,7 +214,7 @@ static int fioc_ioctl(const char *path, unsigned int cmd, void *arg,
        return -EINVAL;
 }
 
-static struct fuse_operations fioc_oper = {
+static const struct fuse_operations fioc_oper = {
        .getattr        = fioc_getattr,
        .readdir        = fioc_readdir,
        .truncate       = fioc_truncate,
index aef5f0ff200ffbcd2663630905cc7fa69ffc3b5c..6f13bdbfca558509c8fc74a9849e844921b7099b 100644 (file)
@@ -222,7 +222,7 @@ static void tfs_readdir(fuse_req_t req, fuse_ino_t ino, size_t size,
     }
 }
 
-static struct fuse_lowlevel_ops tfs_oper = {
+static const struct fuse_lowlevel_ops tfs_oper = {
     .lookup    = tfs_lookup,
     .getattr   = tfs_getattr,
     .readdir   = tfs_readdir,
index cdea82dd02abb5a12012aa79c501d892c332f04a..fcf17dc9b9b8a098faeb33f95600b15b3300efa2 100644 (file)
@@ -239,7 +239,7 @@ static void tfs_read(fuse_req_t req, fuse_ino_t ino, size_t size,
     reply_buf_limited(req, file_contents, file_size, off, size);
 }
 
-static struct fuse_lowlevel_ops tfs_oper = {
+static const struct fuse_lowlevel_ops tfs_oper = {
     .lookup    = tfs_lookup,
     .getattr   = tfs_getattr,
     .readdir   = tfs_readdir,
index 56cb8b7c95f7d0f3c21d8edfef59b6d5f685d9c0..4795a4bdd7b0adb39edb22b012f83a3e44d79bbc 100644 (file)
@@ -269,7 +269,7 @@ static void tfs_retrieve_reply(fuse_req_t req, void *cookie, fuse_ino_t ino,
 }
 
 
-static struct fuse_lowlevel_ops tfs_oper = {
+static const struct fuse_lowlevel_ops tfs_oper = {
     .lookup    = tfs_lookup,
     .getattr   = tfs_getattr,
     .readdir   = tfs_readdir,
index ed68c0b42553629cf349f34a99be960ac85d4042..4cd5351312cc60c25194b62bd0a913a29017e58b 100644 (file)
@@ -104,7 +104,7 @@ static int null_write(const char *path, const char *buf, size_t size,
        return size;
 }
 
-static struct fuse_operations null_oper = {
+static const struct fuse_operations null_oper = {
        .getattr        = null_getattr,
        .truncate       = null_truncate,
        .open           = null_open,
index 012bd31c3c8dec9f32b3c38ed8f5d778aa38eb31..ec2f8720ac4151ce214fa6a104f64dce3eee2a59 100644 (file)
@@ -506,7 +506,7 @@ static off_t xmp_lseek(const char *path, off_t off, int whence, struct fuse_file
        return res;
 }
 
-static struct fuse_operations xmp_oper = {
+static const struct fuse_operations xmp_oper = {
        .init           = xmp_init,
        .getattr        = xmp_getattr,
        .access         = xmp_access,
index 13eb41e3bdb1847a2cff7de03bfa505acea4eaaf..7e62a7bca40b988dbe44c0685dcfd8076b62e926 100644 (file)
@@ -608,7 +608,7 @@ static off_t xmp_lseek(const char *path, off_t off, int whence, struct fuse_file
        return res;
 }
 
-static struct fuse_operations xmp_oper = {
+static const struct fuse_operations xmp_oper = {
        .init           = xmp_init,
        .getattr        = xmp_getattr,
        .access         = xmp_access,
index c31dbe5f93bec53201a2a16573394c5fd1c7c055..816551538bd4eaf1776d0c04dac303d22a99cbce 100644 (file)
@@ -1174,7 +1174,7 @@ static void lo_lseek(fuse_req_t req, fuse_ino_t ino, off_t off, int whence,
                fuse_reply_err(req, errno);
 }
 
-static struct fuse_lowlevel_ops lo_oper = {
+static const struct fuse_lowlevel_ops lo_oper = {
        .init           = lo_init,
        .lookup         = lo_lookup,
        .mkdir          = lo_mkdir,
index 64917cc7a8bccebede3358a6f329fcf24034772e..6bc38790f4073d246d14412dfe76f79e3ab5b959 100644 (file)
@@ -206,7 +206,7 @@ static int fsel_poll(const char *path, struct fuse_file_info *fi,
        return 0;
 }
 
-static struct fuse_operations fsel_oper = {
+static const struct fuse_operations fsel_oper = {
        .getattr        = fsel_getattr,
        .readdir        = fsel_readdir,
        .open           = fsel_open,
index 904542f5124178d33820f7816b8d8b483a05fec3..6c2482df1c1e675800e4d6c4a48213451ea27bad 100644 (file)
@@ -85,7 +85,7 @@ static void pc_init(void *userdata,
 }
 
 
-static struct fuse_lowlevel_ops pc_oper = {
+static const struct fuse_lowlevel_ops pc_oper = {
        .init           = pc_init,
 };