Kill off some proto_major < 6 checks (#476)
authorDr. David Alan Gilbert <dgilbert@redhat.com>
Fri, 29 Nov 2019 09:14:28 +0000 (09:14 +0000)
committerNikolaus Rath <Nikolaus@rath.org>
Fri, 29 Nov 2019 09:14:28 +0000 (09:14 +0000)
fuse_init already refuses to start if we're on major < 7 ,
so we can kill off checks for old major versions.

Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
lib/fuse_lowlevel.c

index 6eb949f8b36693325ee4da8539a171ffc0b3635a..36713854a2d0a917e2798eb4491c14f08edf1eb6 100644 (file)
@@ -2229,7 +2229,7 @@ int fuse_lowlevel_notify_inval_inode(struct fuse_session *se, fuse_ino_t ino,
        if (!se)
                return -EINVAL;
 
-       if (se->conn.proto_major < 6 || se->conn.proto_minor < 12)
+       if (se->conn.proto_minor < 12)
                return -ENOSYS;
        
        outarg.ino = ino;
@@ -2251,7 +2251,7 @@ int fuse_lowlevel_notify_inval_entry(struct fuse_session *se, fuse_ino_t parent,
        if (!se)
                return -EINVAL;
        
-       if (se->conn.proto_major < 6 || se->conn.proto_minor < 12)
+       if (se->conn.proto_minor < 12)
                return -ENOSYS;
 
        outarg.parent = parent;
@@ -2276,7 +2276,7 @@ int fuse_lowlevel_notify_delete(struct fuse_session *se,
        if (!se)
                return -EINVAL;
 
-       if (se->conn.proto_major < 6 || se->conn.proto_minor < 18)
+       if (se->conn.proto_minor < 18)
                return -ENOSYS;
 
        outarg.parent = parent;
@@ -2305,7 +2305,7 @@ int fuse_lowlevel_notify_store(struct fuse_session *se, fuse_ino_t ino,
        if (!se)
                return -EINVAL;
 
-       if (se->conn.proto_major < 6 || se->conn.proto_minor < 15)
+       if (se->conn.proto_minor < 15)
                return -ENOSYS;
 
        out.unique = 0;
@@ -2383,7 +2383,7 @@ int fuse_lowlevel_notify_retrieve(struct fuse_session *se, fuse_ino_t ino,
        if (!se)
                return -EINVAL;
 
-       if (se->conn.proto_major < 6 || se->conn.proto_minor < 15)
+       if (se->conn.proto_minor < 15)
                return -ENOSYS;
 
        rreq = malloc(sizeof(*rreq));