mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Arnd Bergmann <arnd@arndb.de>
To: linux-media@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, y2038@lists.linaro.org,
	Mauro Carvalho Chehab <mchehab@osg.samsung.com>,
	linux-api@vger.kernel.org, linux-samsung-soc@vger.kernel.org,
	Arnd Bergmann <arnd@arndb.de>
Subject: [PATCH 0/7] [media] y2038 conversion for subsystem
Date: Tue, 15 Sep 2015 17:49:01 +0200	[thread overview]
Message-ID: <1442332148-488079-1-git-send-email-arnd@arndb.de> (raw)

Hi everyone,

This is a conversion of all subsystem-wide v4l2 code to avoid the
use of types based on time_t. The first five patches should all
be harmless and obvious, so they can get applied for 4.3 after
normal review.

The last two patches are marked RFC for now because their possible
impact on the user space ABI and to decide if this is the best
approach or whether we should instead introduce extra code in
the kernel to handle modified user space.

There are a few device drivers beyond this series that rely on
time_t/timeval/timespec internally, but they are all easy to fix
and can be taken care of later.

	Arnd

Arnd Bergmann (7):
  [media] dvb: use ktime_t for internal timeout
  [media] dvb: remove unused systime() function
  [media] dvb: don't use 'time_t' in event ioctl
  [media] exynos4-is: use monotonic timestamps as advertized
  [media] use v4l2_get_timestamp where possible
  [RFC] [media]: v4l2: introduce v4l2_timeval
  [RFC] [media] introduce v4l2_timespec type for timestamps

 drivers/media/dvb-core/demux.h                   |  2 +-
 drivers/media/dvb-core/dmxdev.c                  |  2 +-
 drivers/media/dvb-core/dvb_demux.c               | 17 ++++++-----------
 drivers/media/dvb-core/dvb_demux.h               |  4 ++--
 drivers/media/dvb-core/dvb_net.c                 |  2 +-
 drivers/media/dvb-frontends/dibx000_common.c     | 10 ----------
 drivers/media/dvb-frontends/dibx000_common.h     |  2 --
 drivers/media/pci/bt8xx/bttv-driver.c            |  7 ++-----
 drivers/media/pci/cx18/cx18-mailbox.c            |  2 +-
 drivers/media/pci/meye/meye.h                    |  2 +-
 drivers/media/pci/zoran/zoran.h                  |  2 +-
 drivers/media/platform/coda/coda.h               |  2 +-
 drivers/media/platform/exynos4-is/fimc-capture.c |  8 +-------
 drivers/media/platform/exynos4-is/fimc-lite.c    |  7 +------
 drivers/media/platform/omap/omap_vout.c          |  4 ++--
 drivers/media/platform/omap3isp/ispstat.c        |  5 ++---
 drivers/media/platform/omap3isp/ispstat.h        |  2 +-
 drivers/media/platform/s3c-camif/camif-capture.c |  8 +-------
 drivers/media/platform/vim2m.c                   |  2 +-
 drivers/media/platform/vivid/vivid-ctrls.c       |  2 +-
 drivers/media/usb/cpia2/cpia2.h                  |  2 +-
 drivers/media/usb/cpia2/cpia2_v4l.c              |  2 +-
 drivers/media/usb/gspca/gspca.c                  |  6 +++---
 drivers/media/usb/usbvision/usbvision.h          |  2 +-
 drivers/media/v4l2-core/v4l2-common.c            |  6 +++---
 drivers/media/v4l2-core/v4l2-event.c             | 20 +++++++++++++-------
 drivers/staging/media/omap4iss/iss_video.c       |  5 +----
 include/media/v4l2-common.h                      |  2 +-
 include/media/videobuf-core.h                    |  2 +-
 include/trace/events/v4l2.h                      | 12 ++++++++++--
 include/uapi/linux/dvb/video.h                   |  3 ++-
 include/uapi/linux/omap3isp.h                    |  2 +-
 include/uapi/linux/videodev2.h                   | 16 ++++++++++++++--
 33 files changed, 79 insertions(+), 93 deletions(-)

-- 
2.1.0.rc2


             reply	other threads:[~2015-09-15 15:52 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-15 15:49 Arnd Bergmann [this message]
2015-09-15 15:49 ` [PATCH 1/7] [media] dvb: use ktime_t for internal timeout Arnd Bergmann
2015-09-15 17:55   ` Andreas Oberritter
2015-09-15 20:30     ` [Y2038] " Arnd Bergmann
2015-09-15 15:49 ` [PATCH 2/7] [media] dvb: remove unused systime() function Arnd Bergmann
2015-09-15 15:49 ` [PATCH 3/7] [media] dvb: don't use 'time_t' in event ioctl Arnd Bergmann
2017-08-28 15:32   ` [3/7,media] " Eugene Syromiatnikov
2017-08-30 20:25     ` Arnd Bergmann
2017-08-31 13:10       ` Eugene Syromiatnikov
2015-09-15 15:49 ` [PATCH 4/7] [media] exynos4-is: use monotonic timestamps as advertized Arnd Bergmann
2015-09-16  8:55   ` Sylwester Nawrocki
2015-09-15 15:49 ` [PATCH 5/7] [media] use v4l2_get_timestamp where possible Arnd Bergmann
2015-09-16  8:57   ` Sylwester Nawrocki
2015-09-15 15:49 ` [PATCH 6/7] [RFC] [media]: v4l2: introduce v4l2_timeval Arnd Bergmann
2015-09-15 16:27   ` Hans Verkuil
2015-09-15 20:26     ` Arnd Bergmann
2015-09-16  6:51       ` Hans Verkuil
2015-09-16  7:56         ` Arnd Bergmann
2015-09-16  8:12           ` Hans Verkuil
2015-09-16  8:40             ` Arnd Bergmann
2015-09-15 15:49 ` [PATCH 7/7] [RFC] [media] introduce v4l2_timespec type for timestamps Arnd Bergmann
2015-09-15 16:32   ` Hans Verkuil
2015-09-15 20:27     ` [Y2038] " Arnd Bergmann

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=1442332148-488079-1-git-send-email-arnd@arndb.de \
    --to=arnd@arndb.de \
    --cc=linux-api@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=mchehab@osg.samsung.com \
    --cc=y2038@lists.linaro.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

all inboxes | Powered by JetHome®