@@ -1190,7 +1190,11 @@ static inline void snd_pcm_gettime(struct snd_pcm_runtime *runtime,
getrawmonotonic64(tv);
break;
default:
+#ifdef CONFIG_SND_TSTAMP_REALTIME
ktime_get_real_ts64(tv);
+#else
+ ktime_get_ts64(tv);
+#endif
break;
}
}
@@ -542,8 +542,10 @@ struct snd_xfern {
};
enum {
+#if !(__BITS_PER_LONG == 32 && defined(__USE_TIME_BITS64))
SNDRV_PCM_TSTAMP_TYPE_GETTIMEOFDAY = 0, /* gettimeofday equivalent */
- SNDRV_PCM_TSTAMP_TYPE_MONOTONIC, /* posix_clock_monotonic equivalent */
+#endif
+ SNDRV_PCM_TSTAMP_TYPE_MONOTONIC = 1, /* posix_clock_monotonic equivalent */
SNDRV_PCM_TSTAMP_TYPE_MONOTONIC_RAW, /* monotonic_raw (no NTP) */
SNDRV_PCM_TSTAMP_TYPE_LAST = SNDRV_PCM_TSTAMP_TYPE_MONOTONIC_RAW,
};
@@ -100,6 +100,17 @@ config SND_HRTIMER
To compile this driver as a module, choose M here: the module
will be called snd-hrtimer.
+config SND_TSTAMP_REALTIME
+ bool "allow CLOCK_REALTIME timestamps"
+ help
+ Say Y here if you have user space applications that rely on
+ the traditional CLOCK_REALTIME based timestamps rather than
+ using CLOCK_MONOTONIC or CLOCK_MONOTONIC_RAW.
+ CLOCK_REALTIME has problems with overflow in year 2038, with
+ leap seconds and concurrent time updates (e.g. through NTP).
+
+ If unsure, say N.
+
config SND_DYNAMIC_MINORS
bool "Dynamic device file minor numbers"
help
@@ -1028,6 +1028,9 @@ int snd_pcm_attach_substream(struct snd_pcm *pcm, int stream,
init_waitqueue_head(&runtime->sleep);
init_waitqueue_head(&runtime->tsleep);
+#ifdef CONFIG_SND_TSTAMP_REALTIME
+ runtime->tstamp_type = SNDRV_PCM_TSTAMP_TYPE_MONOTONIC_RAW;
+#endif
runtime->status->state = SNDRV_PCM_STATE_OPEN;
@@ -811,6 +811,11 @@ static int snd_pcm_sw_params(struct snd_pcm_substream *substream,
if (params->proto >= SNDRV_PROTOCOL_VERSION(2, 0, 12) &&
params->tstamp_type > SNDRV_PCM_TSTAMP_TYPE_LAST)
return -EINVAL;
+#ifndef CONFIG_SND_TSTAMP_REALTIME
+ /* all other types are invalid here, and fall back to raw mono */
+ if (params->tstamp_type != SNDRV_PCM_TSTAMP_TYPE_MONOTONIC)
+ params->tstamp_type = SNDRV_PCM_TSTAMP_TYPE_MONOTONIC_RAW;
+#endif
if (params->avail_min == 0)
return -EINVAL;
if (params->silence_size >= runtime->boundary) {
@@ -2769,6 +2774,11 @@ static int snd_pcm_tstamp(struct snd_pcm_substream *substream, int __user *_arg)
return -EFAULT;
if (arg < 0 || arg > SNDRV_PCM_TSTAMP_TYPE_LAST)
return -EINVAL;
+#ifndef CONFIG_SND_TSTAMP_REALTIME
+ /* all other types are invalid here, and fall back to raw mono */
+ if (arg != SNDRV_PCM_TSTAMP_TYPE_MONOTONIC)
+ arg = SNDRV_PCM_TSTAMP_TYPE_MONOTONIC_RAW;
+#endif
runtime->tstamp_type = arg;
return 0;
}
@@ -543,7 +543,11 @@ static int azx_get_time_info(struct snd_pcm_substream *substream,
break;
default:
+#ifdef CONFIG_SND_TSTAMP_REALTIME
*system_ts = ktime_to_timespec64(xtstamp.sys_realtime);
+#else
+ *system_ts = ktime_to_timespec64(xtstamp.sys_monoraw);
+#endif
break;
}
The kernel has supported monotonic timestamps since linux-2.6.25, but it still defaults to CLOCK_REALTIME, which has multiple problems: It skips backwards for every leap second, it may skip at any time from settimeofday() or NTP updates, and it overflows in year 2038. alsa-lib already tries to use monotonic timestamps whenever they are available, so user space should generally be fine with it. To be on the safe side, I'm adding a Kconfig option that allows retaining the current behavior, while making the default to disallow CLOCK_REALTIME stamps. That default makes sense because of the decision to not extend the ioctl interface to 64-bit time stamps. We need today's kernels to run beyond 2038 in certain embedded markets, so it's better to discover any possible problems now rather than running into them only after time stamps overflow. I'm defaulting to SNDRV_PCM_TSTAMP_TYPE_MONOTONIC_RAW behavior rather than SNDRV_PCM_TSTAMP_TYPE_MONOTONIC since the latter is not supported by the HDA hardware timestamps. A similar change was done in the DRM subsystem and it turned out that nothing relied on CLOCK_REALTIME behavior for their timestamps, and the option was subsequently removed. If the same turns out to be true here, we can do the same and clean it out in a few years. Signed-off-by: Arnd Bergmann <arnd@arndb.de> --- include/sound/pcm.h | 4 ++++ include/uapi/sound/asound.h | 4 +++- sound/core/Kconfig | 11 +++++++++++ sound/core/pcm.c | 3 +++ sound/core/pcm_native.c | 10 ++++++++++ sound/pci/hda/hda_controller.c | 4 ++++ 6 files changed, 35 insertions(+), 1 deletion(-) -- 2.9.0 _______________________________________________ Alsa-devel mailing list Alsa-devel@alsa-project.org http://mailman.alsa-project.org/mailman/listinfo/alsa-devel