linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] XArray: minor documentation improvements
@ 2024-10-09 19:36 Tamir Duberstein
  2024-10-09 20:44 ` Darrick J. Wong
  0 siblings, 1 reply; 18+ messages in thread
From: Tamir Duberstein @ 2024-10-09 19:36 UTC (permalink / raw)
  To: Matthew Wilcox
  Cc: Tamir Duberstein, Jonathan Corbet, linux-fsdevel, linux-doc,
	linux-kernel

- Replace "they" with "you" where "you" is used in the preceding
  sentence fragment.
- Use "erasing" rather than "storing `NULL`" when describing multi-index
  entries. Split this into a separate sentence.
- Add "call" parentheses on "xa_store" for consistency and
  linkification.

Signed-off-by: Tamir Duberstein <tamird@gmail.com>
---
 Documentation/core-api/xarray.rst | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/Documentation/core-api/xarray.rst b/Documentation/core-api/xarray.rst
index 77e0ece2b1d6..d79d4e4ceff6 100644
--- a/Documentation/core-api/xarray.rst
+++ b/Documentation/core-api/xarray.rst
@@ -42,8 +42,8 @@ call xa_tag_pointer() to create an entry with a tag, xa_untag_pointer()
 to turn a tagged entry back into an untagged pointer and xa_pointer_tag()
 to retrieve the tag of an entry.  Tagged pointers use the same bits that
 are used to distinguish value entries from normal pointers, so you must
-decide whether they want to store value entries or tagged pointers in
-any particular XArray.
+decide whether use want to store value entries or tagged pointers in any
+particular XArray.
 
 The XArray does not support storing IS_ERR() pointers as some
 conflict with value entries or internal entries.
@@ -52,8 +52,8 @@ An unusual feature of the XArray is the ability to create entries which
 occupy a range of indices.  Once stored to, looking up any index in
 the range will return the same entry as looking up any other index in
 the range.  Storing to any index will store to all of them.  Multi-index
-entries can be explicitly split into smaller entries, or storing ``NULL``
-into any entry will cause the XArray to forget about the range.
+entries can be explicitly split into smaller entries. Erasing any entry
+will cause the XArray to forget about the range.
 
 Normal API
 ==========
@@ -64,7 +64,7 @@ allocated ones.  A freshly-initialised XArray contains a ``NULL``
 pointer at every index.
 
 You can then set entries using xa_store() and get entries
-using xa_load().  xa_store will overwrite any entry with the
+using xa_load().  xa_store() will overwrite any entry with the
 new entry and return the previous entry stored at that index.  You can
 use xa_erase() instead of calling xa_store() with a
 ``NULL`` entry.  There is no difference between an entry that has never
-- 
2.47.0


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

end of thread, other threads:[~2024-10-24 19:53 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-09 19:36 [PATCH] XArray: minor documentation improvements Tamir Duberstein
2024-10-09 20:44 ` Darrick J. Wong
2024-10-09 20:51   ` Tamir Duberstein
2024-10-09 20:52     ` [PATCH v2] " Tamir Duberstein
2024-10-09 21:25       ` Darrick J. Wong
2024-10-09 21:59       ` Jonathan Corbet
2024-10-09 22:16         ` Tamir Duberstein
2024-10-09 22:22       ` Randy Dunlap
2024-10-10 14:11         ` Tamir Duberstein
2024-10-10 14:12           ` [PATCH v3] " Tamir Duberstein
2024-10-10 21:34             ` Randy Dunlap
2024-10-10 21:39               ` Tamir Duberstein
2024-10-10 21:41                 ` [PATCH v4] " Tamir Duberstein
2024-10-10 21:50                   ` Randy Dunlap
2024-10-10 22:41                     ` Matthew Wilcox
2024-10-16 12:51                       ` Tamir Duberstein
2024-10-24 19:52                         ` Tamir Duberstein
2024-10-17  0:34                   ` Bagas Sanjaya

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).