linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RFC PATCH 00/20] add comments in include/linux/ceph/*.h
@ 2025-09-05 20:00 Viacheslav Dubeyko
  2025-09-05 20:00 ` [RFC PATCH 01/20] ceph: add comments to metadata structures in auth.h Viacheslav Dubeyko
                   ` (19 more replies)
  0 siblings, 20 replies; 25+ messages in thread
From: Viacheslav Dubeyko @ 2025-09-05 20:00 UTC (permalink / raw)
  To: ceph-devel
  Cc: idryomov, linux-fsdevel, pdonnell, amarkuze, Slava.Dubeyko, slava,
	vdubeyko

From: Viacheslav Dubeyko <Slava.Dubeyko@ibm.com>

We have a lot of declarations and not enough good
comments on it.

Claude AI generated comments for CephFS metadata structure
declarations in include/linux/ceph/*.h. These comments
have been reviewed, checked, and corrected.

Viacheslav Dubeyko (20):
  ceph: add comments to metadata structures in auth.h
  ceph: add comments to metadata structures in buffer.h
  ceph: add comments in ceph_debug.h
  ceph: add comments to declarations in ceph_features.h
  ceph: rework comments in ceph_frag.h
  ceph: add comments to metadata structures in ceph_fs.h
  ceph: add comments in ceph_hash.h
  ceph: add comments to metadata structures in cls_lock_client.h
  ceph: add comments to metadata structures in libceph.h
  ceph: add comments to metadata structures in messenger.h
  ceph: add comments to metadata structures in mon_client.h
  ceph: add comments to metadata structures in msgpool.h
  ceph: add comments to metadata structures in msgr.h
  ceph: add comments to metadata structures in osd_client.h
  ceph: add comments to metadata structures in osdmap.h
  ceph: add comments to metadata structures in pagelist.h
  ceph: add comments to metadata structures in rados.h
  ceph: add comments to metadata structures in string_table.h
  ceph: add comments to metadata structures in striper.h
  ceph: add comments to metadata structures in types.h

 include/linux/ceph/auth.h            |  59 +-
 include/linux/ceph/buffer.h          |   9 +-
 include/linux/ceph/ceph_debug.h      |  25 +-
 include/linux/ceph/ceph_features.h   |  47 +-
 include/linux/ceph/ceph_frag.h       |  24 +-
 include/linux/ceph/ceph_fs.h         | 792 ++++++++++++++++++---------
 include/linux/ceph/ceph_hash.h       |  21 +-
 include/linux/ceph/cls_lock_client.h |  34 +-
 include/linux/ceph/libceph.h         |  50 +-
 include/linux/ceph/messenger.h       | 449 +++++++++++----
 include/linux/ceph/mon_client.h      |  93 +++-
 include/linux/ceph/msgpool.h         |  15 +-
 include/linux/ceph/msgr.h            | 162 +++++-
 include/linux/ceph/osd_client.h      | 407 ++++++++++++--
 include/linux/ceph/osdmap.h          | 124 ++++-
 include/linux/ceph/pagelist.h        |  13 +
 include/linux/ceph/rados.h           |  91 ++-
 include/linux/ceph/string_table.h    |  11 +
 include/linux/ceph/striper.h         |  16 +
 include/linux/ceph/types.h           |  14 +-
 20 files changed, 1907 insertions(+), 549 deletions(-)

-- 
2.51.0


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

end of thread, other threads:[~2025-09-05 22:18 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-05 20:00 [RFC PATCH 00/20] add comments in include/linux/ceph/*.h Viacheslav Dubeyko
2025-09-05 20:00 ` [RFC PATCH 01/20] ceph: add comments to metadata structures in auth.h Viacheslav Dubeyko
2025-09-05 21:50   ` Max Kellermann
2025-09-05 20:00 ` [RFC PATCH 02/20] ceph: add comments to metadata structures in buffer.h Viacheslav Dubeyko
2025-09-05 21:43   ` Max Kellermann
2025-09-05 20:00 ` [RFC PATCH 03/20] ceph: add comments in ceph_debug.h Viacheslav Dubeyko
2025-09-05 20:00 ` [RFC PATCH 04/20] ceph: add comments to declarations in ceph_features.h Viacheslav Dubeyko
2025-09-05 20:00 ` [RFC PATCH 05/20] ceph: rework comments in ceph_frag.h Viacheslav Dubeyko
2025-09-05 20:00 ` [RFC PATCH 06/20] ceph: add comments to metadata structures in ceph_fs.h Viacheslav Dubeyko
2025-09-05 20:00 ` [RFC PATCH 07/20] ceph: add comments in ceph_hash.h Viacheslav Dubeyko
2025-09-05 20:00 ` [RFC PATCH 08/20] ceph: add comments to metadata structures in cls_lock_client.h Viacheslav Dubeyko
2025-09-05 20:00 ` [RFC PATCH 09/20] ceph: add comments to metadata structures in libceph.h Viacheslav Dubeyko
2025-09-05 20:00 ` [RFC PATCH 10/20] ceph: add comments to metadata structures in messenger.h Viacheslav Dubeyko
2025-09-05 20:00 ` [RFC PATCH 11/20] ceph: add comments to metadata structures in mon_client.h Viacheslav Dubeyko
2025-09-05 20:01 ` [RFC PATCH 12/20] ceph: add comments to metadata structures in msgpool.h Viacheslav Dubeyko
2025-09-05 20:01 ` [RFC PATCH 13/20] ceph: add comments to metadata structures in msgr.h Viacheslav Dubeyko
2025-09-05 22:18   ` Max Kellermann
2025-09-05 20:01 ` [RFC PATCH 14/20] ceph: add comments to metadata structures in osd_client.h Viacheslav Dubeyko
2025-09-05 20:01 ` [RFC PATCH 15/20] ceph: add comments to metadata structures in osdmap.h Viacheslav Dubeyko
2025-09-05 20:01 ` [RFC PATCH 16/20] ceph: add comments to metadata structures in pagelist.h Viacheslav Dubeyko
2025-09-05 20:01 ` [RFC PATCH 17/20] ceph: add comments to metadata structures in rados.h Viacheslav Dubeyko
2025-09-05 20:01 ` [RFC PATCH 18/20] ceph: add comments to metadata structures in string_table.h Viacheslav Dubeyko
2025-09-05 22:00   ` Max Kellermann
2025-09-05 20:01 ` [RFC PATCH 19/20] ceph: add comments to metadata structures in striper.h Viacheslav Dubeyko
2025-09-05 20:01 ` [RFC PATCH 20/20] ceph: add comments to metadata structures in types.h Viacheslav Dubeyko

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