Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] gst-fsl-plugins: fix build for kernel headers >= 3.10
@ 2014-07-26  5:34 Gary Bisson
  2014-07-26  7:02 ` Thomas Petazzoni
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Gary Bisson @ 2014-07-26  5:34 UTC (permalink / raw)
  To: buildroot

This package couldn't build using a toolchain with kernel headers >=
3.10 because of the use of VIDIOC_DBG_G_CHIP_IDENT. As stated in
videodev2.h, this ioctl should never be used.

Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
---
Yann, Thomas, all,
After looking at the source code it appears that nothing justifies the use of
that obsolete ioctl. Its only purpose is to get the video device name so this
patch actually removes those unnecessary calls.
Thanks,
Gary
---
 ...e-use-of-obsolete-VIDIOC_DBG_G_CHIP_IDENT.patch | 69 ++++++++++++++++++++++
 1 file changed, 69 insertions(+)
 create mode 100644 package/gstreamer/gst-fsl-plugins/gst-fsl-plugins-0005-Remove-use-of-obsolete-VIDIOC_DBG_G_CHIP_IDENT.patch

diff --git a/package/gstreamer/gst-fsl-plugins/gst-fsl-plugins-0005-Remove-use-of-obsolete-VIDIOC_DBG_G_CHIP_IDENT.patch b/package/gstreamer/gst-fsl-plugins/gst-fsl-plugins-0005-Remove-use-of-obsolete-VIDIOC_DBG_G_CHIP_IDENT.patch
new file mode 100644
index 0000000..5635275
--- /dev/null
+++ b/package/gstreamer/gst-fsl-plugins/gst-fsl-plugins-0005-Remove-use-of-obsolete-VIDIOC_DBG_G_CHIP_IDENT.patch
@@ -0,0 +1,69 @@
+From ce90794a3458af0aed43b8570cf44cd87900185d Mon Sep 17 00:00:00 2001
+From: Gary Bisson <bisson.gary@gmail.com>
+Date: Fri, 25 Jul 2014 16:44:53 -0700
+Subject: [PATCH] Remove use of obsolete VIDIOC_DBG_G_CHIP_IDENT
+
+This ioctl should never be used in application as
+stated in videodev2.h header.
+Moreover, its use in this plugin was very limited.
+
+Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
+---
+ src/misc/tvsrc/src/mfw_gst_tvsrc.c       | 8 --------
+ src/misc/v4l_source/src/mfw_gst_v4lsrc.c | 7 -------
+ 2 files changed, 15 deletions(-)
+
+diff --git a/src/misc/tvsrc/src/mfw_gst_tvsrc.c b/src/misc/tvsrc/src/mfw_gst_tvsrc.c
+index 67e0cd2..f495b6f 100755
+--- a/src/misc/tvsrc/src/mfw_gst_tvsrc.c
++++ b/src/misc/tvsrc/src/mfw_gst_tvsrc.c
+@@ -450,7 +450,6 @@ mfw_gst_tvsrc_capture_setup (MFWGstTVSRC * v4l_src)
+   struct v4l2_format fmt;
+   struct v4l2_control ctrl;
+   struct v4l2_streamparm parm;
+-  struct v4l2_dbg_chip_ident chip;
+   gint fd_v4l = 0;
+   struct v4l2_mxc_offset off;
+   gint in_width = 0, in_height = 0;
+@@ -461,13 +460,6 @@ mfw_gst_tvsrc_capture_setup (MFWGstTVSRC * v4l_src)
+     return 0;
+   }
+ 
+-  if (ioctl (fd_v4l, VIDIOC_DBG_G_CHIP_IDENT, &chip)) {
+-    g_print ("VIDIOC_DBG_G_CHIP_IDENT failed.\n");
+-  } else
+-    g_print ("sensor chip is %s\n", chip.match.name);
+-
+-
+-
+   if (ioctl (fd_v4l, VIDIOC_G_STD, &id) < 0) {
+     g_print ("VIDIOC_G_STD failed\n");
+     close (fd_v4l);
+diff --git a/src/misc/v4l_source/src/mfw_gst_v4lsrc.c b/src/misc/v4l_source/src/mfw_gst_v4lsrc.c
+index 2c2e838..85e7ff0 100755
+--- a/src/misc/v4l_source/src/mfw_gst_v4lsrc.c
++++ b/src/misc/v4l_source/src/mfw_gst_v4lsrc.c
+@@ -464,7 +464,6 @@ mfw_gst_v4lsrc_capture_setup (MFWGstV4LSrc * v4l_src)
+   struct v4l2_format fmt = {0};
+   struct v4l2_control ctrl = {0};
+   struct v4l2_streamparm parm = {0};
+-  struct v4l2_dbg_chip_ident chip = {0};
+   struct v4l2_frmsizeenum fszenum = {0};
+   gint input;
+   gint fd_v4l = 0;
+@@ -476,12 +475,6 @@ mfw_gst_v4lsrc_capture_setup (MFWGstV4LSrc * v4l_src)
+     return 0;
+   }
+ 
+-  if (ioctl (fd_v4l, VIDIOC_DBG_G_CHIP_IDENT, &chip)) {
+-    GST_ERROR ("VIDIOC_DBG_G_CHIP_IDENT failed.");
+-  } else
+-    GST_INFO ("sensor chip is %s", chip.match.name);
+-
+-
+   if (v4l_src->crop_pixel) {
+     in_width = v4l_src->capture_width - (2 * v4l_src->crop_pixel);
+     in_height = v4l_src->capture_height - (2 * v4l_src->crop_pixel);
+-- 
+2.0.1
+
-- 
2.0.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH] gst-fsl-plugins: fix build for kernel headers >= 3.10
  2014-07-26  5:34 [Buildroot] [PATCH] gst-fsl-plugins: fix build for kernel headers >= 3.10 Gary Bisson
@ 2014-07-26  7:02 ` Thomas Petazzoni
  2014-07-26 10:01   ` Yann E. MORIN
  2014-07-26  9:58 ` Yann E. MORIN
  2014-07-27  8:31 ` Thomas Petazzoni
  2 siblings, 1 reply; 7+ messages in thread
From: Thomas Petazzoni @ 2014-07-26  7:02 UTC (permalink / raw)
  To: buildroot

Dear Gary Bisson,

On Fri, 25 Jul 2014 22:34:30 -0700, Gary Bisson wrote:
> This package couldn't build using a toolchain with kernel headers >=
> 3.10 because of the use of VIDIOC_DBG_G_CHIP_IDENT. As stated in
> videodev2.h, this ioctl should never be used.
> 
> Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
> ---
> Yann, Thomas, all,
> After looking at the source code it appears that nothing justifies the use of
> that obsolete ioctl. Its only purpose is to get the video device name so this
> patch actually removes those unnecessary calls.
> Thanks,
> Gary

So, if I'm correct, this supersedes the patches from Yann
(http://patchwork.ozlabs.org/patch/373813/ and
http://patchwork.ozlabs.org/patch/373814/), right ?

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH] gst-fsl-plugins: fix build for kernel headers >= 3.10
  2014-07-26  5:34 [Buildroot] [PATCH] gst-fsl-plugins: fix build for kernel headers >= 3.10 Gary Bisson
  2014-07-26  7:02 ` Thomas Petazzoni
@ 2014-07-26  9:58 ` Yann E. MORIN
  2014-07-27  8:31 ` Thomas Petazzoni
  2 siblings, 0 replies; 7+ messages in thread
From: Yann E. MORIN @ 2014-07-26  9:58 UTC (permalink / raw)
  To: buildroot

Gary, All,

On 2014-07-25 22:34 -0700, Gary Bisson spake thusly:
> This package couldn't build using a toolchain with kernel headers >=
> 3.10 because of the use of VIDIOC_DBG_G_CHIP_IDENT. As stated in
> videodev2.h, this ioctl should never be used.
> 
> Signed-off-by: Gary Bisson <bisson.gary@gmail.com>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

But see below...

> diff --git a/package/gstreamer/gst-fsl-plugins/gst-fsl-plugins-0005-Remove-use-of-obsolete-VIDIOC_DBG_G_CHIP_IDENT.patch b/package/gstreamer/gst-fsl-plugins/gst-fsl-plugins-0005-Remove-use-of-obsolete-VIDIOC_DBG_G_CHIP_IDENT.patch
> new file mode 100644
> index 0000000..5635275
> --- /dev/null
> +++ b/package/gstreamer/gst-fsl-plugins/gst-fsl-plugins-0005-Remove-use-of-obsolete-VIDIOC_DBG_G_CHIP_IDENT.patch
> @@ -0,0 +1,69 @@
> +From ce90794a3458af0aed43b8570cf44cd87900185d Mon Sep 17 00:00:00 2001
> +From: Gary Bisson <bisson.gary@gmail.com>
> +Date: Fri, 25 Jul 2014 16:44:53 -0700
> +Subject: [PATCH] Remove use of obsolete VIDIOC_DBG_G_CHIP_IDENT
> +
> +This ioctl should never be used in application as
> +stated in videodev2.h header.
> +Moreover, its use in this plugin was very limited.

Do not forget to send this to upstream gst-fsl-plugins. ;-)

Regards,
Yann E. MORIN.

> +Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
> +---
> + src/misc/tvsrc/src/mfw_gst_tvsrc.c       | 8 --------
> + src/misc/v4l_source/src/mfw_gst_v4lsrc.c | 7 -------
> + 2 files changed, 15 deletions(-)
> +
> +diff --git a/src/misc/tvsrc/src/mfw_gst_tvsrc.c b/src/misc/tvsrc/src/mfw_gst_tvsrc.c
> +index 67e0cd2..f495b6f 100755
> +--- a/src/misc/tvsrc/src/mfw_gst_tvsrc.c
> ++++ b/src/misc/tvsrc/src/mfw_gst_tvsrc.c
> +@@ -450,7 +450,6 @@ mfw_gst_tvsrc_capture_setup (MFWGstTVSRC * v4l_src)
> +   struct v4l2_format fmt;
> +   struct v4l2_control ctrl;
> +   struct v4l2_streamparm parm;
> +-  struct v4l2_dbg_chip_ident chip;
> +   gint fd_v4l = 0;
> +   struct v4l2_mxc_offset off;
> +   gint in_width = 0, in_height = 0;
> +@@ -461,13 +460,6 @@ mfw_gst_tvsrc_capture_setup (MFWGstTVSRC * v4l_src)
> +     return 0;
> +   }
> + 
> +-  if (ioctl (fd_v4l, VIDIOC_DBG_G_CHIP_IDENT, &chip)) {
> +-    g_print ("VIDIOC_DBG_G_CHIP_IDENT failed.\n");
> +-  } else
> +-    g_print ("sensor chip is %s\n", chip.match.name);
> +-
> +-
> +-
> +   if (ioctl (fd_v4l, VIDIOC_G_STD, &id) < 0) {
> +     g_print ("VIDIOC_G_STD failed\n");
> +     close (fd_v4l);
> +diff --git a/src/misc/v4l_source/src/mfw_gst_v4lsrc.c b/src/misc/v4l_source/src/mfw_gst_v4lsrc.c
> +index 2c2e838..85e7ff0 100755
> +--- a/src/misc/v4l_source/src/mfw_gst_v4lsrc.c
> ++++ b/src/misc/v4l_source/src/mfw_gst_v4lsrc.c
> +@@ -464,7 +464,6 @@ mfw_gst_v4lsrc_capture_setup (MFWGstV4LSrc * v4l_src)
> +   struct v4l2_format fmt = {0};
> +   struct v4l2_control ctrl = {0};
> +   struct v4l2_streamparm parm = {0};
> +-  struct v4l2_dbg_chip_ident chip = {0};
> +   struct v4l2_frmsizeenum fszenum = {0};
> +   gint input;
> +   gint fd_v4l = 0;
> +@@ -476,12 +475,6 @@ mfw_gst_v4lsrc_capture_setup (MFWGstV4LSrc * v4l_src)
> +     return 0;
> +   }
> + 
> +-  if (ioctl (fd_v4l, VIDIOC_DBG_G_CHIP_IDENT, &chip)) {
> +-    GST_ERROR ("VIDIOC_DBG_G_CHIP_IDENT failed.");
> +-  } else
> +-    GST_INFO ("sensor chip is %s", chip.match.name);
> +-
> +-
> +   if (v4l_src->crop_pixel) {
> +     in_width = v4l_src->capture_width - (2 * v4l_src->crop_pixel);
> +     in_height = v4l_src->capture_height - (2 * v4l_src->crop_pixel);
> +-- 
> +2.0.1
> +
> -- 
> 2.0.1
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH] gst-fsl-plugins: fix build for kernel headers >= 3.10
  2014-07-26  7:02 ` Thomas Petazzoni
@ 2014-07-26 10:01   ` Yann E. MORIN
  2014-07-26 17:12     ` Gary Bisson
  0 siblings, 1 reply; 7+ messages in thread
From: Yann E. MORIN @ 2014-07-26 10:01 UTC (permalink / raw)
  To: buildroot

Thomas, All,

On 2014-07-26 09:02 +0200, Thomas Petazzoni spake thusly:
> On Fri, 25 Jul 2014 22:34:30 -0700, Gary Bisson wrote:
> > This package couldn't build using a toolchain with kernel headers >=
> > 3.10 because of the use of VIDIOC_DBG_G_CHIP_IDENT. As stated in
> > videodev2.h, this ioctl should never be used.
> > 
> > Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
> > ---
> > Yann, Thomas, all,
> > After looking at the source code it appears that nothing justifies the use of
> > that obsolete ioctl. Its only purpose is to get the video device name so this
> > patch actually removes those unnecessary calls.
> > Thanks,
> > Gary
> 
> So, if I'm correct, this supersedes the patches from Yann
> (http://patchwork.ozlabs.org/patch/373813/ and
> http://patchwork.ozlabs.org/patch/373814/), right ?

Well, 373813 is still valid: it is a clarification in the manual that
_AT_LEAST_X_Y symbols can be used to require either lowest or highest
headers version.

So, even if we end up noy needing this for this issue, it is still
valid, no?

But indeed, 373814 is supersedded by this patch from Gary (and I'm happy
of the outcome!) I'll mark the affected patches supserdded in Patchwork.

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH] gst-fsl-plugins: fix build for kernel headers >= 3.10
  2014-07-26 10:01   ` Yann E. MORIN
@ 2014-07-26 17:12     ` Gary Bisson
  2014-07-26 17:15       ` Yann E. MORIN
  0 siblings, 1 reply; 7+ messages in thread
From: Gary Bisson @ 2014-07-26 17:12 UTC (permalink / raw)
  To: buildroot

Yann, Thomas, all,

On Sat, Jul 26, 2014 at 3:01 AM, Yann E. MORIN <yann.morin.1998@free.fr>
wrote:

> Thomas, All,
>
> On 2014-07-26 09:02 +0200, Thomas Petazzoni spake thusly:
> > On Fri, 25 Jul 2014 22:34:30 -0700, Gary Bisson wrote:
> > > This package couldn't build using a toolchain with kernel headers >=
> > > 3.10 because of the use of VIDIOC_DBG_G_CHIP_IDENT. As stated in
> > > videodev2.h, this ioctl should never be used.
> > >
> > > Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
> > > ---
> > > Yann, Thomas, all,
> > > After looking at the source code it appears that nothing justifies the
> use of
> > > that obsolete ioctl. Its only purpose is to get the video device name
> so this
> > > patch actually removes those unnecessary calls.
> > > Thanks,
> > > Gary
> >
> > So, if I'm correct, this supersedes the patches from Yann
> > (http://patchwork.ozlabs.org/patch/373813/ and
> > http://patchwork.ozlabs.org/patch/373814/), right ?
>
> Well, 373813 is still valid: it is a clarification in the manual that
> _AT_LEAST_X_Y symbols can be used to require either lowest or highest
> headers version.
>
> So, even if we end up noy needing this for this issue, it is still
> valid, no?
>
> But indeed, 373814 is supersedded by this patch from Gary (and I'm happy
> of the outcome!) I'll mark the affected patches supserdded in Patchwork.
>

Agreed.
Regarding upstream gst-fsl-plugins, the patch will be sent to them this
week-end.

Thanks,
Gary
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20140726/c8031351/attachment.html>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH] gst-fsl-plugins: fix build for kernel headers >= 3.10
  2014-07-26 17:12     ` Gary Bisson
@ 2014-07-26 17:15       ` Yann E. MORIN
  0 siblings, 0 replies; 7+ messages in thread
From: Yann E. MORIN @ 2014-07-26 17:15 UTC (permalink / raw)
  To: buildroot

Gary, All,

On 2014-07-26 10:12 -0700, Gary Bisson spake thusly:
> On Sat, Jul 26, 2014 at 3:01 AM, Yann E. MORIN <yann.morin.1998@free.fr>
> wrote:
> > On 2014-07-26 09:02 +0200, Thomas Petazzoni spake thusly:
> > > On Fri, 25 Jul 2014 22:34:30 -0700, Gary Bisson wrote:
> > > > This package couldn't build using a toolchain with kernel headers >=
> > > > 3.10 because of the use of VIDIOC_DBG_G_CHIP_IDENT. As stated in
> > > > videodev2.h, this ioctl should never be used.
> >
> > Well, 373813 is still valid: it is a clarification in the manual that
> > _AT_LEAST_X_Y symbols can be used to require either lowest or highest
> > headers version.
> >
> > So, even if we end up noy needing this for this issue, it is still
> > valid, no?
> >
> > But indeed, 373814 is supersedded by this patch from Gary (and I'm happy
> > of the outcome!) I'll mark the affected patches supserdded in Patchwork.
> 
> Agreed.
> Regarding upstream gst-fsl-plugins, the patch will be sent to them this
> week-end.

Thank you! :-)

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH] gst-fsl-plugins: fix build for kernel headers >= 3.10
  2014-07-26  5:34 [Buildroot] [PATCH] gst-fsl-plugins: fix build for kernel headers >= 3.10 Gary Bisson
  2014-07-26  7:02 ` Thomas Petazzoni
  2014-07-26  9:58 ` Yann E. MORIN
@ 2014-07-27  8:31 ` Thomas Petazzoni
  2 siblings, 0 replies; 7+ messages in thread
From: Thomas Petazzoni @ 2014-07-27  8:31 UTC (permalink / raw)
  To: buildroot

Dear Gary Bisson,

On Fri, 25 Jul 2014 22:34:30 -0700, Gary Bisson wrote:
> This package couldn't build using a toolchain with kernel headers >=
> 3.10 because of the use of VIDIOC_DBG_G_CHIP_IDENT. As stated in
> videodev2.h, this ioctl should never be used.
> 
> Signed-off-by: Gary Bisson <bisson.gary@gmail.com>

Applied, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-07-27  8:31 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-26  5:34 [Buildroot] [PATCH] gst-fsl-plugins: fix build for kernel headers >= 3.10 Gary Bisson
2014-07-26  7:02 ` Thomas Petazzoni
2014-07-26 10:01   ` Yann E. MORIN
2014-07-26 17:12     ` Gary Bisson
2014-07-26 17:15       ` Yann E. MORIN
2014-07-26  9:58 ` Yann E. MORIN
2014-07-27  8:31 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox