Re: [PATCH 0/4][Diskdump]Update patches

From: Jeff Garzik
Date: Wed Jun 16 2004 - 12:28:13 EST


Takao Indoh wrote:
static inline void tasklet_schedule(struct tasklet_struct *t)
{
+ if(crashdump_mode()) {
+ diskdump_tasklet_schedule(t);
+ return;
+ }
+


I would suggest

if (unlikely(crashdump_mode()))

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/