All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [0 0/2] Block patches
@ 2018-10-29 13:41 Stefan Hajnoczi
  2018-10-29 13:41 ` [Qemu-devel] [0 1/2] util: aio-posix: fix a typo Stefan Hajnoczi
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2018-10-29 13:41 UTC (permalink / raw)
  To: qemu-devel
  Cc: Kevin Wolf, Max Reitz, Fam Zheng, Peter Maydell, Stefan Hajnoczi,
	qemu-block

The following changes since commit 285278ca785f5fa9a570927e1c0958a2ca2b2150:

  Merge remote-tracking branch 'remotes/famz/tags/testing-pull-request' into staging (2018-10-27 19:55:08 +0100)

are available in the Git repository at:

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

for you to fetch changes up to bd54b11062c4baa7d2e4efadcf71b8cfd55311fd:

  nvdimm: Add docs hint for Linux driver name (2018-10-29 13:35:22 +0000)

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

No changelog entries necessary, just small tweaks.

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

Kees Cook (1):
  nvdimm: Add docs hint for Linux driver name

Li Qiang (1):
  util: aio-posix: fix a typo

 docs/nvdimm.txt  | 5 +++--
 util/aio-posix.c | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

-- 
2.17.2

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

* [Qemu-devel] [0 1/2] util: aio-posix: fix a typo
  2018-10-29 13:41 [Qemu-devel] [0 0/2] Block patches Stefan Hajnoczi
@ 2018-10-29 13:41 ` Stefan Hajnoczi
  2018-10-29 13:41 ` [Qemu-devel] [0 2/2] nvdimm: Add docs hint for Linux driver name Stefan Hajnoczi
  2018-10-29 13:55 ` [Qemu-devel] [0 0/2] Block patches Stefan Hajnoczi
  2 siblings, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2018-10-29 13:41 UTC (permalink / raw)
  To: qemu-devel
  Cc: Kevin Wolf, Max Reitz, Fam Zheng, Peter Maydell, Stefan Hajnoczi,
	qemu-block, Li Qiang, qemu-trivial

From: Li Qiang <liq3ea@gmail.com>

Cc: qemu-trivial@nongnu.org
Signed-off-by: Li Qiang <liq3ea@gmail.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Fam Zheng <famz@redhat.com>
Message-id: 1538964972-3223-1-git-send-email-liq3ea@gmail.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 util/aio-posix.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/aio-posix.c b/util/aio-posix.c
index 621b3025d8..51c41ed3c9 100644
--- a/util/aio-posix.c
+++ b/util/aio-posix.c
@@ -40,7 +40,7 @@ struct AioHandler
 
 #ifdef CONFIG_EPOLL_CREATE1
 
-/* The fd number threashold to switch to epoll */
+/* The fd number threshold to switch to epoll */
 #define EPOLL_ENABLE_THRESHOLD 64
 
 static void aio_epoll_disable(AioContext *ctx)
-- 
2.17.2

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

* [Qemu-devel] [0 2/2] nvdimm: Add docs hint for Linux driver name
  2018-10-29 13:41 [Qemu-devel] [0 0/2] Block patches Stefan Hajnoczi
  2018-10-29 13:41 ` [Qemu-devel] [0 1/2] util: aio-posix: fix a typo Stefan Hajnoczi
@ 2018-10-29 13:41 ` Stefan Hajnoczi
  2018-10-29 13:55 ` [Qemu-devel] [0 0/2] Block patches Stefan Hajnoczi
  2 siblings, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2018-10-29 13:41 UTC (permalink / raw)
  To: qemu-devel
  Cc: Kevin Wolf, Max Reitz, Fam Zheng, Peter Maydell, Stefan Hajnoczi,
	qemu-block, Kees Cook

From: Kees Cook <keescook@chromium.org>

I spent way too much time trying to figure out why the emulated NVDIMM
was missing under Linux. In an effort to help others who might be looking
for these kinds of things in the future, include a hint.

Signed-off-by: Kees Cook <keescook@chromium.org>
Message-id: 20181018201351.GA25286@beast
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 docs/nvdimm.txt | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/docs/nvdimm.txt b/docs/nvdimm.txt
index 5f158a6170..7231c2d78f 100644
--- a/docs/nvdimm.txt
+++ b/docs/nvdimm.txt
@@ -49,8 +49,9 @@ Multiple vNVDIMM devices can be created if multiple pairs of "-object"
 and "-device" are provided.
 
 For above command line options, if the guest OS has the proper NVDIMM
-driver, it should be able to detect a NVDIMM device which is in the
-persistent memory mode and whose size is $NVDIMM_SIZE.
+driver (e.g. "CONFIG_ACPI_NFIT=y" under Linux), it should be able to
+detect a NVDIMM device which is in the persistent memory mode and whose
+size is $NVDIMM_SIZE.
 
 Note:
 
-- 
2.17.2

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

* Re: [Qemu-devel] [0 0/2] Block patches
  2018-10-29 13:41 [Qemu-devel] [0 0/2] Block patches Stefan Hajnoczi
  2018-10-29 13:41 ` [Qemu-devel] [0 1/2] util: aio-posix: fix a typo Stefan Hajnoczi
  2018-10-29 13:41 ` [Qemu-devel] [0 2/2] nvdimm: Add docs hint for Linux driver name Stefan Hajnoczi
@ 2018-10-29 13:55 ` Stefan Hajnoczi
  2 siblings, 0 replies; 4+ messages in thread
From: Stefan Hajnoczi @ 2018-10-29 13:55 UTC (permalink / raw)
  To: Stefan Hajnoczi
  Cc: qemu-devel, Kevin Wolf, Peter Maydell, Fam Zheng, qemu block, Max Reitz

Sorry, this pull request came out wrong.  I will resend.

Stefan

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

end of thread, other threads:[~2018-10-29 13:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-29 13:41 [Qemu-devel] [0 0/2] Block patches Stefan Hajnoczi
2018-10-29 13:41 ` [Qemu-devel] [0 1/2] util: aio-posix: fix a typo Stefan Hajnoczi
2018-10-29 13:41 ` [Qemu-devel] [0 2/2] nvdimm: Add docs hint for Linux driver name Stefan Hajnoczi
2018-10-29 13:55 ` [Qemu-devel] [0 0/2] Block patches Stefan Hajnoczi

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.