linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fuse: Add changelog entries for protocols 7.1-7.8
@ 2019-08-19 17:10 asomers
  2019-10-03  7:44 ` Miklos Szeredi
  0 siblings, 1 reply; 3+ messages in thread
From: asomers @ 2019-08-19 17:10 UTC (permalink / raw)
  To: Miklos Szeredi, linux-fsdevel, Nikolaus; +Cc: Alan Somers

From: Alan Somers <asomers@FreeBSD.org>

Retroactively add changelog entry for FUSE protocols 7.1 through 7.8.

Signed-off-by: Alan Somers <asomers@FreeBSD.org>
---
 include/uapi/linux/fuse.h | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/include/uapi/linux/fuse.h b/include/uapi/linux/fuse.h
index 19fb55e3c73e..93784c4509a1 100644
--- a/include/uapi/linux/fuse.h
+++ b/include/uapi/linux/fuse.h
@@ -38,6 +38,44 @@
  *
  * Protocol changelog:
  *
+ * 7.1:
+ *  - add FUSE_SETATTR, FUSE_SYMLINK, FUSE_MKNOD, FUSE_MKDIR, FUSE_UNLINK,
+ *    FUSE_RMDIR, FUSE_RENAME, and FUSE_LINK messages
+ *  - add FUSE_OPEN, FUSE_READ, FUSE_WRITE, FUSE_RELEASE, FUSE_FSYNC, and
+ *    FUSE_FLUSH messages
+ *  - add FUSE_SETXATTR, FUSE_GETXATTR, FUSE_LISTXATTR, and FUSE_REMOVEXATTR
+ *    messages
+ *  - add padding to messages to accomodate 32-bit servers on 64-bit kernels
+ *  - add FUSE_OPENDIR, FUSE_READDIR, and FUSE_RELEASEDIR messages
+ *
+ * 7.2:
+ *  - add FOPEN_DIRECT_IO and FOPEN_KEEP_CACHE flags
+ *  - add FUSE_FSYNCDIR message
+ *
+ * 7.3:
+ *  - add FUSE_ACCESS message
+ *  - add FUSE_CREATE message
+ *  - add filehandle to fuse_setattr_in
+ *
+ * 7.4:
+ *  - add frsize to fuse_kstatfs
+ *  - clean up request size limit checking
+ *
+ * 7.5:
+ *  - add flags and max_write to fuse_init_out
+ *
+ * 7.6:
+ *  - add max_readahead to fuse_init_in and fuse_init_out
+ *
+ * 7.7:
+ *  - add FUSE_INTERRUPT message
+ *  - add POSIX file lock support
+ *
+ * 7.8:
+ *  - add lock_owner and flags fields to fuse_release_in
+ *  - add FUSE_BMAP message
+ *  - add FUSE_DESTROY message
+ *
  * 7.9:
  *  - new fuse_getattr_in input argument of GETATTR
  *  - add lk_flags in fuse_lk_in
-- 
2.21.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] fuse: Add changelog entries for protocols 7.1-7.8
  2019-08-19 17:10 [PATCH] fuse: Add changelog entries for protocols 7.1-7.8 asomers
@ 2019-10-03  7:44 ` Miklos Szeredi
  0 siblings, 0 replies; 3+ messages in thread
From: Miklos Szeredi @ 2019-10-03  7:44 UTC (permalink / raw)
  To: Alan Somers; +Cc: linux-fsdevel, Nikolaus Rath

On Mon, Aug 19, 2019 at 7:11 PM <asomers@freebsd.org> wrote:
>
> From: Alan Somers <asomers@FreeBSD.org>
>
> Retroactively add changelog entry for FUSE protocols 7.1 through 7.8.

Thanks, applied.

Miklos

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH] fuse: Add changelog entries for protocols 7.1-7.8
@ 2019-08-01 14:06 asomers
  0 siblings, 0 replies; 3+ messages in thread
From: asomers @ 2019-08-01 14:06 UTC (permalink / raw)
  To: Miklos Szeredi, linux-fsdevel, Nikolaus; +Cc: Alan Somers

From: Alan Somers <asomers@FreeBSD.org>

Retroactively add changelog entry for FUSE protocols 7.1 through 7.8.

Signed-off-by: Alan Somers <asomers@FreeBSD.org>
---
 include/uapi/linux/fuse.h | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/include/uapi/linux/fuse.h b/include/uapi/linux/fuse.h
index 19fb55e3c73e..93784c4509a1 100644
--- a/include/uapi/linux/fuse.h
+++ b/include/uapi/linux/fuse.h
@@ -38,6 +38,44 @@
  *
  * Protocol changelog:
  *
+ * 7.1:
+ *  - add FUSE_SETATTR, FUSE_SYMLINK, FUSE_MKNOD, FUSE_MKDIR, FUSE_UNLINK,
+ *    FUSE_RMDIR, FUSE_RENAME, and FUSE_LINK messages
+ *  - add FUSE_OPEN, FUSE_READ, FUSE_WRITE, FUSE_RELEASE, FUSE_FSYNC, and
+ *    FUSE_FLUSH messages
+ *  - add FUSE_SETXATTR, FUSE_GETXATTR, FUSE_LISTXATTR, and FUSE_REMOVEXATTR
+ *    messages
+ *  - add padding to messages to accomodate 32-bit servers on 64-bit kernels
+ *  - add FUSE_OPENDIR, FUSE_READDIR, and FUSE_RELEASEDIR messages
+ *
+ * 7.2:
+ *  - add FOPEN_DIRECT_IO and FOPEN_KEEP_CACHE flags
+ *  - add FUSE_FSYNCDIR message
+ *
+ * 7.3:
+ *  - add FUSE_ACCESS message
+ *  - add FUSE_CREATE message
+ *  - add filehandle to fuse_setattr_in
+ *
+ * 7.4:
+ *  - add frsize to fuse_kstatfs
+ *  - clean up request size limit checking
+ *
+ * 7.5:
+ *  - add flags and max_write to fuse_init_out
+ *
+ * 7.6:
+ *  - add max_readahead to fuse_init_in and fuse_init_out
+ *
+ * 7.7:
+ *  - add FUSE_INTERRUPT message
+ *  - add POSIX file lock support
+ *
+ * 7.8:
+ *  - add lock_owner and flags fields to fuse_release_in
+ *  - add FUSE_BMAP message
+ *  - add FUSE_DESTROY message
+ *
  * 7.9:
  *  - new fuse_getattr_in input argument of GETATTR
  *  - add lk_flags in fuse_lk_in
-- 
2.21.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-10-03  7:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-19 17:10 [PATCH] fuse: Add changelog entries for protocols 7.1-7.8 asomers
2019-10-03  7:44 ` Miklos Szeredi
  -- strict thread matches above, loose matches on Subject: below --
2019-08-01 14:06 asomers

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).