소스 검색

qcacld-3.0: Avoid kernel print while handling FILS discovery frame

Currently in case of SAP mode, Host gets FILS discovery frame
in every 20TU for the first 3 mins. These frames are not required
in host and will be dropped. But Host has pe_warn print in order
to indicate this action frame is Unhandled.

Fix is to change level of log (warning to debug) in order
to avoid spamming in kernel message buffer.

Change-Id: I3ec585a37b190041ef2f88a03e201aa7a5ff7938
CRs-Fixed: 2499907
Abhinav Kumar 5 년 전
부모
커밋
42622bc171
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      core/mac/src/pe/lim/lim_process_action_frame.c

+ 3 - 3
core/mac/src/pe/lim/lim_process_action_frame.c

@@ -2094,8 +2094,8 @@ void lim_process_action_frame(struct mac_context *mac_ctx,
 					rx_pkt_info), RXMGMT_FLAG_NONE);
 			break;
 		default:
-			pe_warn("Unhandled public action frame: %x",
-				action_hdr->actionID);
+			pe_debug("Unhandled public action frame: %d",
+				 action_hdr->actionID);
 			break;
 		}
 		break;
@@ -2177,7 +2177,7 @@ void lim_process_action_frame(struct mac_context *mac_ctx,
 				RXMGMT_FLAG_NONE);
 			break;
 		default:
-			pe_warn("Unhandled - Protected Dual Public Action");
+			pe_debug("Unhandled - Protected Dual Public Action");
 			break;
 		}
 		break;