I put some debugging messages in the kernel code.
have checked /var/log/messages, dmesg and there is no such dump there.
syslogd is running on the machine
i also changed /proc/sys/kernel/printk to
8 4 1 7
any idea what can be the problem?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The easiest explanation is your
printk()is not being called.Keep it simple and stick to checking
dmesg(1)output while you’re debugging this problem — all thesyslog(3)/var/log/messagesand the console based output are separate from the issue of the messages not even showing up in the kernel’s message buffer.