| Summary: | Calling sync on large filesystems when not always necessary | ||
|---|---|---|---|
| Product: | buildroot | Reporter: | Danny Staple <orionrobots> |
| Component: | Other | Assignee: | unassigned |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | buildroot |
| Priority: | P5 | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Linux | ||
| Host: | Target: | ||
| Build: | |||
|
Description
Danny Staple
2011-03-11 16:20:22 UTC
For info - this sync is called as a shell out to "/bin/sync" in makedevs.c.
if (system("/bin/sync"))
bb_error_msg("sync failed, continuing anyway");
I think it makes more sense to simply get rid of the sync. There's no real reason why we would need to sync in the first place. Removed in git, thanks |