a9076e
diff --git a/src/plugins/kbd.c b/src/plugins/kbd.c
a9076e
index a2908ec..97abd3b 100644
a9076e
--- a/src/plugins/kbd.c
a9076e
+++ b/src/plugins/kbd.c
a9076e
@@ -732,6 +732,10 @@ static gboolean wait_for_file (const char *filename) {
a9076e
  *
a9076e
  * Tech category: %BD_KBD_TECH_BCACHE-%BD_KBD_TECH_MODE_CREATE
a9076e
  */
a9076e
+/* This triggers a known false positive warning in gcc-11.  It's being
a9076e
+   addressed upstream, but until the fix is available, this works around
a9076e
+   the false positive.  */
a9076e
+__attribute__ ((optimize ("-O1")))
a9076e
 gboolean bd_kbd_bcache_create (const gchar *backing_device, const gchar *cache_device, const BDExtraArg **extra, const gchar **bcache_device, GError **error) {
a9076e
     const gchar *argv[6] = {"make-bcache", "-B", backing_device, "-C", cache_device, NULL};
a9076e
     gboolean success = FALSE;