Lines Matching defs:nfss
288 struct nfs_server *nfss = NFS_SERVER(folio->mapping->host);
291 if (atomic_long_inc_return(&nfss->writeback) > NFS_CONGESTION_ON_THRESH)
292 nfss->write_congested = 1;
297 struct nfs_server *nfss = NFS_SERVER(folio->mapping->host);
300 if (atomic_long_dec_return(&nfss->writeback) <
302 nfss->write_congested = 0;
303 wake_up_all(&nfss->write_congestion_wait);
656 struct nfs_server *nfss = NFS_SERVER(inode);
663 if (wbc->sync_mode == WB_SYNC_NONE && nfss->write_congested) {
664 err = wait_event_killable(nfss->write_congestion_wait,
665 nfss->write_congested == 0);