% cat /proc/scsi/BusLogic/0 | wc -c
4440
> Also,
> most tools will read until EOF (no more data), ignoring the file size so
> the file-size doesn't limit it.
This thread started with the failure of sed to work which (at least in
modern versions) stats the source to find its size and then mmaps it.
If you kludge the filesize to be fixed at 1000 (say) then sed will map
the first 1000 bytes (well, maybe rounded up to a whole PAGE_SIZE),
operate on that and happily ignore the rest.
Having an arbitrary limit for a fake filesize is bad. At least with
zero length output, it's obvious that something is wrong. If people
start getting bogus truncated output just because somebody hot-adds a
disk or some statistic gatherer ups the number of bytes in a /proc
file then it would lead to problems that are much harder to trace.
--Malcolm
-- Malcolm Beattie <mbeattie@sable.ox.ac.uk> Unix Systems Programmer Oxford University Computing Services- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu Please read the FAQ at http://www.tux.org/lkml/