Remove deadcode caused by removal of format1 arg

Commit 55abb0929e removed the never
used format1 argument of spl_debug_msg().  That in turn resulted
in some deadcode which should be removed since it's now useless.
This commit is contained in:
Brian Behlendorf 2010-07-21 16:31:42 -07:00
parent 15b52c083e
commit 8b0eb3f0dc
1 changed files with 5 additions and 14 deletions

View File

@ -669,7 +669,6 @@ spl_debug_msg(void *arg, int subsys, int mask, const char *file,
int max_nob;
va_list ap;
int i;
int remain;
if (subsys == 0)
subsys = SS_DEBUG_SUBSYS;
@ -726,13 +725,8 @@ spl_debug_msg(void *arg, int subsys, int mask, const char *file,
needed = 0;
if (format) {
remain = max_nob - needed;
if (remain < 0)
remain = 0;
va_start(ap, format);
needed += vsnprintf(string_buf+needed, remain,
format, ap);
needed += vsnprintf(string_buf, max_nob, format, ap);
va_end(ap);
}
@ -807,14 +801,11 @@ console:
needed = 0;
if (format != NULL) {
remain = TRACE_CONSOLE_BUFFER_SIZE - needed;
if (remain > 0) {
va_start(ap, format);
needed += vsnprintf(string_buf+needed, remain,
format, ap);
needed += vsnprintf(string_buf,
TRACE_CONSOLE_BUFFER_SIZE, format, ap);
va_end(ap);
}
}
trace_print_to_console(&header, mask,
string_buf, needed, file, fn);