Parcourir la source

Merge "ipc: reset the ret to ENETRESET when gpr_send_pkt returns ECONNRESET"

qctecmdr il y a 2 ans
Parent
commit
3d33bee886
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 3 1
      ipc/audio-pkt.c

+ 3 - 1
ipc/audio-pkt.c

@@ -1,5 +1,5 @@
 /* Copyright (c) 2019-2021, The Linux Foundation. All rights reserved.
- * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
+ * Copyright (c) 2022-2023, Qualcomm Innovation Center, Inc. All rights reserved.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License version 2 and
@@ -406,6 +406,8 @@ ssize_t audio_pkt_write(struct file *file, const char __user *buf,
 	ret = gpr_send_pkt(ap_priv->adev,(struct gpr_pkt *) kbuf);
 	if (ret < 0) {
 		AUDIO_PKT_ERR("APR Send Packet Failed ret -%d\n", ret);
+		if (ret == -ECONNRESET)
+			ret = -ENETRESET;
 	}
 	mutex_unlock(&audpkt_dev->lock);