[aur-general] LTS kernel moved to 3.10.x - module rebuilds

Rob Til Freedmen rob.til.freedman at gmail.com
Mon Sep 16 18:53:56 EDT 2013


Hi,
please consider adding this patch for a bug in the 3.10.x / 3.11.x series.
https://bbs.archlinux.org/viewtopic.php?id=167257

It was reported 2 month ago and has been finally fixed.

Unfortunately, it hasn't been yet included in 3.10.12 resp. 3.11.1

The patch itself is really simple - avoiding a divide error on 0 counters

--- a/drivers/media/common/siano/
smsdvb-main.c    2013-07-01
00:13:29.000000000 +0200
+++ b/drivers/media/common/siano/smsdvb-main.c    2013-09-13
00:17:58.765980686 +0200
@@ -275,7 +275,8 @@

     /* Legacy PER/BER */
     tmp = p->ets_packets * 65535;
-    do_div(tmp, p->ts_packets + p->ets_packets);
+    if (p->ts_packets + p->ets_packets)
+        do_div(tmp, p->ts_packets + p->ets_packets);
     client->legacy_per = tmp;
 }
---


On Mon, Sep 16, 2013 at 10:14 PM, Andreas Radke <andyrtr at archlinux.org> wrote:
> I've updated LTS kernel to 3.10.x branch into testing repo. Please
> rebuild all community modules. I'll do the module rebuilds for extra
> repo packages.
>
> -Andy


More information about the aur-general mailing list