All of lore.kernel.org
 help / color / mirror / Atom feed
* [Virtio-fs] [PATCH] virtiofsd: Change FUSE_MAP_ALIGNMENT bit position for 5.3 kernel
@ 2019-08-07 21:10 Vivek Goyal
  2019-08-08  8:33 ` Stefan Hajnoczi
  2019-08-08  9:10 ` Dr. David Alan Gilbert
  0 siblings, 2 replies; 3+ messages in thread
From: Vivek Goyal @ 2019-08-07 21:10 UTC (permalink / raw)
  To: virtio-fs-list

Due to rebase to 5.3-rc kernel, change bit position of FUSE_MAP_ALIGNMENT.

Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
---
 contrib/virtiofsd/fuse_kernel.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: qemu/contrib/virtiofsd/fuse_kernel.h
===================================================================
--- qemu.orig/contrib/virtiofsd/fuse_kernel.h	2019-08-05 16:32:14.358564755 -0400
+++ qemu/contrib/virtiofsd/fuse_kernel.h	2019-08-07 16:31:27.882640763 -0400
@@ -292,7 +292,7 @@ struct fuse_file_lock {
 #define FUSE_MAX_PAGES		(1 << 22)
 #define FUSE_CACHE_SYMLINKS	(1 << 23)
 #define FUSE_NO_OPENDIR_SUPPORT (1 << 24)
-#define FUSE_MAP_ALIGNMENT      (1 << 25)
+#define FUSE_MAP_ALIGNMENT      (1 << 26)
 
 /**
  * CUSE INIT request/reply flags


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

* Re: [Virtio-fs] [PATCH] virtiofsd: Change FUSE_MAP_ALIGNMENT bit position for 5.3 kernel
  2019-08-07 21:10 [Virtio-fs] [PATCH] virtiofsd: Change FUSE_MAP_ALIGNMENT bit position for 5.3 kernel Vivek Goyal
@ 2019-08-08  8:33 ` Stefan Hajnoczi
  2019-08-08  9:10 ` Dr. David Alan Gilbert
  1 sibling, 0 replies; 3+ messages in thread
From: Stefan Hajnoczi @ 2019-08-08  8:33 UTC (permalink / raw)
  To: Vivek Goyal; +Cc: virtio-fs-list

[-- Attachment #1: Type: text/plain, Size: 1111 bytes --]

On Wed, Aug 07, 2019 at 05:10:57PM -0400, Vivek Goyal wrote:
> Due to rebase to 5.3-rc kernel, change bit position of FUSE_MAP_ALIGNMENT.
> 
> Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
> ---
>  contrib/virtiofsd/fuse_kernel.h |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Index: qemu/contrib/virtiofsd/fuse_kernel.h
> ===================================================================
> --- qemu.orig/contrib/virtiofsd/fuse_kernel.h	2019-08-05 16:32:14.358564755 -0400
> +++ qemu/contrib/virtiofsd/fuse_kernel.h	2019-08-07 16:31:27.882640763 -0400
> @@ -292,7 +292,7 @@ struct fuse_file_lock {
>  #define FUSE_MAX_PAGES		(1 << 22)
>  #define FUSE_CACHE_SYMLINKS	(1 << 23)
>  #define FUSE_NO_OPENDIR_SUPPORT (1 << 24)
> -#define FUSE_MAP_ALIGNMENT      (1 << 25)
> +#define FUSE_MAP_ALIGNMENT      (1 << 26)
>  
>  /**
>   * CUSE INIT request/reply flags
> 
> _______________________________________________
> Virtio-fs mailing list
> Virtio-fs@redhat.com
> https://www.redhat.com/mailman/listinfo/virtio-fs

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [Virtio-fs] [PATCH] virtiofsd: Change FUSE_MAP_ALIGNMENT bit position for 5.3 kernel
  2019-08-07 21:10 [Virtio-fs] [PATCH] virtiofsd: Change FUSE_MAP_ALIGNMENT bit position for 5.3 kernel Vivek Goyal
  2019-08-08  8:33 ` Stefan Hajnoczi
@ 2019-08-08  9:10 ` Dr. David Alan Gilbert
  1 sibling, 0 replies; 3+ messages in thread
From: Dr. David Alan Gilbert @ 2019-08-08  9:10 UTC (permalink / raw)
  To: Vivek Goyal; +Cc: virtio-fs-list

* Vivek Goyal (vgoyal@redhat.com) wrote:
> Due to rebase to 5.3-rc kernel, change bit position of FUSE_MAP_ALIGNMENT.

Thanks,
yes this matches the position I sent upstream last week:
https://lore.kernel.org/linux-fsdevel/20190802171521.21807-4-dgilbert@redhat.com/

I've squashed it into 'virtiofsd: add map_alignment to fuse_kernel.h'

Dave

> Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
> ---
>  contrib/virtiofsd/fuse_kernel.h |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Index: qemu/contrib/virtiofsd/fuse_kernel.h
> ===================================================================
> --- qemu.orig/contrib/virtiofsd/fuse_kernel.h	2019-08-05 16:32:14.358564755 -0400
> +++ qemu/contrib/virtiofsd/fuse_kernel.h	2019-08-07 16:31:27.882640763 -0400
> @@ -292,7 +292,7 @@ struct fuse_file_lock {
>  #define FUSE_MAX_PAGES		(1 << 22)
>  #define FUSE_CACHE_SYMLINKS	(1 << 23)
>  #define FUSE_NO_OPENDIR_SUPPORT (1 << 24)
> -#define FUSE_MAP_ALIGNMENT      (1 << 25)
> +#define FUSE_MAP_ALIGNMENT      (1 << 26)
>  
>  /**
>   * CUSE INIT request/reply flags
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK


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

end of thread, other threads:[~2019-08-08  9:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-07 21:10 [Virtio-fs] [PATCH] virtiofsd: Change FUSE_MAP_ALIGNMENT bit position for 5.3 kernel Vivek Goyal
2019-08-08  8:33 ` Stefan Hajnoczi
2019-08-08  9:10 ` Dr. David Alan Gilbert

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.