diff options
author | Sriranjan Srikantam <c_ssrika@qualcomm.com> | 2009-08-18 16:06:21 +0530 |
---|---|---|
committer | yes <c_shylen@quicinc.com> | 2009-08-31 11:17:15 -0700 |
commit | df1c875791563469a86c97cd07e887dfa0f14531 (patch) | |
tree | eb18e79c6b08a0eabbf6e54a42115fbeacefa9c5 | |
parent | 412424422007cf8888f465ed14058748b92a7a7c (diff) | |
download | bionic-M76XXTSNCJNLYA44151008.zip bionic-M76XXTSNCJNLYA44151008.tar.gz bionic-M76XXTSNCJNLYA44151008.tar.bz2 |
bionic: Add meta field size to AIO buffer structureM76XXTSNCJNLYA44151019M76XXTSNCJNLYA44151017M76XXTSNCJNLYA44151016M76XXTSNCJNLYA44151013M76XXTSNCJNLYA44151008M76XXTSNCJNLYA44151007M76XXTSNCJNLYA44151005M76XXTSNCJNLYA44151004M76XXTSNCJNLYA44151003
The meta field size parameter is required in AIO buffer structure for
using in NT2 mode in asynchronous I/O mechanism.
This change corresponds to kernel commit
effa0928ecd8a21d67391fda75c236c9c427d974
-rw-r--r-- | libc/kernel/common/linux/msm_audio.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/kernel/common/linux/msm_audio.h b/libc/kernel/common/linux/msm_audio.h index cf55001..bd21168 100644 --- a/libc/kernel/common/linux/msm_audio.h +++ b/libc/kernel/common/linux/msm_audio.h @@ -117,6 +117,7 @@ struct msm_audio_aio_buf { uint32_t buf_len; uint32_t data_len; void *private_data; + unsigned short mfield_sz; /*only useful for data has meta field */ }; #define SND_IOCTL_MAGIC 's' |