NFSD: nfsd-io-modes: Separate lists

Sphinx reports htmldocs indentation warnings:

Documentation/filesystems/nfs/nfsd-io-modes.rst:58: ERROR: Unexpected indentation. [docutils]
Documentation/filesystems/nfs/nfsd-io-modes.rst:59: WARNING: Block quote ends without a blank line; unexpected unindent. [docutils]

These caused the lists to be shown as long running paragraphs merged
with their previous paragraphs.

Fix these by separating the lists with a blank line.

Fixes: fa8d4e6784d1b6 ("NFSD: add Documentation/filesystems/nfs/nfsd-io-modes.rst")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Closes: https://lore.kernel.org/linux-next/20251202152506.7a2d2d41@canb.auug.org.au/
Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Tested-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>

authored by Bagas Sanjaya and committed by Chuck Lever df8c841d 4fcf9952

+5
+5
Documentation/filesystems/nfs/nfsd-io-modes.rst
··· 13 13 14 14 Experimental NFSD debugfs interfaces are available to allow the NFSD IO 15 15 mode used for READ and WRITE to be configured independently. See both: 16 + 16 17 - /sys/kernel/debug/nfsd/io_cache_read 17 18 - /sys/kernel/debug/nfsd/io_cache_write 18 19 ··· 21 20 NFSD's default IO mode (which is NFSD_IO_BUFFERED=0). 22 21 23 22 Based on the configured settings, NFSD's IO will either be: 23 + 24 24 - cached using page cache (NFSD_IO_BUFFERED=0) 25 25 - cached but removed from page cache on completion (NFSD_IO_DONTCACHE=1) 26 26 - not cached stable_how=NFS_UNSTABLE (NFSD_IO_DIRECT=2) ··· 58 56 new IO requests. 59 57 60 58 For more context on DONTCACHE, please see these Linux commit headers: 59 + 61 60 - Overview: 9ad6344568cc3 ("mm/filemap: change filemap_create_folio() 62 61 to take a struct kiocb") 63 62 - for READ: 8026e49bff9b1 ("mm/filemap: add read support for ··· 90 87 The performance win associated with using NFSD DIRECT was previously 91 88 discussed on linux-nfs, see: 92 89 https://lore.kernel.org/linux-nfs/aEslwqa9iMeZjjlV@kernel.org/ 90 + 93 91 But in summary: 92 + 94 93 - NFSD DIRECT can significantly reduce memory requirements 95 94 - NFSD DIRECT can reduce CPU load by avoiding costly page reclaim work 96 95 - NFSD DIRECT can offer more deterministic IO performance