lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Fri, 3 Jan 2014 21:28:00 -0800 From: Dmitry Torokhov <dmitry.torokhov@...il.com> To: linux-input@...r.kernel.org Cc: Andrey Smirnov <andrew.smirnov@...il.com>, linux-kernel@...r.kernel.org Subject: [PATCH] Input: ims-pcu - remove unneeded get_unaligned_xxx pcu->cmd_buf[IMS_PCU_DATA_OFFSET] is word aligned so we do not need to use get_unaligned_le16 to access it. Also let's add build time check to make sure it stays aligned. Signed-off-by: Dmitry Torokhov <dmitry.torokhov@...il.com> --- drivers/input/misc/ims-pcu.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/drivers/input/misc/ims-pcu.c b/drivers/input/misc/ims-pcu.c index 513ecdf..b8f1029 100644 --- a/drivers/input/misc/ims-pcu.c +++ b/drivers/input/misc/ims-pcu.c @@ -116,6 +116,8 @@ struct ims_pcu { bool setup_complete; /* Input and LED devices have been created */ }; +#define IMS_PCU_CHECK_CMD_BUF_ALIGNMENT(offset, alignment) \ + IS_ALIGNED(offsetof(struct ims_pcu, cmd_buf[offset]), alignment) /********************************************************************* * Buttons Input device support * @@ -999,8 +1001,10 @@ ims_pcu_backlight_get_brightness(struct led_classdev *cdev) /* Assume the LED is OFF */ brightness = LED_OFF; } else { - brightness = - get_unaligned_le16(&pcu->cmd_buf[IMS_PCU_DATA_OFFSET]); + BUILD_BUG_ON(!IMS_PCU_CHECK_CMD_BUF_ALIGNMENT( + IMS_PCU_DATA_OFFSET, 2)); + brightness = le16_to_cpup( + (__le16 *)&pcu->cmd_buf[IMS_PCU_DATA_OFFSET]); } mutex_unlock(&pcu->cmd_mutex); -- 1.8.4.2 -- Dmitry -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists