Fixing the unfixable autofs ABI
Posted May 1, 2012 7:26 UTC (Tue) by
butlerm (subscriber, #13312)
In reply to:
Fixing the unfixable autofs ABI by neilbrown
Parent article:
Fixing the unfixable autofs ABI
Discarding data isn't so much of a problem as knowing when data has been discarded. recvmsg(2) is nice for that. You generally can't have message per read semantics for arbitrary size messages in any case because the kernel buffers must store an entire message to avoid unusual complexities. (Ask the SCTP people about the fun problems you get trying to implement a point-to-multipoint socket that supports arbitrary size messages.)
Considering that reality, all you really need is some reliable way to know whether your message has been truncated. Sockets have MSG_PEEK / MSG_TRUNC for that, so I guess the question is why wouldn't it be practical to make recvmsg(2) work on a packetized pipe so that you can do the same thing?
(
Log in to post comments)