aboutsummaryrefslogtreecommitdiff
path: root/util-linux/dmesg.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-03-29 17:26:14 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-03-29 17:26:14 +0000
commitb256bd334fe354420eca91ad9a1d9346b2da2b27 (patch)
tree4279dce899dd237e022f3d79d5dc4a1e3046cbc9 /util-linux/dmesg.c
parentca087713f24d3e856c46829c005d3aa43a5dbdf1 (diff)
downloadbusybox-b256bd334fe354420eca91ad9a1d9346b2da2b27.tar.gz
- shrink dmesg a bit.
http://busybox.net/lists/busybox/2006-March/019477.html
Diffstat (limited to 'util-linux/dmesg.c')
-rw-r--r--util-linux/dmesg.c63
1 files changed, 22 insertions, 41 deletions
diff --git a/util-linux/dmesg.c b/util-linux/dmesg.c
index 2ca882714..2166edba3 100644
--- a/util-linux/dmesg.c
+++ b/util-linux/dmesg.c
@@ -20,7 +20,6 @@
#include <stdio.h>
#include <stdlib.h>
-#include <getopt.h>
#include <errno.h>
#include <sys/klog.h>
@@ -28,71 +27,53 @@
int dmesg_main(int argc, char **argv)
{
- char *buf
-#ifdef CONFIG_FEATURE_CLEAN_UP
- = NULL
-#endif
- ;
+ char *buf, *tmp;
int bufsize = 8196;
- int i, n;
- int level = 0;
- int lastc;
- int cmd = 3;
+ int i, n = 0;
+ int c = 3;
- while ((i = getopt(argc, argv, "cn:s:")) > 0) {
- switch (i) {
- case 'c':
- cmd = 4;
- break;
- case 'n':
- cmd = 8;
- level = bb_xgetlarg(optarg, 10, 0, 10);
- break;
- case 's':
+ i = bb_getopt_ulflags(argc, argv, "cn:s:", &buf, &tmp);
+ if (i & 1)
+ c = 4;
+ if (i & 2) {
+ c = 8;
+ n = bb_xgetlarg(buf, 10, 0, 10);
+ }
+ if (i & 4)
/* I think a 512k max kernel ring buffer is big enough for
* anybody, as the default is 16k... Could be wrong though.
* If so I'm sure I'll hear about it by the enraged masses*/
- bufsize = bb_xgetlarg(optarg, 10, 4096, 512*1024);
- break;
- default:
- bb_show_usage();
- }
- }
+ bufsize = bb_xgetlarg(tmp, 10, 4096, 512*1024);
- if (optind < argc) {
- bb_show_usage();
- }
-
- if (cmd == 8) {
- if (klogctl(cmd, NULL, level) < 0)
+ if (c == 8) {
+ if (klogctl(c, NULL, n) < 0)
goto die_the_death;
goto all_done;
}
buf = xmalloc(bufsize);
- if ((n = klogctl(cmd, buf, bufsize)) < 0)
+ if ((n = klogctl(c, buf, bufsize)) < 0)
goto die_the_death;
- lastc = '\n';
+ c = '\n';
for (i = 0; i < n; i++) {
- if (lastc == '\n' && buf[i] == '<') {
+ if (c == '\n' && buf[i] == '<') {
i++;
while (buf[i] >= '0' && buf[i] <= '9')
i++;
if (buf[i] == '>')
i++;
}
- lastc = buf[i];
- putchar(lastc);
+ c = buf[i];
+ putchar(c);
}
- if (lastc != '\n')
+ if (c != '\n')
putchar('\n');
all_done:
-#ifdef CONFIG_FEATURE_CLEAN_UP
- if (buf) {
+ if (ENABLE_FEATURE_CLEAN_UP) {
free(buf);
}
-#endif
+
return EXIT_SUCCESS;
die_the_death:
bb_perror_nomsg_and_die();