Opened 7 years ago
Closed 5 years ago
#382 closed defect (duplicate)
multiple files with same indoe are created
Reported by: | KO Myung-Hun | Owned by: | |
---|---|---|---|
Priority: | normal | Milestone: | new |
Component: | libc | Version: | 0.6.6 |
Severity: | normal | Keywords: | |
Cc: |
Description
Hi/2.
When heavily fork()ed, multiple files with same inode are created. Because sometimes forked() child processes have the same seed value.
Some programs checking inodes such as mv, cp, install of coreutils, fails because they treat files with same inodes as the same files.
This always occurs when running 'bootstrap' script in coreutils git repo. mv fails with complaining ./m4/.gitignore.bak and ./m4/.gitignore are the same file.
Attachments (1)
Change History (2)
by , 7 years ago
comment:1 by , 5 years ago
Resolution: | → duplicate |
---|---|
Status: | new → closed |
There are another cases that the files with the same inode are generated. It's simple. Just 'copy' with non-kLIBC programs such as CMD or 4OS2.
So the above patch is not a proper solution. Instead, calculating inode whenever stat()'ed is more proper solution.
And I close this ticket because ticket #74 reports similar problems and it is more general.
I'll attach improved patch at ticket #74.
patch for same inodes