~ubuntu-branches/debian/experimental/linux-2.6/experimental

« back to all changes in this revision

Viewing changes to kernel/printk.c

  • Committer: Package Import Robot
  • Author(s): Ben Hutchings, Ben Hutchings
  • Date: 2012-03-21 03:08:36 UTC
  • mfrom: (1.2.34)
  • Revision ID: package-import@ubuntu.com-20120321030836-rvavg03lkz15wj2q
Tags: 3.3-1~experimental.1
* New upstream release: http://kernelnewbies.org/Linux_3.3

[ Ben Hutchings ]
* [x86] crypto: Enable CRYPTO_SERPENT_SSE2_586, CRYPTO_SERPENT_SSE2_X86_64
* aufs: Update to aufs3.x-rcN-20120312
* IB: Enable INFINIBAND_SRPT as module (Closes: #663041)

Show diffs side-by-side

added added

removed removed

Lines of Context:
702
702
#endif
703
703
module_param_named(time, printk_time, bool, S_IRUGO | S_IWUSR);
704
704
 
 
705
static bool always_kmsg_dump;
 
706
module_param_named(always_kmsg_dump, always_kmsg_dump, bool, S_IRUGO | S_IWUSR);
 
707
 
705
708
/* Check if we have any console registered that can be called early in boot. */
706
709
static int have_callable_console(void)
707
710
{
1732
1735
        unsigned long l1, l2;
1733
1736
        unsigned long flags;
1734
1737
 
 
1738
        if ((reason > KMSG_DUMP_OOPS) && !always_kmsg_dump)
 
1739
                return;
 
1740
 
1735
1741
        /* Theoretically, the log could move on after we do this, but
1736
1742
           there's not a lot we can do about that. The new messages
1737
1743
           will overwrite the start of what we dump. */