linux-kernel-mentees.lists.linuxfoundation.org archive mirror
 help / color / mirror / Atom feed
* [Linux-kernel-mentees] [PATCH v4 0/9] Documentation: nfs: Convert a few documents to RST and move them to admin-guide
@ 2020-01-10 23:24 Daniel W. S. Almeida
  2020-01-10 23:24 ` [Linux-kernel-mentees] [PATCH v4 1/9] Documentation: convert nfs.txt to ReST Daniel W. S. Almeida
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Daniel W. S. Almeida @ 2020-01-10 23:24 UTC (permalink / raw)
  To: mchehab+samsung, corbet
  Cc: linux-kernel, linux-kernel-mentees, Daniel W. S. Almeida, linux-doc

From: "Daniel W. S. Almeida" <dwlsalmeida@gmail.com>

This series converts a few docs in Documentation/filesystems/nfs to RST.
The docs were also moved into admin-guide because they contain information
that might be useful for system administrators

Most changes are related to aesthetics and presentation, i.e. the content
itself remains mostly untouched. The use of markup was limited in order
not to negatively impact the plain-text reading experience.

Changes in v4
-------------
Add missing commit [Documentation: convert nfs.txt to ReST]
Fix the following errors:
	Applying: Documentation: convert nfs.txt to ReST
	.git/rebase-apply/patch:35: new blank line at EOF.
	+
	warning: 1 line adds whitespace errors.
	Applying: Documentation: nfsroot.txt: convert to ReST
	.git/rebase-apply/patch:163: space before tab in indent.
			If unspecified the netmask is derived from the client IP address
	.git/rebase-apply/patch:170: space before tab in indent.
			If a '.' character is present, anything
	.git/rebase-apply/patch:193: space before tab in indent.
			In the case of options
	warning: 3 lines add whitespace errors.
	

Changes in v3
-------------
Documentation: convert nfs.txt to ReST
	- Remove "#." syntax

Documentation: nfsroot.txt: convert to ReST
	- Remove stray backtick
	- Remove standalone "::"
	- Remove "#." syntax
	- Refill paragraph in a new commit to remove long lines

Documentation: nfs-rdma: convert to ReST
	- Add warning for obsolete content
	- CC nfs-rdma-devel@lists.sourceforge.net

Documentation: convert nfsd-admin-interfaces to ReST
	- Remove "#." syntax

Changes in v2
-------------
Also convert pnfs-block-server.txt, pnfs-scsi-server.txt and fault_injection.txt

Daniel W. S. Almeida (9):
  Documentation: convert nfs.txt to ReST
  Documentation: nfsroot.txt: convert to ReST
  Documentation: nfsroot.rst: COSMETIC: refill a paragraph
  Documentation: nfs-rdma: convert to ReST
  Documentation: convert nfsd-admin-interfaces to ReST
  Documentation: nfs: idmapper: convert to ReST
  Documentation: nfs: convert pnfs-block-server to ReST
  Documentation: nfs: pnfs-scsi-server: convert to ReST
  Documentation: nfs: fault_injection: convert to ReST

 Documentation/admin-guide/index.rst           |   1 +
 .../nfs/fault_injection.rst}                  |   5 +-
 Documentation/admin-guide/nfs/index.rst       |  15 +
 .../nfs/nfs-client.rst}                       |  85 ++---
 .../nfs/nfs-idmapper.rst}                     |  31 +-
 Documentation/admin-guide/nfs/nfs-rdma.rst    | 292 ++++++++++++++++++
 .../nfs/nfsd-admin-interfaces.rst}            |  19 +-
 .../nfs/nfsroot.rst}                          | 151 ++++-----
 .../nfs/pnfs-block-server.rst}                |  25 +-
 .../nfs/pnfs-scsi-server.rst}                 |   1 +
 Documentation/filesystems/nfs/nfs-rdma.txt    | 274 ----------------
 11 files changed, 478 insertions(+), 421 deletions(-)
 rename Documentation/{filesystems/nfs/fault_injection.txt => admin-guide/nfs/fault_injection.rst} (98%)
 create mode 100644 Documentation/admin-guide/nfs/index.rst
 rename Documentation/{filesystems/nfs/nfs.txt => admin-guide/nfs/nfs-client.rst} (75%)
 rename Documentation/{filesystems/nfs/idmapper.txt => admin-guide/nfs/nfs-idmapper.rst} (81%)
 create mode 100644 Documentation/admin-guide/nfs/nfs-rdma.rst
 rename Documentation/{filesystems/nfs/nfsd-admin-interfaces.txt => admin-guide/nfs/nfsd-admin-interfaces.rst} (70%)
 rename Documentation/{filesystems/nfs/nfsroot.txt => admin-guide/nfs/nfsroot.rst} (80%)
 rename Documentation/{filesystems/nfs/pnfs-block-server.txt => admin-guide/nfs/pnfs-block-server.rst} (80%)
 rename Documentation/{filesystems/nfs/pnfs-scsi-server.txt => admin-guide/nfs/pnfs-scsi-server.rst} (97%)
 delete mode 100644 Documentation/filesystems/nfs/nfs-rdma.txt

-- 
2.24.1

_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2020-01-16 19:52 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-10 23:24 [Linux-kernel-mentees] [PATCH v4 0/9] Documentation: nfs: Convert a few documents to RST and move them to admin-guide Daniel W. S. Almeida
2020-01-10 23:24 ` [Linux-kernel-mentees] [PATCH v4 1/9] Documentation: convert nfs.txt to ReST Daniel W. S. Almeida
2020-01-10 23:24 ` [Linux-kernel-mentees] [PATCH v4 2/9] Documentation: nfsroot.txt: convert " Daniel W. S. Almeida
2020-01-10 23:24 ` [Linux-kernel-mentees] [PATCH v4 3/9] Documentation: nfsroot.rst: COSMETIC: refill a paragraph Daniel W. S. Almeida
2020-01-10 23:24 ` [Linux-kernel-mentees] [PATCH v4 4/9] Documentation: nfs-rdma: convert to ReST Daniel W. S. Almeida
2020-01-10 23:24 ` [Linux-kernel-mentees] [PATCH v4 5/9] Documentation: convert nfsd-admin-interfaces " Daniel W. S. Almeida
2020-01-10 23:24 ` [Linux-kernel-mentees] [PATCH v4 6/9] Documentation: nfs: idmapper: convert " Daniel W. S. Almeida
2020-01-10 23:24 ` [Linux-kernel-mentees] [PATCH v4 7/9] Documentation: nfs: convert pnfs-block-server " Daniel W. S. Almeida
2020-01-10 23:24 ` [Linux-kernel-mentees] [PATCH v4 8/9] Documentation: nfs: pnfs-scsi-server: convert " Daniel W. S. Almeida
2020-01-10 23:24 ` [Linux-kernel-mentees] [PATCH v4 9/9] Documentation: nfs: fault_injection: " Daniel W. S. Almeida
2020-01-16 19:51 ` [Linux-kernel-mentees] [PATCH v4 0/9] Documentation: nfs: Convert a few documents to RST and move them to admin-guide Jonathan Corbet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).