* [PATCH] ALSA: core: fix 64-bit SNDRV_PCM_IOCTL_STATUS ABI breakage
@ 2012-10-27 19:55 Clemens Ladisch
2012-10-28 8:54 ` Takashi Iwai
0 siblings, 1 reply; 4+ messages in thread
From: Clemens Ladisch @ 2012-10-27 19:55 UTC (permalink / raw)
To: Takashi Iwai; +Cc: alsa-devel, Pierre-Louis Bossart
Commit 4eeaaeaea (ALSA: core: add hooks for audio timestamps) added the
new audio_tstamp field to struct snd_pcm_status. However, struct
timespec requires 64-bit alignment, so the 64-bit compiler would insert
32 bits of padding before this field, which broke SNDRV_PCM_IOCTL_STATUS
with error messages like this:
kernel: unknown ioctl = 0x80984120
To solve this, insert the padding explicitly so that it can be taken
into account when calculating the ABI structure size.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
---
include/uapi/sound/asound.h | 3 ++-
sound/core/pcm_compat.c | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
--- a/include/uapi/sound/asound.h
+++ b/include/uapi/sound/asound.h
@@ -408,8 +408,9 @@ struct snd_pcm_status {
snd_pcm_uframes_t avail_max; /* max frames available on hw since last status */
snd_pcm_uframes_t overrange; /* count of ADC (capture) overrange detections from last status */
snd_pcm_state_t suspended_state; /* suspended stream state */
+ __u32 reserved_alignment; /* must be filled with zero */
struct timespec audio_tstamp; /* from sample counter or wall clock */
- unsigned char reserved[60-sizeof(struct timespec)]; /* must be filled with zero */
+ unsigned char reserved[56-sizeof(struct timespec)]; /* must be filled with zero */
};
struct snd_pcm_mmap_status {
--- a/sound/core/pcm_compat.c
+++ b/sound/core/pcm_compat.c
@@ -190,8 +190,9 @@ struct snd_pcm_status32 {
u32 avail_max;
u32 overrange;
s32 suspended_state;
+ u32 reserved_alignment;
struct compat_timespec audio_tstamp;
- unsigned char reserved[60-sizeof(struct compat_timespec)];
+ unsigned char reserved[56-sizeof(struct compat_timespec)];
} __attribute__((packed));
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ALSA: core: fix 64-bit SNDRV_PCM_IOCTL_STATUS ABI breakage
2012-10-27 19:55 [PATCH] ALSA: core: fix 64-bit SNDRV_PCM_IOCTL_STATUS ABI breakage Clemens Ladisch
@ 2012-10-28 8:54 ` Takashi Iwai
2012-10-28 10:45 ` Clemens Ladisch
0 siblings, 1 reply; 4+ messages in thread
From: Takashi Iwai @ 2012-10-28 8:54 UTC (permalink / raw)
To: Clemens Ladisch; +Cc: alsa-devel, Pierre-Louis Bossart
At Sat, 27 Oct 2012 21:55:27 +0200,
Clemens Ladisch wrote:
>
> Commit 4eeaaeaea (ALSA: core: add hooks for audio timestamps) added the
> new audio_tstamp field to struct snd_pcm_status. However, struct
> timespec requires 64-bit alignment, so the 64-bit compiler would insert
> 32 bits of padding before this field, which broke SNDRV_PCM_IOCTL_STATUS
> with error messages like this:
>
> kernel: unknown ioctl = 0x80984120
>
> To solve this, insert the padding explicitly so that it can be taken
> into account when calculating the ABI structure size.
>
> Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Oops, that's bad. Thanks for catching this.
I applied it now to for-next branch.
Could you fix alsa-lib code as well?
Takashi
> ---
> include/uapi/sound/asound.h | 3 ++-
> sound/core/pcm_compat.c | 3 ++-
> 2 files changed, 4 insertions(+), 2 deletions(-)
>
> --- a/include/uapi/sound/asound.h
> +++ b/include/uapi/sound/asound.h
> @@ -408,8 +408,9 @@ struct snd_pcm_status {
> snd_pcm_uframes_t avail_max; /* max frames available on hw since last status */
> snd_pcm_uframes_t overrange; /* count of ADC (capture) overrange detections from last status */
> snd_pcm_state_t suspended_state; /* suspended stream state */
> + __u32 reserved_alignment; /* must be filled with zero */
> struct timespec audio_tstamp; /* from sample counter or wall clock */
> - unsigned char reserved[60-sizeof(struct timespec)]; /* must be filled with zero */
> + unsigned char reserved[56-sizeof(struct timespec)]; /* must be filled with zero */
> };
>
> struct snd_pcm_mmap_status {
> --- a/sound/core/pcm_compat.c
> +++ b/sound/core/pcm_compat.c
> @@ -190,8 +190,9 @@ struct snd_pcm_status32 {
> u32 avail_max;
> u32 overrange;
> s32 suspended_state;
> + u32 reserved_alignment;
> struct compat_timespec audio_tstamp;
> - unsigned char reserved[60-sizeof(struct compat_timespec)];
> + unsigned char reserved[56-sizeof(struct compat_timespec)];
> } __attribute__((packed));
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ALSA: core: fix 64-bit SNDRV_PCM_IOCTL_STATUS ABI breakage
2012-10-28 8:54 ` Takashi Iwai
@ 2012-10-28 10:45 ` Clemens Ladisch
2012-10-29 7:15 ` Takashi Iwai
0 siblings, 1 reply; 4+ messages in thread
From: Clemens Ladisch @ 2012-10-28 10:45 UTC (permalink / raw)
To: Takashi Iwai; +Cc: alsa-devel, Pierre-Louis Bossart
Takashi Iwai wrote:
> Clemens Ladisch wrote:
>> Commit 4eeaaeaea (ALSA: core: add hooks for audio timestamps) added the
>> new audio_tstamp field to struct snd_pcm_status. However, struct
>> timespec requires 64-bit alignment, so the 64-bit compiler would insert
>> 32 bits of padding before this field, which broke SNDRV_PCM_IOCTL_STATUS
>> with error messages like this:
>>
>> kernel: unknown ioctl = 0x80984120
>>
>> To solve this, insert the padding explicitly so that it can be taken
>> into account when calculating the ABI structure size.
>>
>> Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
>
> Oops, that's bad. Thanks for catching this.
> I applied it now to for-next branch.
>
> Could you fix alsa-lib code as well?
Oops; done.
Regards,
Clemens
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ALSA: core: fix 64-bit SNDRV_PCM_IOCTL_STATUS ABI breakage
2012-10-28 10:45 ` Clemens Ladisch
@ 2012-10-29 7:15 ` Takashi Iwai
0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2012-10-29 7:15 UTC (permalink / raw)
To: Clemens Ladisch; +Cc: alsa-devel, Pierre-Louis Bossart
At Sun, 28 Oct 2012 11:45:35 +0100,
Clemens Ladisch wrote:
>
> Takashi Iwai wrote:
> > Clemens Ladisch wrote:
> >> Commit 4eeaaeaea (ALSA: core: add hooks for audio timestamps) added the
> >> new audio_tstamp field to struct snd_pcm_status. However, struct
> >> timespec requires 64-bit alignment, so the 64-bit compiler would insert
> >> 32 bits of padding before this field, which broke SNDRV_PCM_IOCTL_STATUS
> >> with error messages like this:
> >>
> >> kernel: unknown ioctl = 0x80984120
> >>
> >> To solve this, insert the padding explicitly so that it can be taken
> >> into account when calculating the ABI structure size.
> >>
> >> Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
> >
> > Oops, that's bad. Thanks for catching this.
> > I applied it now to for-next branch.
> >
> > Could you fix alsa-lib code as well?
>
> Oops; done.
Thanks!
Takashi
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-10-29 7:15 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-27 19:55 [PATCH] ALSA: core: fix 64-bit SNDRV_PCM_IOCTL_STATUS ABI breakage Clemens Ladisch
2012-10-28 8:54 ` Takashi Iwai
2012-10-28 10:45 ` Clemens Ladisch
2012-10-29 7:15 ` Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).