aboutsummaryrefslogtreecommitdiff
path: root/util-linux/mdev.c
diff options
context:
space:
mode:
authorJames Byrne <james.byrne@origamienergy.com>2019-07-02 11:35:03 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2019-07-02 11:35:03 +0200
commit6937487be73cd4563b876413277a295a5fe2f32c (patch)
treef16cc9999a7c827891e6ec8d99c699fc791008ee /util-linux/mdev.c
parentcaecfdc20d450686cd1f7e9b5f650322f894b3c2 (diff)
downloadbusybox-w32-6937487be73cd4563b876413277a295a5fe2f32c.tar.gz
busybox-w32-6937487be73cd4563b876413277a295a5fe2f32c.tar.bz2
busybox-w32-6937487be73cd4563b876413277a295a5fe2f32c.zip
libbb: reduce the overhead of single parameter bb_error_msg() calls
Back in 2007, commit 0c97c9d43707 ("'simple' error message functions by Loic Grenie") introduced bb_simple_perror_msg() to allow for a lower overhead call to bb_perror_msg() when only a string was being printed with no parameters. This saves space for some CPU architectures because it avoids the overhead of a call to a variadic function. However there has never been a simple version of bb_error_msg(), and since 2007 many new calls to bb_perror_msg() have been added that only take a single parameter and so could have been using bb_simple_perror_message(). This changeset introduces 'simple' versions of bb_info_msg(), bb_error_msg(), bb_error_msg_and_die(), bb_herror_msg() and bb_herror_msg_and_die(), and replaces all calls that only take a single parameter, or use something like ("%s", arg), with calls to the corresponding 'simple' version. Since it is likely that single parameter calls to the variadic functions may be accidentally reintroduced in the future a new debugging config option WARN_SIMPLE_MSG has been introduced. This uses some macro magic which will cause any such calls to generate a warning, but this is turned off by default to avoid use of the unpleasant macros in normal circumstances. This is a large changeset due to the number of calls that have been replaced. The only files that contain changes other than simple substitution of function calls are libbb.h, libbb/herror_msg.c, libbb/verror_msg.c and libbb/xfuncs_printf.c. In miscutils/devfsd.c, networking/udhcp/common.h and util-linux/mdev.c additonal macros have been added for logging so that single parameter and multiple parameter logging variants exist. The amount of space saved varies considerably by architecture, and was found to be as follows (for 'defconfig' using GCC 7.4): Arm: -92 bytes MIPS: -52 bytes PPC: -1836 bytes x86_64: -938 bytes Note that for the MIPS architecture only an exception had to be made disabling the 'simple' calls for 'udhcp' (in networking/udhcp/common.h) because it made these files larger on MIPS. Signed-off-by: James Byrne <james.byrne@origamienergy.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/mdev.c')
-rw-r--r--util-linux/mdev.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c
index 9cb3586f1..207a112c1 100644
--- a/util-linux/mdev.c
+++ b/util-linux/mdev.c
@@ -250,18 +250,24 @@
250 250
251#if DEBUG_LVL >= 1 251#if DEBUG_LVL >= 1
252# define dbg1(...) do { if (G.verbose) bb_error_msg(__VA_ARGS__); } while(0) 252# define dbg1(...) do { if (G.verbose) bb_error_msg(__VA_ARGS__); } while(0)
253# define dbg1s(msg) do { if (G.verbose) bb_simple_error_msg(msg); } while(0)
253#else 254#else
254# define dbg1(...) ((void)0) 255# define dbg1(...) ((void)0)
256# define dbg1s(msg) ((void)0)
255#endif 257#endif
256#if DEBUG_LVL >= 2 258#if DEBUG_LVL >= 2
257# define dbg2(...) do { if (G.verbose >= 2) bb_error_msg(__VA_ARGS__); } while(0) 259# define dbg2(...) do { if (G.verbose >= 2) bb_error_msg(__VA_ARGS__); } while(0)
260# define dbg2s(msg) do { if (G.verbose >= 2) bb_simple_error_msg(msg); } while(0)
258#else 261#else
259# define dbg2(...) ((void)0) 262# define dbg2(...) ((void)0)
263# define dbg2s(msg) ((void)0)
260#endif 264#endif
261#if DEBUG_LVL >= 3 265#if DEBUG_LVL >= 3
262# define dbg3(...) do { if (G.verbose >= 3) bb_error_msg(__VA_ARGS__); } while(0) 266# define dbg3(...) do { if (G.verbose >= 3) bb_error_msg(__VA_ARGS__); } while(0)
267# define dbg3s(msg) do { if (G.verbose >= 3) bb_simple_error_msg(msg); } while(0)
263#else 268#else
264# define dbg3(...) ((void)0) 269# define dbg3(...) ((void)0)
270# define dbg3s(msg) ((void)0)
265#endif 271#endif
266 272
267 273
@@ -1021,7 +1027,7 @@ wait_for_seqfile(unsigned expected_seq)
1021 /* seed file: write out seq ASAP */ 1027 /* seed file: write out seq ASAP */
1022 xwrite_str(seq_fd, utoa(expected_seq)); 1028 xwrite_str(seq_fd, utoa(expected_seq));
1023 xlseek(seq_fd, 0, SEEK_SET); 1029 xlseek(seq_fd, 0, SEEK_SET);
1024 dbg2("first seq written"); 1030 dbg2s("first seq written");
1025 break; 1031 break;
1026 } 1032 }
1027 seqbufnum = atoll(seqbuf); 1033 seqbufnum = atoll(seqbuf);
@@ -1165,7 +1171,7 @@ static void daemon_loop(char *temp, int fd)
1165 1171
1166 len = safe_read(fd, netbuf, sizeof(netbuf) - 1); 1172 len = safe_read(fd, netbuf, sizeof(netbuf) - 1);
1167 if (len < 0) { 1173 if (len < 0) {
1168 bb_perror_msg_and_die("read"); 1174 bb_simple_perror_msg_and_die("read");
1169 } 1175 }
1170 end = netbuf + len; 1176 end = netbuf + len;
1171 *end = '\0'; 1177 *end = '\0';