On Tue, 16 Jul 2002, Matthias Andree wrote:
> > Write a binary (/usr/bin/fsync) which opens a fd, fsync it, close it, be
> > done with it.
>
> Or steal one from FreeBSD (written by Paul Saab), fix the err() function
> and be done with it.
>
> .../usr.bin/fsync/fsync.{1,c}
>
> Interesting side note -- mind the O_RDONLY:
>
> for (i = 1; i < argc; ++i) {
> if ((fd = open(argv[i], O_RDONLY)) < 0)
> err(1, "open %s", argv[i]);
>
> if (fsync(fd) != 0)
> err(1, "fsync %s", argv[1]);
> close(fd);
> }
Pretty much the thing I had in mind, except that the close return code is
disregarded here...
Regards,
Thunder
-- (Use http://www.ebb.org/ungeek if you can't decode) ------BEGIN GEEK CODE BLOCK------ Version: 3.12 GCS/E/G/S/AT d- s++:-- a? C++$ ULAVHI++++$ P++$ L++++(+++++)$ E W-$ N--- o? K? w-- O- M V$ PS+ PE- Y- PGP+ t+ 5+ X+ R- !tv b++ DI? !D G e++++ h* r--- y- ------END GEEK CODE BLOCK------- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/