'printk'에 해당하는 글 2건

출처 : http://lwn.net/Articles/497560/


printk: add relative printk timing support


This patch adds support for relative timestamps in printk output.

First, this is how it looks now:

[  120.001386] foo
[  181.036862] bar
[  186.070696] zoot
[  196.288022] foo
[  257.415895] bar
[  257.416580] zoot

Next, with Linus' suggestion (Month and date, no seconds):

[May 17 14:13] foo
[May 17 14:14] bar
[+05.00026906] zoot
[+10.00054898] foo
[May 17 14:15] bar
[+00.00000668] zoot

And Peter's suggestion (MS accurate absolute time):

[14:16:57.970] foo
[14:17:59.063] bar
[+05.00032139] zoot
[+10.00336079] foo
[14:19:15.677] bar
[+00.00001905] zoot


WRITTEN BY
RootFriend
개인적으로... 나쁜 기억력에 도움되라고 만들게되었습니다.

,

출처 :  http://tuxthink.blogspot.kr/2012/07/printk-and-console-log-level.html


printk and console log level.

printk is used in kernel programming to print messages into the kernel logs. 

The syntax of printk is 

 

The log levels decide the importance of the message being printed, kernel defines 8 log levels in the file printk.h 

 

We can see each log level corresponds to a number and the lower the number higher the importance of the message. 
The levels are useful in deciding what should be displayed to the user on the console and what should not be. 

Every console has log level called as the the console log level and any message with a log level number lesser than the console log level gets displayed on the console, and other messages which have a log level number higher or equal to the console log level are logged in the kernel log which can be looked into using the command "dmesg". 

The console loglevel can be found by looking into the file /proc/sys/kernel/printk 

 

The first number in the output is the console log level, the second is the default log level, third is the minimum log level and fourth is the maximum log level. 

Log level 4 corresponds to KERN_WARNING. Thus all the messages with log levels 3,2,1 and 0 will get displayed on the screen as well as logged and the messages with log level 4,5,6,7 only get logged and can be viewed using "dmesg". 

The console log level can be changed by writing into the proc entry 

 

Now the console log level is set to 6, which is KERN_INFO. 

We can test logging by using the following module 

hello.c: 

 

The printk called in the init function uses KERN_WARNING which is log level and lesser than 6 which is the console log level and hence should be seen on the screen. 

The printk used in the exit function is KERN_INFO which is log level 6,same as the console log level, and hence should not be visible on the screen. 

Note: We can test the operation of the code only by logging into a text mode as none of the messages are displayed on a terminal of GUI. 

Makefile: 

 

Compile and insert 

 

We can see the hello world being printed on the screen. 

 

The good bye world message gets logged but is not printed on the screen but can be see in the logs. 

Thus using printk and the console log levels we can control the kernel messages visible to the user. 


WRITTEN BY
RootFriend
개인적으로... 나쁜 기억력에 도움되라고 만들게되었습니다.

,