Re: [PATCH 06/11] CIFS: Respect MaxMpxCount field

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Sat, 3 Mar 2012 21:14:19 -0600
Steve French <smfrench@xxxxxxxxx> wrote:

> Echo is fairly minor - we rarely send them when mpxcount is "full",
> and when we do, usually send only one unless the server is broken.
> For the case where server has an mpxcount fewer than 4, I can see the
> logic of turning off (e.g. turn off oplock, blocking lock and echo if
> mpxcount 1, blocking lock and echo if only 2, disable echo if mpxcount
> is only 3) similar to the way you described, but sending an echo on a
> dead session with a "full" mpx count can't hurt so I don't feel as
> strongly about echo as I do about making sure that we disable oplock
> and blocking locks if mpxcount is 1.
> 
> Making sure that we don't send too many blocking locks should be easy
> because there is a posix rc that we can use if we have too many
> pending (so for example we can limit to something like 25, and not
> hurt Jeff's async read/write perf much).
> 

Another possibility is to use a smaller timeout for blocking locks in a
loop. Do something like this (simplified pseudocode):

do {
	rc = [blocking lock call with timeout of 10s];
} while (rc == -ETIMEDOUT)

Lock "fairness" would possibly suffer, but you could be reasonably
certain that you wouldn't deadlock the client for an undue period of
time. Eventually your other calls would get in between the lock
attempts.

> On the issue of why Samba didn't up maxmpx, I expect it is simply that
> until Jeff fixed async read/write, it was rare for a client to send 50
> requests in parallel.
> 

I'm fairly certain that windows sends reads/writes in parallel. Does
their client have a hard cap of 50 or so as well?

> On the SMB2 credits vs. CIFS maxmpx topic ...  more than once at the
> MS Plugfest I heard pushback on treating SMB2 credits and CIFS maxmpx
> similarly - they are totally unrelated.  SMB2 credits are pretty
> straightforward - we get them back on every request so they are
> constantly changing, but the rules are easier to understand (and are
> well documented, where the CIFS maxmpx behavior is only partially
> documented).
> 

That may be, particularly if we have to treat certain types of calls as
"special". Still, whether the rules for SMB1 are documented or not, we
have to settle on a set of them in order to fix cifs.ko. Building a
framework that can accommodate both sets of rules is better than
cut-and-paste. We just may need to abstract out a bit more than we
thought originally.

-- 
Jeff Layton <jlayton@xxxxxxxxxx>
--
To unsubscribe from this list: send the line "unsubscribe linux-cifs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux