Skip to content

Commit c54f24e

Browse files
author
J. Bruce Fields
committed
nfsd: fix performance-limiting session calculation
We're unintentionally limiting the number of slots per nfsv4.1 session to 10. Often more than 10 simultaneous RPCs are needed for the best performance. This calculation was meant to prevent any one client from using up more than a third of the limit we set for total memory use across all clients and sessions. Instead, it's limiting the client to a third of the maximum for a single session. Fix this. Reported-by: Chris Tracy <ctracy@engr.scu.edu> Cc: stable@vger.kernel.org Fixes: de766e5 "nfsd: give out fewer session slots as limit approaches" Signed-off-by: J. Bruce Fields <bfields@redhat.com>
1 parent b7e5034 commit c54f24e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

fs/nfsd/nfs4state.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1544,16 +1544,16 @@ static u32 nfsd4_get_drc_mem(struct nfsd4_channel_attrs *ca)
15441544
{
15451545
u32 slotsize = slot_bytes(ca);
15461546
u32 num = ca->maxreqs;
1547-
int avail;
1547+
unsigned long avail, total_avail;
15481548

15491549
spin_lock(&nfsd_drc_lock);
1550-
avail = min((unsigned long)NFSD_MAX_MEM_PER_SESSION,
1551-
nfsd_drc_max_mem - nfsd_drc_mem_used);
1550+
total_avail = nfsd_drc_max_mem - nfsd_drc_mem_used;
1551+
avail = min((unsigned long)NFSD_MAX_MEM_PER_SESSION, total_avail);
15521552
/*
15531553
* Never use more than a third of the remaining memory,
15541554
* unless it's the only way to give this client a slot:
15551555
*/
1556-
avail = clamp_t(int, avail, slotsize, avail/3);
1556+
avail = clamp_t(int, avail, slotsize, total_avail/3);
15571557
num = min_t(int, num, avail / slotsize);
15581558
nfsd_drc_mem_used += num * slotsize;
15591559
spin_unlock(&nfsd_drc_lock);

0 commit comments

Comments
 (0)