On 2020-06-09, Petr Mladek <pmladek@xxxxxxxx> wrote: >> --- /dev/null >> +++ b/kernel/printk/printk_ringbuffer.c >> +static bool data_push_tail(struct printk_ringbuffer *rb, >> + struct prb_data_ring *data_ring, >> + unsigned long lpos) >> +{ >> ... >> + >> + /* >> + * Guarantee any descriptor states that have transitioned to >> + * reusable are stored before pushing the tail lpos. This >> + * allows readers to identify if data has expired while >> + * reading the descriptor. This pairs with desc_read:D. >> + */ >> + smp_mb(); /* LMM(data_push_tail:C) */ > > The comment does not explain why we need a full barrier here. > > I would add something like: > > * Full barrier is necessary because the descriptors > * might have been made reusable also by other CPUs. Agreed. Somehow I missed that explanation for this comment. > For people like me, it would be great to add also link to a more > detailed explanation, for example, the litmus tests, or something > even more human readable ;-) I think that it is a "rather" common > problem. I wonder whether it is already documented somewhere. I believe that memory barriers need to be formally documented. Perhaps in such a way that litmus tests can be easily generated. Tools could greatly assist with this. It is my hope that my memory barrier documentation can spark some ideas about how we could do this. (Doing all this manually really sucks!) John Ogness _______________________________________________ kexec mailing list kexec@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/kexec