when having mounted nfs over wlan i often discovered that wlan "hangs" and with it any file activity over nfs, you couldn't even umount nfs
after hours of searching i found the solution which in my case is as follows:
the packets transmitted over wlan usually have the size of 1500 bytes (mtu i think this is called), if for nfs rsize or wsize are specified > 1500, which i think is the standard (i mean the standard is GREATER 1500) all the packets are "repackaged" in smaller packets to fit into the 1500 bytes, which leads to some kind of traffic congestion if some packets get lost (which happens regualrly with wlan), the solution is quite simple: specify rsize=1024, wsize=1024 as mount options in /etc/fstab
regards
seb