Commit 0b3191d4 authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman

ttyprintk: Neaten and simplify printing

The code is a bit obscure.

Simplify it by using a single routine to flush the tpk_buffer and
emit the buffer prefixed with "[U] ".
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ac182e8a
...@@ -31,60 +31,53 @@ static struct ttyprintk_port tpk_port; ...@@ -31,60 +31,53 @@ static struct ttyprintk_port tpk_port;
* printk messages (also suitable for logging service): * printk messages (also suitable for logging service):
* - any cr is replaced by nl * - any cr is replaced by nl
* - adds a ttyprintk source tag in front of each line * - adds a ttyprintk source tag in front of each line
* - too long message is fragmeted, with '\'nl between fragments * - too long message is fragmented, with '\'nl between fragments
* - TPK_STR_SIZE isn't really the write_room limiting factor, bcause * - TPK_STR_SIZE isn't really the write_room limiting factor, because
* it is emptied on the fly during preformatting. * it is emptied on the fly during preformatting.
*/ */
#define TPK_STR_SIZE 508 /* should be bigger then max expected line length */ #define TPK_STR_SIZE 508 /* should be bigger then max expected line length */
#define TPK_MAX_ROOM 4096 /* we could assume 4K for instance */ #define TPK_MAX_ROOM 4096 /* we could assume 4K for instance */
static const char *tpk_tag = "[U] "; /* U for User */
static int tpk_curr; static int tpk_curr;
static char tpk_buffer[TPK_STR_SIZE + 4];
static void tpk_flush(void)
{
if (tpk_curr > 0) {
tpk_buffer[tpk_curr] = '\0';
pr_info("[U] %s\n", tpk_buffer);
tpk_curr = 0;
}
}
static int tpk_printk(const unsigned char *buf, int count) static int tpk_printk(const unsigned char *buf, int count)
{ {
static char tmp[TPK_STR_SIZE + 4];
int i = tpk_curr; int i = tpk_curr;
if (buf == NULL) { if (buf == NULL) {
/* flush tmp[] */ tpk_flush();
if (tpk_curr > 0) {
/* non nl or cr terminated message - add nl */
tmp[tpk_curr + 0] = '\n';
tmp[tpk_curr + 1] = '\0';
printk(KERN_INFO "%s%s", tpk_tag, tmp);
tpk_curr = 0;
}
return i; return i;
} }
for (i = 0; i < count; i++) { for (i = 0; i < count; i++) {
tmp[tpk_curr] = buf[i]; if (tpk_curr >= TPK_STR_SIZE) {
if (tpk_curr < TPK_STR_SIZE) { /* end of tmp buffer reached: cut the message in two */
tpk_buffer[tpk_curr++] = '\\';
tpk_flush();
}
switch (buf[i]) { switch (buf[i]) {
case '\r': case '\r':
/* replace cr with nl */ tpk_flush();
tmp[tpk_curr + 0] = '\n';
tmp[tpk_curr + 1] = '\0';
printk(KERN_INFO "%s%s", tpk_tag, tmp);
tpk_curr = 0;
if ((i + 1) < count && buf[i + 1] == '\n') if ((i + 1) < count && buf[i + 1] == '\n')
i++; i++;
break; break;
case '\n': case '\n':
tmp[tpk_curr + 1] = '\0'; tpk_flush();
printk(KERN_INFO "%s%s", tpk_tag, tmp);
tpk_curr = 0;
break; break;
default: default:
tpk_curr++; tpk_buffer[tpk_curr++] = buf[i];
} break;
} else {
/* end of tmp buffer reached: cut the message in two */
tmp[tpk_curr + 1] = '\\';
tmp[tpk_curr + 2] = '\n';
tmp[tpk_curr + 3] = '\0';
printk(KERN_INFO "%s%s", tpk_tag, tmp);
tpk_curr = 0;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment