瀏覽代碼

ALSA: compress: Cancel the optimization of compiler and fix the size of struct for all platform.

Cancel the optimization of compiler for struct snd_compr_avail
which size will be 0x1c in 32bit kernel while 0x20 in 64bit
kernel under the optimizer. That will make compaction between
32bit and 64bit. So add packed to fix the size of struct
snd_compr_avail to 0x1c for all platform.

Signed-off-by: Zhang Dongxing <dongxing.zhang@intel.com>
Signed-off-by: xiaoming wang <xiaoming.wang@intel.com>
Acked-by: Vinod Koul <vinod.koul@intel.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Wang, Xiaoming 11 年之前
父節點
當前提交
2bd0ae464a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      include/uapi/sound/compress_offload.h

+ 1 - 1
include/uapi/sound/compress_offload.h

@@ -80,7 +80,7 @@ struct snd_compr_tstamp {
 struct snd_compr_avail {
 struct snd_compr_avail {
 	__u64 avail;
 	__u64 avail;
 	struct snd_compr_tstamp tstamp;
 	struct snd_compr_tstamp tstamp;
-};
+} __attribute__((packed));
 
 
 enum snd_compr_direction {
 enum snd_compr_direction {
 	SND_COMPRESS_PLAYBACK = 0,
 	SND_COMPRESS_PLAYBACK = 0,