* [PATCH v2] media: cx18, ivtv: eliminate unnecessary array index checks
@ 2013-01-07 1:52 Nickolai Zeldovich
2013-01-07 2:08 ` Andy Walls
0 siblings, 1 reply; 2+ messages in thread
From: Nickolai Zeldovich @ 2013-01-07 1:52 UTC (permalink / raw)
To: Andy Walls, Mauro Carvalho Chehab
Cc: Nickolai Zeldovich, linux-kernel, linux-media
The idx values passed to cx18_i2c_register() and ivtv_i2c_register()
by cx18_init_subdevs() and ivtv_load_and_init_modules() respectively
are always in-range, based on how the hw_all bitmask is populated.
Previously, the checks were already ineffective because arrays were
being dereferenced using the index before the check.
Signed-off-by: Nickolai Zeldovich <nickolai@csail.mit.edu>
---
Thanks to Andy Walls for suggesting that instead of moving the checks
before array dereference, a better fix is to remove the checks altogether,
since they are superfluous.
drivers/media/pci/cx18/cx18-i2c.c | 3 ---
drivers/media/pci/ivtv/ivtv-i2c.c | 2 --
2 files changed, 5 deletions(-)
diff --git a/drivers/media/pci/cx18/cx18-i2c.c b/drivers/media/pci/cx18/cx18-i2c.c
index 4908eb7..ccb1d15 100644
--- a/drivers/media/pci/cx18/cx18-i2c.c
+++ b/drivers/media/pci/cx18/cx18-i2c.c
@@ -116,9 +116,6 @@ int cx18_i2c_register(struct cx18 *cx, unsigned idx)
const char *type = hw_devicenames[idx];
u32 hw = 1 << idx;
- if (idx >= ARRAY_SIZE(hw_addrs))
- return -1;
-
if (hw == CX18_HW_TUNER) {
/* special tuner group handling */
sd = v4l2_i2c_new_subdev(&cx->v4l2_dev,
diff --git a/drivers/media/pci/ivtv/ivtv-i2c.c b/drivers/media/pci/ivtv/ivtv-i2c.c
index 46e262b..bc984af 100644
--- a/drivers/media/pci/ivtv/ivtv-i2c.c
+++ b/drivers/media/pci/ivtv/ivtv-i2c.c
@@ -267,8 +267,6 @@ int ivtv_i2c_register(struct ivtv *itv, unsigned idx)
const char *type = hw_devicenames[idx];
u32 hw = 1 << idx;
- if (idx >= ARRAY_SIZE(hw_addrs))
- return -1;
if (hw == IVTV_HW_TUNER) {
/* special tuner handling */
sd = v4l2_i2c_new_subdev(&itv->v4l2_dev, adap, type, 0,
--
1.7.10.4
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH v2] media: cx18, ivtv: eliminate unnecessary array index checks
2013-01-07 1:52 [PATCH v2] media: cx18, ivtv: eliminate unnecessary array index checks Nickolai Zeldovich
@ 2013-01-07 2:08 ` Andy Walls
0 siblings, 0 replies; 2+ messages in thread
From: Andy Walls @ 2013-01-07 2:08 UTC (permalink / raw)
To: Nickolai Zeldovich, Mauro Carvalho Chehab; +Cc: linux-kernel, linux-media
Nickolai Zeldovich <nickolai@csail.mit.edu> wrote:
>The idx values passed to cx18_i2c_register() and ivtv_i2c_register()
>by cx18_init_subdevs() and ivtv_load_and_init_modules() respectively
>are always in-range, based on how the hw_all bitmask is populated.
>Previously, the checks were already ineffective because arrays were
>being dereferenced using the index before the check.
>
>Signed-off-by: Nickolai Zeldovich <nickolai@csail.mit.edu>
>---
>Thanks to Andy Walls for suggesting that instead of moving the checks
>before array dereference, a better fix is to remove the checks
>altogether,
>since they are superfluous.
>
> drivers/media/pci/cx18/cx18-i2c.c | 3 ---
> drivers/media/pci/ivtv/ivtv-i2c.c | 2 --
> 2 files changed, 5 deletions(-)
>
>diff --git a/drivers/media/pci/cx18/cx18-i2c.c
>b/drivers/media/pci/cx18/cx18-i2c.c
>index 4908eb7..ccb1d15 100644
>--- a/drivers/media/pci/cx18/cx18-i2c.c
>+++ b/drivers/media/pci/cx18/cx18-i2c.c
>@@ -116,9 +116,6 @@ int cx18_i2c_register(struct cx18 *cx, unsigned
>idx)
> const char *type = hw_devicenames[idx];
> u32 hw = 1 << idx;
>
>- if (idx >= ARRAY_SIZE(hw_addrs))
>- return -1;
>-
> if (hw == CX18_HW_TUNER) {
> /* special tuner group handling */
> sd = v4l2_i2c_new_subdev(&cx->v4l2_dev,
>diff --git a/drivers/media/pci/ivtv/ivtv-i2c.c
>b/drivers/media/pci/ivtv/ivtv-i2c.c
>index 46e262b..bc984af 100644
>--- a/drivers/media/pci/ivtv/ivtv-i2c.c
>+++ b/drivers/media/pci/ivtv/ivtv-i2c.c
>@@ -267,8 +267,6 @@ int ivtv_i2c_register(struct ivtv *itv, unsigned
>idx)
> const char *type = hw_devicenames[idx];
> u32 hw = 1 << idx;
>
>- if (idx >= ARRAY_SIZE(hw_addrs))
>- return -1;
> if (hw == IVTV_HW_TUNER) {
> /* special tuner handling */
> sd = v4l2_i2c_new_subdev(&itv->v4l2_dev, adap, type, 0,
>--
>1.7.10.4
Acked-by: Andy Walls <awalls@md.metrocast.net>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-01-07 2:09 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-07 1:52 [PATCH v2] media: cx18, ivtv: eliminate unnecessary array index checks Nickolai Zeldovich
2013-01-07 2:08 ` Andy Walls
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®