Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1358940
| From | Peter Rosin <peda@lysator.liu.se> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] [media] m88ds3103: fix undefined division |
| Date | 2016-03-16 13:20 +0100 |
| Message-ID | <rdiAF-nR-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
From: Peter Rosin <peda@axentia.se>
s32tmp in the below code may be negative, and dev->mclk_khz is an
unsigned type.
s32tmp = 0x10000 * (tuner_frequency - c->frequency);
s32tmp = DIV_ROUND_CLOSEST(s32tmp, dev->mclk_khz);
This is undefined, as DIV_ROUND_CLOSEST is undefined for negative
dividends when the divisor is of unsigned type.
So, change mclk_khz to be signed (s32).
Signed-off-by: Peter Rosin <peda@axentia.se>
---
drivers/media/dvb-frontends/m88ds3103_priv.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Note, this was found by code inspection, I don't have the hardware,
I don't know what the consequences of a garbage result are at this
point in the code and the patch has only been build-tested. It looks
obvious enough though. It should probably go to stable as well...
Cheers,
Peter
diff --git a/drivers/media/dvb-frontends/m88ds3103_priv.h b/drivers/media/dvb-frontends/m88ds3103_priv.h
index eee8c22c51ec..651e005146b2 100644
--- a/drivers/media/dvb-frontends/m88ds3103_priv.h
+++ b/drivers/media/dvb-frontends/m88ds3103_priv.h
@@ -46,7 +46,7 @@ struct m88ds3103_dev {
/* auto detect chip id to do different config */
u8 chip_id;
/* main mclk is calculated for M88RS6000 dynamically */
- u32 mclk_khz;
+ s32 mclk_khz;
u64 post_bit_error;
u64 post_bit_count;
};
--
2.1.4
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] [media] m88ds3103: fix undefined division Peter Rosin <peda@lysator.liu.se> - 2016-03-16 13:20 +0100
csiph-web