Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 272191
b: refs/heads/master
c: 0eca6b7
h: refs/heads/master
i:
  272189: fb45953
  272187: d706f55
  272183: 5623e2b
  272175: ca209cd
  272159: 0cc1f87
  272127: f5e194b
v: v3
  • Loading branch information
Yanmin Zhang authored and Linus Torvalds committed Nov 1, 2011
1 parent f77054b commit 48a0231
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 73efc0394e148d0e15583e13712637831f926720
refs/heads/master: 0eca6b7c78fd997e02bd9850e608102382b7822e
3 changes: 3 additions & 0 deletions trunk/Documentation/kernel-parameters.txt
Original file line number Diff line number Diff line change
Expand Up @@ -973,6 +973,9 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
ignore_loglevel [KNL]
Ignore loglevel setting - this will print /all/
kernel messages to the console. Useful for debugging.
We also add it as printk module parameter, so users
could change it dynamically, usually by
/sys/module/printk/parameters/ignore_loglevel.

ihash_entries= [KNL]
Set number of hash buckets for inode cache.
Expand Down
3 changes: 3 additions & 0 deletions trunk/kernel/printk.c
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,9 @@ static int __init ignore_loglevel_setup(char *str)
}

early_param("ignore_loglevel", ignore_loglevel_setup);
module_param_named(ignore_loglevel, ignore_loglevel, bool, S_IRUGO | S_IWUSR);
MODULE_PARM_DESC(ignore_loglevel, "ignore loglevel setting, to"
"print all kernel messages to the console.");

/*
* Write out chars from start to end - 1 inclusive
Expand Down

0 comments on commit 48a0231

Please sign in to comment.