+static int __q6asm_run(struct audio_client *ac, uint32_t flags,Should be GFP_ATOMIC as this API is also called from interrupt context
+ uint32_t msw_ts, uint32_t lsw_ts, bool wait)
+{
+ struct asm_session_cmd_run_v2 *run;
+ struct apr_pkt *pkt;
+ int pkt_size, rc;
+ void *p;
+
+ pkt_size = APR_HDR_SIZE + sizeof(*run);
+ p = kzalloc(pkt_size, GFP_KERNEL);
+ if (!p)[..]
+ return -ENOMEM;
+
+int q6asm_read(struct audio_client *ac)same here. GFP_ATOMIC
+{
+ struct asm_data_cmd_read_v2 *read;
+ struct audio_port_data *port;
+ struct audio_buffer *ab;
+ struct apr_pkt *pkt;
+ int pkt_size;
+ int rc = 0;
+ void *p;
+
+ if (!(ac->io_mode & ASM_SYNC_IO_MODE))
+ return 0;
+
+ pkt_size = APR_HDR_SIZE + sizeof(*read);
+ p = kzalloc(pkt_size, GFP_KERNEL);
+ if (!p)[..]
+ return -ENOMEM;
+int q6asm_write_async(struct audio_client *ac, uint32_t len, uint32_t msw_ts,GFP_ATOMIC
+ uint32_t lsw_ts, uint32_t flags)
+{
+ struct asm_data_cmd_write_v2 *write;
+ struct audio_port_data *port;
+ struct audio_buffer *ab;
+ struct apr_pkt *pkt;
+ int pkt_size;
+ int rc = 0;
+ void *p;
+
+ pkt_size = APR_HDR_SIZE + sizeof(*write);
+ p = kzalloc(pkt_size, GFP_KERNEL);
+ if (!p)Thanks,
+ return -ENOMEM;