[SeaBIOS] [PATCH] nvme: fix missing newline on sq full print

Alex Martens via SeaBIOS posted 1 patch 2 years, 9 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/seabios tags/patchew/D4ooB3C2RlrSFWpMqV80Gi16QmJDmi3g8FmsEVORlQ@cp7-web-044.plabs.ch
src/hw/nvme.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[SeaBIOS] [PATCH] nvme: fix missing newline on sq full print
Posted by Alex Martens via SeaBIOS 2 years, 9 months ago
Signed-off-by: Alex Martens <alexmgit@protonmail.com>
---
 src/hw/nvme.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/hw/nvme.c b/src/hw/nvme.c
index 746e468..f035fa2 100644
--- a/src/hw/nvme.c
+++ b/src/hw/nvme.c
@@ -155,7 +155,7 @@ static struct nvme_sqe *
 nvme_get_next_sqe(struct nvme_sq *sq, u8 opc, void *metadata, void *data, void *data2)
 {
     if (((sq->head + 1) & sq->common.mask) == sq->tail) {
-        dprintf(3, "submission queue is full");
+        dprintf(3, "submission queue is full\n");
         return NULL;
     }
 
-- 
2.31.1


_______________________________________________
SeaBIOS mailing list -- seabios@seabios.org
To unsubscribe send an email to seabios-leave@seabios.org
[SeaBIOS] Re: [PATCH] nvme: fix missing newline on sq full print
Posted by Kevin O'Connor 2 years, 9 months ago
On Sat, Jun 26, 2021 at 10:13:40PM +0000, Alex Martens via SeaBIOS wrote:
> Signed-off-by: Alex Martens <alexmgit@protonmail.com>

Thanks.  I committed this change.

-Kevin
_______________________________________________
SeaBIOS mailing list -- seabios@seabios.org
To unsubscribe send an email to seabios-leave@seabios.org