[media] solo6x10: The size of the thresholds ioctls was too large
authorHans Verkuil <hverkuil@xs4all.nl>
Fri, 29 Mar 2013 10:20:36 +0000 (07:20 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Fri, 29 Mar 2013 11:34:23 +0000 (08:34 -0300)
On powerpc the maximum size for the ioctl argument is 8191, and it was
8192. However, the 64x64 array of threshold values is more than is actually
needed in practice for PAL and NTSC formats. A 45x45 array will do just fine.
So change the size accordingly to fix this problem.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/staging/media/solo6x10/solo6x10-disp.c
drivers/staging/media/solo6x10/solo6x10.h

index 78070c843f90cabf865f04516a4c09fc9da5d58b..32d9953bc36eb00ad0ec31bf2c8c5fbe77ad354b 100644 (file)
@@ -205,10 +205,11 @@ int solo_set_motion_block(struct solo_dev *solo_dev, u8 ch,
                const struct solo_motion_thresholds *thresholds)
 {
        u32 off = SOLO_MOT_FLAG_AREA + ch * SOLO_MOT_THRESH_SIZE * 2;
-       u16 buf[SOLO_MOTION_SZ];
+       u16 buf[64];
        int x, y;
        int ret = 0;
 
+       memset(buf, 0, sizeof(buf));
        for (y = 0; y < SOLO_MOTION_SZ; y++) {
                for (x = 0; x < SOLO_MOTION_SZ; x++)
                        buf[x] = cpu_to_le16(thresholds->thresholds[y][x]);
index 3526d6b56c5c075e99a3a3a5951bcbb85b3fe075..6f91d2e34b2a7bd971e8e3d3060b8e98b4f4f566 100644 (file)
  * each sample representing 16x16 pixels of the source. In
  * effect, 44x30 samples are used for NTSC, and 44x36 for PAL.
  * The 5th sample on the 10th row is (10*64)+5 = 645.
+ *
+ * Using a 64x64 array will result in a problem on some architectures like
+ * the powerpc where the size of the argument is limited to 13 bits.
+ * Since both PAL and NTSC do not use the full table anyway I've chosen
+ * to limit the array to 45x45 (45*16 = 720, which is the maximum PAL/NTSC
+ * width).
  */
-#define SOLO_MOTION_SZ (64)
+#define SOLO_MOTION_SZ (45)
 struct solo_motion_thresholds {
        __u16   thresholds[SOLO_MOTION_SZ][SOLO_MOTION_SZ];
 };