> Hi Tony, thanks a lot for your response! It makes sense indeed, but in > my case, for example, I have a "log_buf_len=4M", but cannot allocate a > 4M record_size - when I try that, I can only see page_alloc spews and > pstore/ramoops doesn't work. So, I could allocate 2M and that works > fine, but I then lose half of my dmesg heh > Hence my question. > > If there's no special reason, I guess would make sense to allow ramoops > to split the dmesg, what do you think? Guilherme, Linux is indeed somewhat reluctant to hand out allocations > 2MB. :-( Do you really need the whole dmesg in the pstore dump? The expectation is that systems run normally for a while. During that time console logs are saved off to /var/log/messages. When the system crashes, the last part (the interesting bit!) of the console log is lost. The purpose of pstore is to save that last bit. So while you could add code to ramoops to save multiple 2MB chunks, it doesn't seem (to me) that it would add much value. -Tony