From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: Dave Carey <carvsdriver@gmail.com>
Cc: platform-driver-x86@vger.kernel.org, hdegoede@redhat.com,
W_Armin@gmx.de, jikos@kernel.org, linux-input@vger.kernel.org,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v14 0/2] Lenovo Yoga Book 9 keyboard dock detection
Date: Fri, 24 Jul 2026 14:42:52 +0300 (EEST) [thread overview]
Message-ID: <10e5c25d-7fc8-5db8-e8d3-b76c5d413acd@linux.intel.com> (raw)
In-Reply-To: <20260722201659.874469-1-carvsdriver@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2937 bytes --]
On Wed, 22 Jul 2026, Dave Carey wrote:
> Changes in v14 (addressing Ilpo Järvinen's v13 review of patch 2/2):
>
> - Restore #include <linux/compiler_attributes.h> and <linux/spinlock.h>,
> which were accidentally absent from v13.
> - Restore spinlock_t lock in struct yb9_kbdock_data, spin_lock_init(),
> and spin_lock/spin_unlock around input_report_switch + input_sync
> in yb9_kbdock_report().
> - Restore pointer-out yb9_kbdock_query(d, u32 *bkbd) and removal of
> zero-initializer from struct wmi_buffer out.
> - Restore int return from yb9_kbdock_sync() and error propagation in
> yb9_kbdock_resume() and yb9_kbdock_block_probe().
Hi,
Unfortunately, this still seems to miss one non-cosmetic change (diff of
diffs, v12 vs v14):
diff --git a/drivers/platform/x86/lenovo/yb9-kbdock.c b/drivers/platform/x86/lenovo/yb9>
new file mode 100644
-index 0000000..0000000
+index 0000000..40a2566
--- /dev/null
+++ b/drivers/platform/x86/lenovo/yb9-kbdock.c
-@@ -0,0 +1,322 @@
+@@ -0,0 +1,324 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Lenovo Yoga Book 9 keyboard-dock detection
@@ -421,8 +449,10 @@
+ /*
+ * _WED(0xEB) returns EC.BKBD directly as a 32-bit integer
+ * (LENOVO_BTKBD_EVENT WmiDataId(1) uint32 Status).
-+ * Short-buffer guard is handled by .min_event_size below.
+ */
++ if (!data || data->length < sizeof(__le32))
++ return;
++
+ u32 bkbd = le32_to_cpu(*(const __le32 *)data->data);
+
+ blocking_notifier_call_chain(&yb9_kbdock_chain_head, bkbd, NULL);
@@ -441,7 +471,6 @@
+ .id_table = yb9_kbdock_event_id_table,
+ .no_singleton = true,
+ .notify_new = yb9_kbdock_notify_new,
-+ .min_event_size = sizeof(__le32),
+};
+
+/* ------------------------------------------------------------------
> Changes in v13:
[...snip...]
> Changes in v10 (addressing Armin Wolf's v9 review of patch 2/2):
[...snip...]
> - yb9_kbdock_notify_new(): drop manual length check; use
> .min_event_size = sizeof(__le32) in struct wmi_driver instead
>
> Patch 1/2 (lenovo-ymc) is unchanged from v9.
...And there's no need to apologize. :-)
I personally keep earlier versions of the patches I've sent myself around
as files so I can easily do diff-of-diffs against the previous version. It
has saved me sooo many time from making fool of myself.
I actually normally write the patch version history bullets based on that
diff so I won't forget anything important from it. Nor hallucinate some
changes that I thought I'd made but didn't (=> back to the drawing board).
If you need the old version you can probably get them from lore archive if
you don't have them around anymore (but by not placing them cleanly into
own threads one needs to be careful to get the right ones).
--
i.
prev parent reply other threads:[~2026-07-24 11:43 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-22 20:16 [PATCH v14 0/2] Lenovo Yoga Book 9 keyboard dock detection Dave Carey
2026-07-22 20:16 ` [PATCH v14 1/2] platform/x86/lenovo: lenovo-ymc: Suppress probe on Yoga Book 9 14IAH10 Dave Carey
2026-07-22 20:16 ` [PATCH v14 2/2] platform/x86/lenovo: Add Yoga Book 9 keyboard dock detection driver Dave Carey
2026-07-24 11:42 ` Ilpo Järvinen [this message]
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=10e5c25d-7fc8-5db8-e8d3-b76c5d413acd@linux.intel.com \
--to=ilpo.jarvinen@linux.intel.com \
--cc=W_Armin@gmx.de \
--cc=carvsdriver@gmail.com \
--cc=hdegoede@redhat.com \
--cc=jikos@kernel.org \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=platform-driver-x86@vger.kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox