Searched refs:cifs_max_pending (Results 1 - 4 of 4) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/cifs/
H A Dcifsfs.c81 unsigned int cifs_max_pending = CIFS_MAX_REQ; variable
82 module_param(cifs_max_pending, int, 0);
83 MODULE_PARM_DESC(cifs_max_pending,"Simultaneous requests to server. Default: 50 Range: 2 to 256");
975 if (cifs_max_pending < 2) {
976 cifs_max_pending = 2;
977 cFYI(1,("cifs_max_pending set to min of 2"));
978 } else if (cifs_max_pending > 256) {
979 cifs_max_pending = 256;
980 cFYI(1,("cifs_max_pending set to max of 256"));
H A Dcifsglob.h580 GLOBAL_EXTERN unsigned int cifs_max_pending; /* MAX requests at once to server*/ variable
H A Dtransport.c318 cifs_max_pending){
325 < cifs_max_pending);
H A Dconnect.c655 /* Note that cifs_max_pending is normally 50, but
657 if(atomic_read(&server->inFlight) >= cifs_max_pending)
658 atomic_set(&server->inFlight, cifs_max_pending - 1);

Completed in 299 milliseconds