Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1471805
| From | Arnd Bergmann <arnd@arndb.de> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2] crypto: hide unused label |
| Date | 2016-08-29 14:50 +0200 |
| Message-ID | <sbuaK-7mV-11@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
A recent change left an existing label unused in some configurations,
as seen from a gcc warning:
crypto/xor.c: In function 'calibrate_xor_blocks':
crypto/xor.c:156:1: error: label 'out' defined but not used [-Werror=unused-label]
This adds an #ifdef around it to match the one around the respective "goto".
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 39457acda913 ("crypto: xor - skip speed test if the xor function is selected automatically")
---
v2: add proper changelog, sorry for missing that at first.
---
crypto/xor.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/crypto/xor.c b/crypto/xor.c
index b8975d92cd94..1817015381ef 100644
--- a/crypto/xor.c
+++ b/crypto/xor.c
@@ -153,7 +153,9 @@ calibrate_xor_blocks(void)
#undef xor_speed
free_pages((unsigned long)b1, 2);
+#ifdef XOR_SELECT_TEMPLATE
out:
+#endif
active_template = fastest;
return 0;
}
--
2.9.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v2] crypto: hide unused label Arnd Bergmann <arnd@arndb.de> - 2016-08-29 14:50 +0200
Re: [PATCH v2] crypto: hide unused label Herbert Xu <herbert@gondor.apana.org.au> - 2016-08-31 16:40 +0200
Re: [PATCH v2] crypto: hide unused label Arnd Bergmann <arnd@arndb.de> - 2016-08-31 16:50 +0200
csiph-web