Search code examples
linux-kernellineprintk

How to print a message in one single line in Linux kernel


I am making a simple enque/deque program in kernel. I want to print message in kernel, and this is what I got:

[18594.595747] Enqueue 3 
[18594.595748]  queue :  
[18594.595751] 2 
[18594.595751] 1 
[18594.595752] 3 

But I want to print this without newline:

[8594.595747] Enqueue 3 
[18594.595748]  queue : 2 1 3

This is a part of my code:

   printk(KERN_ALERT "Enqueue %d \n queue :  ", a);
   rear++;
   for(i = front; i<rear; i++)
      printk(KERN_ALERT "%d ", queue_test[i]);  

In short, I want to print in kernel a message in one line. But if I use printk, it changes line automatically. How do I print a message in one line?


Solution

  • To prevent a new line from being started, use KERN_CONT:

    printk(KERN_ALERT "self destruction commences in ");
    printk(KERN_CONT "%d", time_remaining);
    printk(KERN_CONT " minutes\n");