1195972f6Sopenharmony_ciFrom 5527e02b7ae7f27db8964ad55747326b98e33634 Mon Sep 17 00:00:00 2001
2195972f6Sopenharmony_ciFrom: wu-changsheng <wuchangsheng2@huawei.com>
3195972f6Sopenharmony_ciDate: Wed, 21 Dec 2022 22:47:04 +0800
4195972f6Sopenharmony_ciSubject: [PATCH] reduce struct pbuf size
5195972f6Sopenharmony_ci
6195972f6Sopenharmony_ci---
7195972f6Sopenharmony_ci src/include/lwip/pbuf.h | 2 +-
8195972f6Sopenharmony_ci 1 file changed, 1 insertion(+), 1 deletion(-)
9195972f6Sopenharmony_ci
10195972f6Sopenharmony_cidiff --git a/src/include/lwip/pbuf.h b/src/include/lwip/pbuf.h
11195972f6Sopenharmony_ciindex 380ac8e..1124408 100644
12195972f6Sopenharmony_ci--- a/src/include/lwip/pbuf.h
13195972f6Sopenharmony_ci+++ b/src/include/lwip/pbuf.h
14195972f6Sopenharmony_ci@@ -229,7 +229,7 @@ struct pbuf {
15195972f6Sopenharmony_ci   u64_t l3_len:9;
16195972f6Sopenharmony_ci   /* < L4 (TCP/UDP) Header Length. */
17195972f6Sopenharmony_ci   u64_t l4_len:8;
18195972f6Sopenharmony_ci-  u16_t header_off;
19195972f6Sopenharmony_ci+  u8_t header_off;
20195972f6Sopenharmony_ci   u8_t rexmit;
21195972f6Sopenharmony_ci   u8_t in_write;
22195972f6Sopenharmony_ci   u8_t head;
23195972f6Sopenharmony_ci-- 
24195972f6Sopenharmony_ci2.23.0
25195972f6Sopenharmony_ci
26