소스 검색

common: Bump the buffer size

1024 is too small for many kernel string limits (i.e. PATH_MAX, which is
4096).

Signed-off-by: Michal Rostecki <[email protected]>
Michal Rostecki 2 년 전
부모
커밋
70b4e68130
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      aya-log/aya-log-common/src/lib.rs

+ 1 - 1
aya-log/aya-log-common/src/lib.rs

@@ -1,6 +1,6 @@
 #![no_std]
 
-pub const LOG_BUF_CAPACITY: usize = 1024;
+pub const LOG_BUF_CAPACITY: usize = 8192;
 
 pub const LOG_FIELDS: usize = 7;