Re: NFS write() calls lead to read() calls?

From: Ivan Voras <ivoras_at_fer.hr>
Date: Wed, 28 Mar 2007 18:03:35 +0200
Ulrich Spoerlein wrote:

> What kind of C program or script did you have in mind? My C-foo is very 
> weak ...

If you have python installed, this is a simple way:

----
print "writing"
f = file("a_file", "w")
for x in xrange(1024): # write 1024 MB
     f.write(' '*1024*1024)
f.close()

raw_input("press enter to rewrite")

print "rewriting"
f = file("a_file", "r+")
for x in xrange(1024): # write 1024 MB again
     f.write(' '*1024*1024)
f.close()
----

save it to a file, run the file with python interpreter. If you don't 
observe the weird read-before-write effect, then it's not a problem in 
FreeBSD / NFS.


Received on Wed Mar 28 2007 - 14:04:03 UTC

This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:39:07 UTC