From ed5d5723196e47290beda01cc4785cfe5cbc5266 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Fri, 6 Jun 2025 16:24:06 -0600 Subject: sbc_harness: config.h: Remove duplicate --- cmd/sbc_harness/config/config.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'cmd/sbc_harness/config/config.h') diff --git a/cmd/sbc_harness/config/config.h b/cmd/sbc_harness/config/config.h index ca23462..7a91001 100644 --- a/cmd/sbc_harness/config/config.h +++ b/cmd/sbc_harness/config/config.h @@ -49,8 +49,6 @@ #define CONFIG_9P_SRV_DEBUG 1 /* bool */ -#define CONFIG_9P_SRV_MAX_MSG_SIZE ((4*1024)+24) - /** * This max-msg-size is sized so that a Twrite message can return * 8KiB of data. -- cgit v1.2.3-2-g168b From 945756b1b050bdf09d1119854cc5b22ad15efacd Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Thu, 29 May 2025 22:25:02 -0400 Subject: lib9p_core: Switch to use error.h --- cmd/sbc_harness/config/config.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'cmd/sbc_harness/config/config.h') diff --git a/cmd/sbc_harness/config/config.h b/cmd/sbc_harness/config/config.h index 7a91001..61745e5 100644 --- a/cmd/sbc_harness/config/config.h +++ b/cmd/sbc_harness/config/config.h @@ -37,8 +37,6 @@ /* 9P *************************************************************************/ -#define CONFIG_9P_MAX_ERR_SIZE 128 /* 128 is what Plan 9 4e uses */ - #define CONFIG_9P_ENABLE_9P2000 1 /* bool */ #define CONFIG_9P_ENABLE_9P2000_u 1 /* bool */ #define CONFIG_9P_ENABLE_9P2000_e 0 /* bool */ @@ -67,6 +65,7 @@ * (8*1024)+160 in 2e and 3e. */ #define CONFIG_9P_SRV_MAX_MSG_SIZE ((4*1024)+24) +#define CONFIG_9P_SRV_MAX_ERR_SIZE 128 /* 128 is what Plan 9 4e uses */ /** * Maximum host-data-structure size. A message may be larger in * unmarshaled-host-structures than marshaled-net-bytes due to (1) -- cgit v1.2.3-2-g168b