From: Hans Verkuil <hverkuil@xs4all.nl>
To: linux-media@vger.kernel.org
Cc: Arnd Bergmann <arnd@arndb.de>
Subject: [RFCv2 PATCH 00/15] BKL removal
Date: Tue, 16 Nov 2010 22:55:25 +0100 [thread overview]
Message-ID: <cover.1289944159.git.hverkuil@xs4all.nl> (raw)
This is my second patch series for the BKL removal project.
While this series is against the v2.6.38 staging tree I think it would be
good to target 2.6.37 instead. A lot of files are changed, but the changes
are all trivial. And this will hopefully take care of most of the BKL
removal problems, except for uvc.
This patch also contains the improved core locking patch which doesn't lock
the VIDIOC_DQBUF ioctl.
Regards,
Hans
Hans Verkuil (15):
v4l2-dev: use mutex_lock_interruptible instead of plain mutex_lock
BKL: trivial BKL removal from V4L2 radio drivers
cadet: use unlocked_ioctl
tea5764: convert to unlocked_ioctl
si4713: convert to unlocked_ioctl
typhoon: convert to unlocked_ioctl.
dsbr100: convert to unlocked_ioctl.
BKL: trivial ioctl -> unlocked_ioctl video driver conversions
sn9c102: convert to unlocked_ioctl.
et61x251_core: trivial conversion to unlocked_ioctl.
cafe_ccic: replace ioctl by unlocked_ioctl.
sh_vou: convert to unlocked_ioctl.
radio-timb: convert to unlocked_ioctl.
V4L: improve the BKL replacement heuristic
cx18: convert to unlocked_ioctl.
drivers/media/radio/dsbr100.c | 2 +-
drivers/media/radio/radio-aimslab.c | 16 +++---
drivers/media/radio/radio-aztech.c | 6 +-
drivers/media/radio/radio-cadet.c | 12 +++-
drivers/media/radio/radio-gemtek-pci.c | 6 +-
drivers/media/radio/radio-gemtek.c | 14 ++--
drivers/media/radio/radio-maestro.c | 14 ++---
drivers/media/radio/radio-maxiradio.c | 2 +-
drivers/media/radio/radio-miropcm20.c | 6 +-
drivers/media/radio/radio-rtrack2.c | 10 ++--
drivers/media/radio/radio-sf16fmi.c | 7 +-
drivers/media/radio/radio-sf16fmr2.c | 11 ++--
drivers/media/radio/radio-si4713.c | 3 +-
drivers/media/radio/radio-tea5764.c | 49 +++-------------
drivers/media/radio/radio-terratec.c | 8 +-
drivers/media/radio/radio-timb.c | 5 +-
drivers/media/radio/radio-trust.c | 18 +++---
drivers/media/radio/radio-typhoon.c | 16 +++---
drivers/media/radio/radio-zoltrix.c | 30 +++++-----
drivers/media/video/arv.c | 2 +-
drivers/media/video/bw-qcam.c | 2 +-
drivers/media/video/c-qcam.c | 2 +-
drivers/media/video/cafe_ccic.c | 2 +-
drivers/media/video/cx18/cx18-streams.c | 2 +-
drivers/media/video/et61x251/et61x251_core.c | 2 +-
drivers/media/video/meye.c | 14 ++--
drivers/media/video/pms.c | 2 +-
drivers/media/video/sh_vou.c | 13 +++--
drivers/media/video/sn9c102/sn9c102_core.c | 2 +-
drivers/media/video/v4l2-dev.c | 81 +++++++++++++++++++++-----
drivers/media/video/v4l2-device.c | 1 +
drivers/media/video/w9966.c | 2 +-
include/media/v4l2-dev.h | 2 +-
include/media/v4l2-device.h | 2 +
34 files changed, 201 insertions(+), 165 deletions(-)
next reply other threads:[~2010-11-16 21:55 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-16 21:55 Hans Verkuil [this message]
2010-11-16 21:55 ` [RFCv2 PATCH 01/15] v4l2-dev: use mutex_lock_interruptible instead of plain mutex_lock Hans Verkuil
2010-11-17 8:23 ` Arnd Bergmann
2010-11-16 21:55 ` [RFCv2 PATCH 02/15] BKL: trivial BKL removal from V4L2 radio drivers Hans Verkuil
2010-11-16 21:55 ` [RFCv2 PATCH 03/15] cadet: use unlocked_ioctl Hans Verkuil
2010-11-16 21:55 ` [RFCv2 PATCH 04/15] tea5764: convert to unlocked_ioctl Hans Verkuil
2010-11-16 21:56 ` [RFCv2 PATCH 05/15] si4713: " Hans Verkuil
2010-11-16 21:56 ` [RFCv2 PATCH 06/15] typhoon: " Hans Verkuil
2010-11-16 21:56 ` [RFCv2 PATCH 07/15] dsbr100: " Hans Verkuil
2010-11-18 14:40 ` David Ellingsworth
2010-11-18 14:46 ` Hans Verkuil
2010-11-18 15:10 ` David Ellingsworth
2010-11-18 15:29 ` Hans Verkuil
2010-11-18 15:58 ` David Ellingsworth
2010-11-16 21:56 ` [RFCv2 PATCH 08/15] BKL: trivial ioctl -> unlocked_ioctl video driver conversions Hans Verkuil
2010-11-16 21:56 ` [RFCv2 PATCH 09/15] sn9c102: convert to unlocked_ioctl Hans Verkuil
2010-11-16 21:56 ` [RFCv2 PATCH 10/15] et61x251_core: trivial conversion " Hans Verkuil
2010-11-16 21:56 ` [RFCv2 PATCH 11/15] cafe_ccic: replace ioctl by unlocked_ioctl Hans Verkuil
2010-11-16 21:56 ` [RFCv2 PATCH 12/15] sh_vou: convert to unlocked_ioctl Hans Verkuil
2010-11-16 21:56 ` [RFCv2 PATCH 13/15] radio-timb: " Hans Verkuil
2010-11-16 21:56 ` [RFCv2 PATCH 14/15] V4L: improve the BKL replacement heuristic Hans Verkuil
2010-11-17 8:23 ` Arnd Bergmann
2010-11-16 21:56 ` [RFCv2 PATCH 15/15] cx18: convert to unlocked_ioctl Hans Verkuil
2010-11-16 22:35 ` Andy Walls
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1289944159.git.hverkuil@xs4all.nl \
--to=hverkuil@xs4all.nl \
--cc=arnd@arndb.de \
--cc=linux-media@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox