Bug 54551
Summary: | write fails with one short >2GB write. | ||
---|---|---|---|
Product: | File System | Reporter: | meetmehiro |
Component: | ext4 | Assignee: | Jan Kara (jack) |
Status: | CLOSED DOCUMENTED | ||
Severity: | high | CC: | alan, jack |
Priority: | P1 | ||
Hardware: | All | ||
OS: | Linux | ||
Kernel Version: | - | Subsystem: | |
Regression: | No | Bisected commit-id: |
Description
meetmehiro
2013-02-27 14:49:33 UTC
is it like, "MAX_RW_COUNT" limit is 2G ????? is there any way, we can bypass this limit, pls help me out into this.. You cannot easily overcome this limit. Also I'd note that POSIX does not say how much is going to be written. So you have to be prepared for the fact that your write writes e.g. 1 byte (although in practice that doesn't tend to happen). If some program relies on write(2) writing as much as it was told to, it is a buggy program. Thanks Jan Kara.. if i have space on my disk so write can write whatever number of bytes we specified. I can able to write one short 2G , ex : write(fd,buf,2G).. why we are not able to write one-short more-then 2G, eg: write(fd,buf,3G)?? why here "2G" limit ??? So that particular limit is there to avoid possible overflows within fs code. But writing really happens in page-sized (4096 bytes) chunks. If a signal comes, we stop writing so even if you write only say 16 KB you can see only 8 KB written. Now currently we stop writing only if the signal is fatal (SIGKILL or so) exactly because there are broken apps out there which could get confused by the short write but if you aim at writing reasonably clean and portable application, you should really handle short writes properly. |