Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'nfsd-6.15-2' of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux

Pull nfsd fix from Chuck Lever:

- Revert a v6.15 patch due to a report of SELinux test failures

* tag 'nfsd-6.15-2' of git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux:
Revert "sunrpc: clean cache_detail immediately when flush is written frequently"

+1 -5
+1 -5
net/sunrpc/cache.c
··· 1536 1536 * or by one second if it has already reached the current time. 1537 1537 * Newly added cache entries will always have ->last_refresh greater 1538 1538 * that ->flush_time, so they don't get flushed prematurely. 1539 - * 1540 - * If someone frequently calls the flush interface, we should 1541 - * immediately clean the corresponding cache_detail instead of 1542 - * continuously accumulating nextcheck. 1543 1539 */ 1544 1540 1545 - if (cd->flush_time >= now && cd->flush_time < (now + 5)) 1541 + if (cd->flush_time >= now) 1546 1542 now = cd->flush_time + 1; 1547 1543 1548 1544 cd->flush_time = now;