All of lore.kernel.org
 help / color / mirror / Atom feed
* [PULL for-7.1 0/1] Block patches
@ 2022-08-04 19:02 ` Stefan Hajnoczi
  0 siblings, 0 replies; 6+ messages in thread
From: Stefan Hajnoczi @ 2022-08-04 19:02 UTC (permalink / raw)
  To: qemu-devel
  Cc: Dr. David Alan Gilbert, qemu-block, Richard Henderson, virtio-fs,
	Stefan Hajnoczi

The following changes since commit 2480f3bbd03814b0651a1f74959f5c6631ee5819:

  Merge tag 'linux-user-for-7.1-pull-request' of https://gitlab.com/laurent_vivier/qemu into staging (2022-08-03 08:32:44 -0700)

are available in the Git repository at:

  https://gitlab.com/stefanha/qemu.git tags/block-pull-request

for you to fetch changes up to 7b0ca313647532a2c7007379ff800c9a2415c95d:

  virtiofsd: Fix format strings (2022-08-04 14:44:25 -0400)

----------------------------------------------------------------
Pull request

- Format string portability fix in virtiofsd

----------------------------------------------------------------

Stefan Weil (1):
  virtiofsd: Fix format strings

 tools/virtiofsd/fuse_lowlevel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
2.37.1



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

* [Virtio-fs] [PULL for-7.1 0/1] Block patches
@ 2022-08-04 19:02 ` Stefan Hajnoczi
  0 siblings, 0 replies; 6+ messages in thread
From: Stefan Hajnoczi @ 2022-08-04 19:02 UTC (permalink / raw)
  To: qemu-devel
  Cc: Dr. David Alan Gilbert, qemu-block, Richard Henderson, virtio-fs,
	Stefan Hajnoczi

The following changes since commit 2480f3bbd03814b0651a1f74959f5c6631ee5819:

  Merge tag 'linux-user-for-7.1-pull-request' of https://gitlab.com/laurent_vivier/qemu into staging (2022-08-03 08:32:44 -0700)

are available in the Git repository at:

  https://gitlab.com/stefanha/qemu.git tags/block-pull-request

for you to fetch changes up to 7b0ca313647532a2c7007379ff800c9a2415c95d:

  virtiofsd: Fix format strings (2022-08-04 14:44:25 -0400)

----------------------------------------------------------------
Pull request

- Format string portability fix in virtiofsd

----------------------------------------------------------------

Stefan Weil (1):
  virtiofsd: Fix format strings

 tools/virtiofsd/fuse_lowlevel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
2.37.1


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

* [PULL for-7.1 1/1] virtiofsd: Fix format strings
  2022-08-04 19:02 ` [Virtio-fs] " Stefan Hajnoczi
@ 2022-08-04 19:02   ` Stefan Hajnoczi
  -1 siblings, 0 replies; 6+ messages in thread
From: Stefan Hajnoczi @ 2022-08-04 19:02 UTC (permalink / raw)
  To: qemu-devel
  Cc: Dr. David Alan Gilbert, qemu-block, Richard Henderson, virtio-fs,
	Stefan Hajnoczi, Stefan Weil

From: Stefan Weil <sw@weilnetz.de>

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Message-Id: <20220804074833.892604-1-sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 tools/virtiofsd/fuse_lowlevel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/virtiofsd/fuse_lowlevel.c b/tools/virtiofsd/fuse_lowlevel.c
index 752928741d..2f08471627 100644
--- a/tools/virtiofsd/fuse_lowlevel.c
+++ b/tools/virtiofsd/fuse_lowlevel.c
@@ -2025,7 +2025,7 @@ static void do_init(fuse_req_t req, fuse_ino_t nodeid,
 
     fuse_log(FUSE_LOG_DEBUG, "INIT: %u.%u\n", arg->major, arg->minor);
     if (arg->major == 7 && arg->minor >= 6) {
-        fuse_log(FUSE_LOG_DEBUG, "flags=0x%016llx\n", flags);
+        fuse_log(FUSE_LOG_DEBUG, "flags=0x%016" PRIx64 "\n", flags);
         fuse_log(FUSE_LOG_DEBUG, "max_readahead=0x%08x\n", arg->max_readahead);
     }
     se->conn.proto_major = arg->major;
@@ -2174,7 +2174,7 @@ static void do_init(fuse_req_t req, fuse_ino_t nodeid,
     if (se->conn.want & (~se->conn.capable)) {
         fuse_log(FUSE_LOG_ERR,
                  "fuse: error: filesystem requested capabilities "
-                 "0x%llx that are not supported by kernel, aborting.\n",
+                 "0x%" PRIx64 " that are not supported by kernel, aborting.\n",
                  se->conn.want & (~se->conn.capable));
         fuse_reply_err(req, EPROTO);
         se->error = -EPROTO;
-- 
2.37.1



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

* [Virtio-fs] [PULL for-7.1 1/1] virtiofsd: Fix format strings
@ 2022-08-04 19:02   ` Stefan Hajnoczi
  0 siblings, 0 replies; 6+ messages in thread
From: Stefan Hajnoczi @ 2022-08-04 19:02 UTC (permalink / raw)
  To: qemu-devel
  Cc: Dr. David Alan Gilbert, qemu-block, Richard Henderson, virtio-fs,
	Stefan Hajnoczi, Stefan Weil

From: Stefan Weil <sw@weilnetz.de>

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Message-Id: <20220804074833.892604-1-sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 tools/virtiofsd/fuse_lowlevel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/virtiofsd/fuse_lowlevel.c b/tools/virtiofsd/fuse_lowlevel.c
index 752928741d..2f08471627 100644
--- a/tools/virtiofsd/fuse_lowlevel.c
+++ b/tools/virtiofsd/fuse_lowlevel.c
@@ -2025,7 +2025,7 @@ static void do_init(fuse_req_t req, fuse_ino_t nodeid,
 
     fuse_log(FUSE_LOG_DEBUG, "INIT: %u.%u\n", arg->major, arg->minor);
     if (arg->major == 7 && arg->minor >= 6) {
-        fuse_log(FUSE_LOG_DEBUG, "flags=0x%016llx\n", flags);
+        fuse_log(FUSE_LOG_DEBUG, "flags=0x%016" PRIx64 "\n", flags);
         fuse_log(FUSE_LOG_DEBUG, "max_readahead=0x%08x\n", arg->max_readahead);
     }
     se->conn.proto_major = arg->major;
@@ -2174,7 +2174,7 @@ static void do_init(fuse_req_t req, fuse_ino_t nodeid,
     if (se->conn.want & (~se->conn.capable)) {
         fuse_log(FUSE_LOG_ERR,
                  "fuse: error: filesystem requested capabilities "
-                 "0x%llx that are not supported by kernel, aborting.\n",
+                 "0x%" PRIx64 " that are not supported by kernel, aborting.\n",
                  se->conn.want & (~se->conn.capable));
         fuse_reply_err(req, EPROTO);
         se->error = -EPROTO;
-- 
2.37.1


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

* Re: [PULL for-7.1 0/1] Block patches
  2022-08-04 19:02 ` [Virtio-fs] " Stefan Hajnoczi
@ 2022-08-05  0:20   ` Richard Henderson
  -1 siblings, 0 replies; 6+ messages in thread
From: Richard Henderson @ 2022-08-05  0:20 UTC (permalink / raw)
  To: Stefan Hajnoczi, qemu-devel; +Cc: Dr. David Alan Gilbert, qemu-block, virtio-fs

On 8/4/22 12:02, Stefan Hajnoczi wrote:
> The following changes since commit 2480f3bbd03814b0651a1f74959f5c6631ee5819:
> 
>    Merge tag 'linux-user-for-7.1-pull-request' of https://gitlab.com/laurent_vivier/qemu into staging (2022-08-03 08:32:44 -0700)
> 
> are available in the Git repository at:
> 
>    https://gitlab.com/stefanha/qemu.git tags/block-pull-request
> 
> for you to fetch changes up to 7b0ca313647532a2c7007379ff800c9a2415c95d:
> 
>    virtiofsd: Fix format strings (2022-08-04 14:44:25 -0400)
> 
> ----------------------------------------------------------------
> Pull request
> 
> - Format string portability fix in virtiofsd


Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/7.1 as appropriate.


r~


> 
> ----------------------------------------------------------------
> 
> Stefan Weil (1):
>    virtiofsd: Fix format strings
> 
>   tools/virtiofsd/fuse_lowlevel.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 



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

* Re: [Virtio-fs] [PULL for-7.1 0/1] Block patches
@ 2022-08-05  0:20   ` Richard Henderson
  0 siblings, 0 replies; 6+ messages in thread
From: Richard Henderson @ 2022-08-05  0:20 UTC (permalink / raw)
  To: Stefan Hajnoczi, qemu-devel; +Cc: Dr. David Alan Gilbert, qemu-block, virtio-fs

On 8/4/22 12:02, Stefan Hajnoczi wrote:
> The following changes since commit 2480f3bbd03814b0651a1f74959f5c6631ee5819:
> 
>    Merge tag 'linux-user-for-7.1-pull-request' of https://gitlab.com/laurent_vivier/qemu into staging (2022-08-03 08:32:44 -0700)
> 
> are available in the Git repository at:
> 
>    https://gitlab.com/stefanha/qemu.git tags/block-pull-request
> 
> for you to fetch changes up to 7b0ca313647532a2c7007379ff800c9a2415c95d:
> 
>    virtiofsd: Fix format strings (2022-08-04 14:44:25 -0400)
> 
> ----------------------------------------------------------------
> Pull request
> 
> - Format string portability fix in virtiofsd


Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/7.1 as appropriate.


r~


> 
> ----------------------------------------------------------------
> 
> Stefan Weil (1):
>    virtiofsd: Fix format strings
> 
>   tools/virtiofsd/fuse_lowlevel.c | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 


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

end of thread, other threads:[~2022-08-05  0:21 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-04 19:02 [PULL for-7.1 0/1] Block patches Stefan Hajnoczi
2022-08-04 19:02 ` [Virtio-fs] " Stefan Hajnoczi
2022-08-04 19:02 ` [PULL for-7.1 1/1] virtiofsd: Fix format strings Stefan Hajnoczi
2022-08-04 19:02   ` [Virtio-fs] " Stefan Hajnoczi
2022-08-05  0:20 ` [PULL for-7.1 0/1] Block patches Richard Henderson
2022-08-05  0:20   ` [Virtio-fs] " Richard Henderson

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.