From: Yann E. MORIN <yann.morin.1998@free.fr>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 1/1] libiscsi: fix build failures due to warnings
Date: Sat, 10 Nov 2018 08:59:05 +0100 [thread overview]
Message-ID: <20181110075905.GC2445@scaer> (raw)
In-Reply-To: <20181109175740.28258-1-fontaine.fabrice@gmail.com>
Fabrice, All,
On 2018-11-09 18:57 +0100, Fabrice Fontaine spake thusly:
> Retrieve two upstream patches to fix build failures due to warnings
>
> Fixes:
> - http://autobuild.buildroot.org/results/7ec1e1cc060bbdaaf758c0d55a053247b731e792
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> ...ng-message-that-includes-target-name.patch | 29 +++++++++++++++++++
> package/libiscsi/0003-avoid-fallthrough.patch | 24 +++++++++++++++
> 2 files changed, 53 insertions(+)
> create mode 100644 package/libiscsi/0002-avoid-truncation-when-logging-message-that-includes-target-name.patch
> create mode 100644 package/libiscsi/0003-avoid-fallthrough.patch
>
> diff --git a/package/libiscsi/0002-avoid-truncation-when-logging-message-that-includes-target-name.patch b/package/libiscsi/0002-avoid-truncation-when-logging-message-that-includes-target-name.patch
> new file mode 100644
> index 0000000000..1334a8352c
> --- /dev/null
> +++ b/package/libiscsi/0002-avoid-truncation-when-logging-message-that-includes-target-name.patch
> @@ -0,0 +1,29 @@
> +From bffafc1c3003c2ee05d28eaa345e5854bc36014d Mon Sep 17 00:00:00 2001
> +From: Paolo Bonzini <pbonzini@redhat.com>
> +Date: Mon, 1 Oct 2018 14:16:14 +0200
> +Subject: [PATCH] avoid truncation when logging message that includes target
> + name
> +
> +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> +[Retrieved from:
> +https://github.com/sahlberg/libiscsi/commit/bffafc1c3003c2ee05d28eaa345e5854bc36014d]
> +---
> + lib/logging.c | 4 ++--
> + 1 file changed, 2 insertions(+), 2 deletions(-)
> +
> +diff --git a/lib/logging.c b/lib/logging.c
> +index be518fc5..61c74407 100644
> +--- a/lib/logging.c
> ++++ b/lib/logging.c
> +@@ -73,9 +73,9 @@ iscsi_log_message(struct iscsi_context *iscsi, int level, const char *format, ..
> + }
> +
> + if (iscsi->target_name[0]) {
> +- static char message2[1024];
> ++ static char message2[1282];
> +
> +- snprintf(message2, 1024, "%s [%s]", message, iscsi->target_name);
> ++ snprintf(message2, 1282, "%s [%s]", message, iscsi->target_name);
> + iscsi->log_fn(level, message2);
> + }
> + else
> diff --git a/package/libiscsi/0003-avoid-fallthrough.patch b/package/libiscsi/0003-avoid-fallthrough.patch
> new file mode 100644
> index 0000000000..94f653a99c
> --- /dev/null
> +++ b/package/libiscsi/0003-avoid-fallthrough.patch
> @@ -0,0 +1,24 @@
> +From 679d0abe7c142df178a907397551c4d9695cc667 Mon Sep 17 00:00:00 2001
> +From: Paolo Bonzini <pbonzini@redhat.com>
> +Date: Mon, 1 Oct 2018 14:14:24 +0200
> +Subject: [PATCH] avoid fallthrough
> +
> +Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> +[Retrieved from:
> +https://github.com/sahlberg/libiscsi/commit/679d0abe7c142df178a907397551c4d9695cc667]
> +---
> + lib/scsi-lowlevel.c | 1 +
> + 1 file changed, 1 insertion(+)
> +
> +diff --git a/lib/scsi-lowlevel.c b/lib/scsi-lowlevel.c
> +index 5ddd709c..747ce0c4 100644
> +--- a/lib/scsi-lowlevel.c
> ++++ b/lib/scsi-lowlevel.c
> +@@ -1086,6 +1086,7 @@ scsi_maintenancein_datain_getfullsize(struct scsi_task *task)
> + (task_get_uint8(task, 1) & 0x80) ? 12 : 0 +
> + task_get_uint16(task, 2);
> + }
> ++ return -1;
> + default:
> + return -1;
> + }
> --
> 2.17.1
>
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
next prev parent reply other threads:[~2018-11-10 7:59 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-09 17:57 [Buildroot] [PATCH 1/1] libiscsi: fix build failures due to warnings Fabrice Fontaine
2018-11-10 7:59 ` Yann E. MORIN [this message]
2018-11-10 8:43 ` Peter Korsgaard
2018-11-25 22:17 ` Peter Korsgaard
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20181110075905.GC2445@scaer \
--to=yann.morin.1998@free.fr \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.