aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWang, Xiaoming <xiaoming.wang@intel.com>2014-06-12 18:47:07 -0400
committerTakashi Iwai <tiwai@suse.de>2014-06-12 11:55:41 +0200
commit2bd0ae464a6cf7363bbf72c8545e0aa43caa57f0 (patch)
tree435a7f632e9e414f672e8667c5f1c1188a5abec3
parent6538de03a98f922b212fa2b57c71e0316ff7e59a (diff)
downloadopenvswitch-2bd0ae464a6cf7363bbf72c8545e0aa43caa57f0.tar.gz
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>
-rw-r--r--include/uapi/sound/compress_offload.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/sound/compress_offload.h b/include/uapi/sound/compress_offload.h
index 5759810e1c1b97..21eed488783f2d 100644
--- a/include/uapi/sound/compress_offload.h
+++ b/include/uapi/sound/compress_offload.h
@@ -80,7 +80,7 @@ struct snd_compr_tstamp {
struct snd_compr_avail {
__u64 avail;
struct snd_compr_tstamp tstamp;
-};
+} __attribute__((packed));
enum snd_compr_direction {
SND_COMPRESS_PLAYBACK = 0,