Blame SOURCES/0029-fs-ntfs3-Restyle-comments-to-better-align-with-kerne.patch

Kmods SIG 8b815c
From d3624466b56dd5b1886c1dff500525b544c19c83 Mon Sep 17 00:00:00 2001
Kmods SIG 8b815c
From: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Kmods SIG 8b815c
Date: Tue, 31 Aug 2021 16:57:40 +0300
Kmods SIG 8b815c
Subject: [Backport d3624466b56d] src: Restyle comments to better align
Kmods SIG 8b815c
 with kernel-doc
Kmods SIG 8b815c
Kmods SIG 8b815c
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Kmods SIG 8b815c
---
Kmods SIG 8b815c
 src/attrib.c  | 18 +++++++++++-------
Kmods SIG 8b815c
 src/bitmap.c  |  5 ++---
Kmods SIG 8b815c
 src/file.c    | 18 +++++++++---------
Kmods SIG 8b815c
 src/frecord.c | 27 +++++++++++++--------------
Kmods SIG 8b815c
 src/fslog.c   | 11 +++++++----
Kmods SIG 8b815c
 src/fsntfs.c  |  8 ++++----
Kmods SIG 8b815c
 src/index.c   |  8 +++++---
Kmods SIG 8b815c
 src/inode.c   | 20 ++++++++++----------
Kmods SIG 8b815c
 src/lznt.c    |  5 +++--
Kmods SIG 8b815c
 src/ntfs.h    |  2 +-
Kmods SIG 8b815c
 src/ntfs_fs.h | 24 ++++++++++++------------
Kmods SIG 8b815c
 src/record.c  |  2 +-
Kmods SIG 8b815c
 src/super.c   |  2 +-
Kmods SIG 8b815c
 src/upcase.c  |  2 +-
Kmods SIG 8b815c
 src/xattr.c   |  7 ++++---
Kmods SIG 8b815c
 15 files changed, 84 insertions(+), 75 deletions(-)
Kmods SIG 8b815c
Kmods SIG 8b815c
diff --git a/src/attrib.c b/src/attrib.c
Kmods SIG 8b815c
index ffc323bacc9fe63683395d9535ec65849137551a..34c4cbf7e29bc49bdb3fa060fd2c235c3fb68536 100644
Kmods SIG 8b815c
--- a/src/attrib.c
Kmods SIG 8b815c
+++ b/src/attrib.c
Kmods SIG 8b815c
@@ -199,6 +199,7 @@ int attr_allocate_clusters(struct ntfs_sb_info *sbi, struct runs_tree *run,
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 		/* Add new fragment into run storage. */
Kmods SIG 8b815c
 		if (!run_add_entry(run, vcn, lcn, flen, opt == ALLOCATE_MFT)) {
Kmods SIG 8b815c
+			/* Undo last 'ntfs_look_for_free_space' */
Kmods SIG 8b815c
 			down_write_nested(&wnd->rw_lock, BITMAP_MUTEX_CLUSTERS);
Kmods SIG 8b815c
 			wnd_set_free(wnd, lcn, flen);
Kmods SIG 8b815c
 			up_write(&wnd->rw_lock);
Kmods SIG 8b815c
@@ -351,7 +352,6 @@ int attr_make_nonresident(struct ntfs_inode *ni, struct ATTRIB *attr,
Kmods SIG 8b815c
 	run_close(run);
Kmods SIG 8b815c
 out1:
Kmods SIG 8b815c
 	kfree(attr_s);
Kmods SIG 8b815c
-	/* Reinsert le. */
Kmods SIG 8b815c
 out:
Kmods SIG 8b815c
 	return err;
Kmods SIG 8b815c
 }
Kmods SIG 8b815c
@@ -1153,14 +1153,18 @@ int attr_load_runs_vcn(struct ntfs_inode *ni, enum ATTR_TYPE type,
Kmods SIG 8b815c
 	u16 ro;
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	attr = ni_find_attr(ni, NULL, NULL, type, name, name_len, &vcn, NULL);
Kmods SIG 8b815c
-	if (!attr)
Kmods SIG 8b815c
+	if (!attr) {
Kmods SIG 8b815c
+		/* Is record corrupted? */
Kmods SIG 8b815c
 		return -ENOENT;
Kmods SIG 8b815c
+	}
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	svcn = le64_to_cpu(attr->nres.svcn);
Kmods SIG 8b815c
 	evcn = le64_to_cpu(attr->nres.evcn);
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-	if (evcn < vcn || vcn < svcn)
Kmods SIG 8b815c
+	if (evcn < vcn || vcn < svcn) {
Kmods SIG 8b815c
+		/* Is record corrupted? */
Kmods SIG 8b815c
 		return -EINVAL;
Kmods SIG 8b815c
+	}
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	ro = le16_to_cpu(attr->nres.run_off);
Kmods SIG 8b815c
 	err = run_unpack_ex(run, ni->mi.sbi, ni->mi.rno, svcn, evcn, svcn,
Kmods SIG 8b815c
@@ -1171,7 +1175,7 @@ int attr_load_runs_vcn(struct ntfs_inode *ni, enum ATTR_TYPE type,
Kmods SIG 8b815c
 }
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 /*
Kmods SIG 8b815c
- * attr_wof_load_runs_range - Load runs for given range [from to).
Kmods SIG 8b815c
+ * attr_load_runs_range - Load runs for given range [from to).
Kmods SIG 8b815c
  */
Kmods SIG 8b815c
 int attr_load_runs_range(struct ntfs_inode *ni, enum ATTR_TYPE type,
Kmods SIG 8b815c
 			 const __le16 *name, u8 name_len, struct runs_tree *run,
Kmods SIG 8b815c
@@ -1974,7 +1978,7 @@ int attr_punch_hole(struct ntfs_inode *ni, u64 vbo, u64 bytes, u32 *frame_size)
Kmods SIG 8b815c
 	total_size = le64_to_cpu(attr_b->nres.total_size);
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	if (vbo >= alloc_size) {
Kmods SIG 8b815c
-		// NOTE: It is allowed.
Kmods SIG 8b815c
+		/* NOTE: It is allowed. */
Kmods SIG 8b815c
 		return 0;
Kmods SIG 8b815c
 	}
Kmods SIG 8b815c
 
Kmods SIG 8b815c
@@ -1986,9 +1990,9 @@ int attr_punch_hole(struct ntfs_inode *ni, u64 vbo, u64 bytes, u32 *frame_size)
Kmods SIG 8b815c
 	bytes -= vbo;
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	if ((vbo & mask) || (bytes & mask)) {
Kmods SIG 8b815c
-		/* We have to zero a range(s)*/
Kmods SIG 8b815c
+		/* We have to zero a range(s). */
Kmods SIG 8b815c
 		if (frame_size == NULL) {
Kmods SIG 8b815c
-			/* Caller insists range is aligned */
Kmods SIG 8b815c
+			/* Caller insists range is aligned. */
Kmods SIG 8b815c
 			return -EINVAL;
Kmods SIG 8b815c
 		}
Kmods SIG 8b815c
 		*frame_size = mask + 1;
Kmods SIG 8b815c
diff --git a/src/bitmap.c b/src/bitmap.c
Kmods SIG 8b815c
index 06ae38adb8ad5601ca134cad3b76871df5d7d3e8..831501555009533d8b3eac04b6258e7072bd6304 100644
Kmods SIG 8b815c
--- a/src/bitmap.c
Kmods SIG 8b815c
+++ b/src/bitmap.c
Kmods SIG 8b815c
@@ -29,7 +29,6 @@ struct rb_node_key {
Kmods SIG 8b815c
 	size_t key;
Kmods SIG 8b815c
 };
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-/* Tree is sorted by start (key). */
Kmods SIG 8b815c
 struct e_node {
Kmods SIG 8b815c
 	struct rb_node_key start; /* Tree sorted by start. */
Kmods SIG 8b815c
 	struct rb_node_key count; /* Tree sorted by len. */
Kmods SIG 8b815c
@@ -1117,7 +1116,7 @@ size_t wnd_find(struct wnd_bitmap *wnd, size_t to_alloc, size_t hint,
Kmods SIG 8b815c
 	sb = wnd->sb;
Kmods SIG 8b815c
 	log2_bits = sb->s_blocksize_bits + 3;
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-	/* At most two ranges [hint, max_alloc) + [0, hint) */
Kmods SIG 8b815c
+	/* At most two ranges [hint, max_alloc) + [0, hint). */
Kmods SIG 8b815c
 Again:
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	/* TODO: Optimize request for case nbits > wbits. */
Kmods SIG 8b815c
@@ -1241,7 +1240,7 @@ size_t wnd_find(struct wnd_bitmap *wnd, size_t to_alloc, size_t hint,
Kmods SIG 8b815c
 			continue;
Kmods SIG 8b815c
 		}
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-		/* Read window */
Kmods SIG 8b815c
+		/* Read window. */
Kmods SIG 8b815c
 		bh = wnd_map(wnd, iw);
Kmods SIG 8b815c
 		if (IS_ERR(bh)) {
Kmods SIG 8b815c
 			// TODO: Error.
Kmods SIG 8b815c
diff --git a/src/file.c b/src/file.c
Kmods SIG 8b815c
index 62ebfa324bff5814d0937ac13a043a408e4d3f4d..89557d60a9b0f0e657ce9465504b417bbb50ed04 100644
Kmods SIG 8b815c
--- a/src/file.c
Kmods SIG 8b815c
+++ b/src/file.c
Kmods SIG 8b815c
@@ -190,7 +190,8 @@ static int ntfs_extend_initialized_size(struct file *file,
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 /*
Kmods SIG 8b815c
  * ntfs_zero_range - Helper function for punch_hole.
Kmods SIG 8b815c
- * It zeroes a range [vbo, vbo_to)
Kmods SIG 8b815c
+ *
Kmods SIG 8b815c
+ * It zeroes a range [vbo, vbo_to).
Kmods SIG 8b815c
  */
Kmods SIG 8b815c
 static int ntfs_zero_range(struct inode *inode, u64 vbo, u64 vbo_to)
Kmods SIG 8b815c
 {
Kmods SIG 8b815c
@@ -231,12 +232,12 @@ static int ntfs_zero_range(struct inode *inode, u64 vbo, u64 vbo_to)
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 			if (!buffer_mapped(bh)) {
Kmods SIG 8b815c
 				ntfs_get_block(inode, iblock, bh, 0);
Kmods SIG 8b815c
-				/* unmapped? It's a hole - nothing to do */
Kmods SIG 8b815c
+				/* Unmapped? It's a hole - nothing to do. */
Kmods SIG 8b815c
 				if (!buffer_mapped(bh))
Kmods SIG 8b815c
 					continue;
Kmods SIG 8b815c
 			}
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-			/* Ok, it's mapped. Make sure it's up-to-date */
Kmods SIG 8b815c
+			/* Ok, it's mapped. Make sure it's up-to-date. */
Kmods SIG 8b815c
 			if (PageUptodate(page))
Kmods SIG 8b815c
 				set_buffer_uptodate(bh);
Kmods SIG 8b815c
 
Kmods SIG 8b815c
@@ -272,9 +273,8 @@ static int ntfs_zero_range(struct inode *inode, u64 vbo, u64 vbo_to)
Kmods SIG 8b815c
 }
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 /*
Kmods SIG 8b815c
- * ntfs_sparse_cluster
Kmods SIG 8b815c
+ * ntfs_sparse_cluster - Helper function to zero a new allocated clusters.
Kmods SIG 8b815c
  *
Kmods SIG 8b815c
- * Helper function to zero a new allocated clusters
Kmods SIG 8b815c
  * NOTE: 512 <= cluster size <= 2M
Kmods SIG 8b815c
  */
Kmods SIG 8b815c
 void ntfs_sparse_cluster(struct inode *inode, struct page *page0, CLST vcn,
Kmods SIG 8b815c
@@ -588,7 +588,7 @@ static long ntfs_fallocate(struct file *file, int mode, loff_t vbo, loff_t len)
Kmods SIG 8b815c
 		truncate_pagecache(inode, vbo_down);
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 		if (!is_sparsed(ni) && !is_compressed(ni)) {
Kmods SIG 8b815c
-			/* normal file */
Kmods SIG 8b815c
+			/* Normal file. */
Kmods SIG 8b815c
 			err = ntfs_zero_range(inode, vbo, end);
Kmods SIG 8b815c
 			goto out;
Kmods SIG 8b815c
 		}
Kmods SIG 8b815c
@@ -599,7 +599,7 @@ static long ntfs_fallocate(struct file *file, int mode, loff_t vbo, loff_t len)
Kmods SIG 8b815c
 		if (err != E_NTFS_NOTALIGNED)
Kmods SIG 8b815c
 			goto out;
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-		/* process not aligned punch */
Kmods SIG 8b815c
+		/* Process not aligned punch. */
Kmods SIG 8b815c
 		mask = frame_size - 1;
Kmods SIG 8b815c
 		vbo_a = (vbo + mask) & ~mask;
Kmods SIG 8b815c
 		end_a = end & ~mask;
Kmods SIG 8b815c
@@ -647,7 +647,7 @@ static long ntfs_fallocate(struct file *file, int mode, loff_t vbo, loff_t len)
Kmods SIG 8b815c
 		if (err)
Kmods SIG 8b815c
 			goto out;
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-		/* Wait for existing dio to complete */
Kmods SIG 8b815c
+		/* Wait for existing dio to complete. */
Kmods SIG 8b815c
 		inode_dio_wait(inode);
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 		truncate_pagecache(inode, vbo_down);
Kmods SIG 8b815c
@@ -1127,7 +1127,7 @@ static ssize_t ntfs_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Kmods SIG 8b815c
 		goto out;
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	if (WARN_ON(ni->ni_flags & NI_FLAG_COMPRESSED_MASK)) {
Kmods SIG 8b815c
-		/* Should never be here, see ntfs_file_open() */
Kmods SIG 8b815c
+		/* Should never be here, see ntfs_file_open(). */
Kmods SIG 8b815c
 		ret = -EOPNOTSUPP;
Kmods SIG 8b815c
 		goto out;
Kmods SIG 8b815c
 	}
Kmods SIG 8b815c
diff --git a/src/frecord.c b/src/frecord.c
Kmods SIG 8b815c
index 3f48b612ec962c6720fb3d3b3e0d63312f389c81..938b12d56ca676308d2af82666a4f6f19cc8f122 100644
Kmods SIG 8b815c
--- a/src/frecord.c
Kmods SIG 8b815c
+++ b/src/frecord.c
Kmods SIG 8b815c
@@ -56,7 +56,7 @@ static struct mft_inode *ni_find_mi(struct ntfs_inode *ni, CLST rno)
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 /*
Kmods SIG 8b815c
  * ni_add_mi - Add new mft_inode into ntfs_inode.
Kmods SIG 8b815c
-*/
Kmods SIG 8b815c
+ */
Kmods SIG 8b815c
 static void ni_add_mi(struct ntfs_inode *ni, struct mft_inode *mi)
Kmods SIG 8b815c
 {
Kmods SIG 8b815c
 	ni_ins_mi(ni, &ni->mi_tree, mi->rno, &mi->node);
Kmods SIG 8b815c
@@ -70,9 +70,8 @@ void ni_remove_mi(struct ntfs_inode *ni, struct mft_inode *mi)
Kmods SIG 8b815c
 	rb_erase(&mi->node, &ni->mi_tree);
Kmods SIG 8b815c
 }
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-/* ni_std
Kmods SIG 8b815c
- *
Kmods SIG 8b815c
- * Return: Pointer into std_info from primary record.
Kmods SIG 8b815c
+/*
Kmods SIG 8b815c
+ * ni_std - Return: Pointer into std_info from primary record.
Kmods SIG 8b815c
  */
Kmods SIG 8b815c
 struct ATTR_STD_INFO *ni_std(struct ntfs_inode *ni)
Kmods SIG 8b815c
 {
Kmods SIG 8b815c
@@ -385,7 +384,7 @@ bool ni_add_subrecord(struct ntfs_inode *ni, CLST rno, struct mft_inode **mi)
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 /*
Kmods SIG 8b815c
  * ni_remove_attr - Remove all attributes for the given type/name/id.
Kmods SIG 8b815c
-*/
Kmods SIG 8b815c
+ */
Kmods SIG 8b815c
 int ni_remove_attr(struct ntfs_inode *ni, enum ATTR_TYPE type,
Kmods SIG 8b815c
 		   const __le16 *name, size_t name_len, bool base_only,
Kmods SIG 8b815c
 		   const __le16 *id)
Kmods SIG 8b815c
@@ -740,7 +739,7 @@ static int ni_try_remove_attr_list(struct ntfs_inode *ni)
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 /*
Kmods SIG 8b815c
  * ni_create_attr_list - Generates an attribute list for this primary record.
Kmods SIG 8b815c
-*/
Kmods SIG 8b815c
+ */
Kmods SIG 8b815c
 int ni_create_attr_list(struct ntfs_inode *ni)
Kmods SIG 8b815c
 {
Kmods SIG 8b815c
 	struct ntfs_sb_info *sbi = ni->mi.sbi;
Kmods SIG 8b815c
@@ -939,7 +938,7 @@ static int ni_ins_attr_ext(struct ntfs_inode *ni, struct ATTR_LIST_ENTRY *le,
Kmods SIG 8b815c
 		if (is_mft_data &&
Kmods SIG 8b815c
 		    (mi_enum_attr(mi, NULL) ||
Kmods SIG 8b815c
 		     vbo <= ((u64)mi->rno << sbi->record_bits))) {
Kmods SIG 8b815c
-			/* We can't accept this record 'case MFT's bootstrapping. */
Kmods SIG 8b815c
+			/* We can't accept this record 'cause MFT's bootstrapping. */
Kmods SIG 8b815c
 			continue;
Kmods SIG 8b815c
 		}
Kmods SIG 8b815c
 		if (is_mft &&
Kmods SIG 8b815c
@@ -1078,7 +1077,7 @@ static int ni_insert_attr(struct ntfs_inode *ni, enum ATTR_TYPE type,
Kmods SIG 8b815c
 	 */
Kmods SIG 8b815c
 	max_free = free;
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-	/* Estimate the result of moving all possible attributes away.*/
Kmods SIG 8b815c
+	/* Estimate the result of moving all possible attributes away. */
Kmods SIG 8b815c
 	attr = NULL;
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	while ((attr = mi_enum_attr(&ni->mi, attr))) {
Kmods SIG 8b815c
@@ -1095,7 +1094,7 @@ static int ni_insert_attr(struct ntfs_inode *ni, enum ATTR_TYPE type,
Kmods SIG 8b815c
 		goto out;
Kmods SIG 8b815c
 	}
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-	/* Start real attribute moving */
Kmods SIG 8b815c
+	/* Start real attribute moving. */
Kmods SIG 8b815c
 	attr = NULL;
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	for (;;) {
Kmods SIG 8b815c
@@ -1542,7 +1541,7 @@ int ni_delete_all(struct ntfs_inode *ni)
Kmods SIG 8b815c
 		node = next;
Kmods SIG 8b815c
 	}
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-	/* Free base record */
Kmods SIG 8b815c
+	/* Free base record. */
Kmods SIG 8b815c
 	clear_rec_inuse(ni->mi.mrec);
Kmods SIG 8b815c
 	ni->mi.dirty = true;
Kmods SIG 8b815c
 	err = mi_write(&ni->mi, 0);
Kmods SIG 8b815c
@@ -2243,7 +2242,7 @@ int ni_decompress_file(struct ntfs_inode *ni)
Kmods SIG 8b815c
 	}
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	if (attr->non_res && is_attr_sparsed(attr)) {
Kmods SIG 8b815c
-		/* Sarsed attribute header is 8 bytes bigger than normal. */
Kmods SIG 8b815c
+		/* Sparsed attribute header is 8 bytes bigger than normal. */
Kmods SIG 8b815c
 		struct MFT_REC *rec = mi->mrec;
Kmods SIG 8b815c
 		u32 used = le32_to_cpu(rec->used);
Kmods SIG 8b815c
 		u32 asize = le32_to_cpu(attr->size);
Kmods SIG 8b815c
@@ -2324,7 +2323,7 @@ static int decompress_lzx_xpress(struct ntfs_sb_info *sbi, const char *cmpr,
Kmods SIG 8b815c
 		mutex_lock(&sbi->compress.mtx_xpress);
Kmods SIG 8b815c
 		ctx = sbi->compress.xpress;
Kmods SIG 8b815c
 		if (!ctx) {
Kmods SIG 8b815c
-			/* Lazy initialize Xpress decompress context */
Kmods SIG 8b815c
+			/* Lazy initialize Xpress decompress context. */
Kmods SIG 8b815c
 			ctx = xpress_allocate_decompressor();
Kmods SIG 8b815c
 			if (!ctx) {
Kmods SIG 8b815c
 				err = -ENOMEM;
Kmods SIG 8b815c
@@ -2348,7 +2347,7 @@ static int decompress_lzx_xpress(struct ntfs_sb_info *sbi, const char *cmpr,
Kmods SIG 8b815c
 /*
Kmods SIG 8b815c
  * ni_read_frame
Kmods SIG 8b815c
  *
Kmods SIG 8b815c
- * Pages - array of locked pages.
Kmods SIG 8b815c
+ * Pages - Array of locked pages.
Kmods SIG 8b815c
  */
Kmods SIG 8b815c
 int ni_read_frame(struct ntfs_inode *ni, u64 frame_vbo, struct page **pages,
Kmods SIG 8b815c
 		  u32 pages_per_frame)
Kmods SIG 8b815c
@@ -2740,7 +2739,7 @@ int ni_write_frame(struct ntfs_inode *ni, struct page **pages,
Kmods SIG 8b815c
 		lznt = NULL;
Kmods SIG 8b815c
 	}
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-	/* Compress: frame_mem -> frame_ondisk. */
Kmods SIG 8b815c
+	/* Compress: frame_mem -> frame_ondisk */
Kmods SIG 8b815c
 	compr_size = compress_lznt(frame_mem, frame_size, frame_ondisk,
Kmods SIG 8b815c
 				   frame_size, sbi->compress.lznt);
Kmods SIG 8b815c
 	mutex_unlock(&sbi->compress.mtx_lznt);
Kmods SIG 8b815c
diff --git a/src/fslog.c b/src/fslog.c
Kmods SIG 8b815c
index 6f6057129fddd602ce0f86cd2aafba6b5c9fa356..b5853aed0e25bc6d93b3f6f667ae36feda3d980b 100644
Kmods SIG 8b815c
--- a/src/fslog.c
Kmods SIG 8b815c
+++ b/src/fslog.c
Kmods SIG 8b815c
@@ -1362,7 +1362,8 @@ static void log_create(struct ntfs_log *log, u32 l_size, const u64 last_lsn,
Kmods SIG 8b815c
 	/* Compute the log page values. */
Kmods SIG 8b815c
 	log->data_off = ALIGN(
Kmods SIG 8b815c
 		offsetof(struct RECORD_PAGE_HDR, fixups) +
Kmods SIG 8b815c
-		sizeof(short) * ((log->page_size >> SECTOR_SHIFT) + 1), 8);
Kmods SIG 8b815c
+			sizeof(short) * ((log->page_size >> SECTOR_SHIFT) + 1),
Kmods SIG 8b815c
+		8);
Kmods SIG 8b815c
 	log->data_size = log->page_size - log->data_off;
Kmods SIG 8b815c
 	log->record_header_len = sizeof(struct LFS_RECORD_HDR);
Kmods SIG 8b815c
 
Kmods SIG 8b815c
@@ -1372,7 +1373,9 @@ static void log_create(struct ntfs_log *log, u32 l_size, const u64 last_lsn,
Kmods SIG 8b815c
 	/* Compute the restart page values. */
Kmods SIG 8b815c
 	log->ra_off = ALIGN(
Kmods SIG 8b815c
 		offsetof(struct RESTART_HDR, fixups) +
Kmods SIG 8b815c
-		sizeof(short) * ((log->sys_page_size >> SECTOR_SHIFT) + 1), 8);
Kmods SIG 8b815c
+			sizeof(short) *
Kmods SIG 8b815c
+				((log->sys_page_size >> SECTOR_SHIFT) + 1),
Kmods SIG 8b815c
+		8);
Kmods SIG 8b815c
 	log->restart_size = log->sys_page_size - log->ra_off;
Kmods SIG 8b815c
 	log->ra_size = struct_size(log->ra, clients, 1);
Kmods SIG 8b815c
 	log->current_openlog_count = open_log_count;
Kmods SIG 8b815c
@@ -5132,8 +5135,8 @@ int log_replay(struct ntfs_inode *ni, bool *initialized)
Kmods SIG 8b815c
 	rh->sys_page_size = cpu_to_le32(log->page_size);
Kmods SIG 8b815c
 	rh->page_size = cpu_to_le32(log->page_size);
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-	t16 = ALIGN(offsetof(struct RESTART_HDR, fixups) +
Kmods SIG 8b815c
-		    sizeof(short) * t16, 8);
Kmods SIG 8b815c
+	t16 = ALIGN(offsetof(struct RESTART_HDR, fixups) + sizeof(short) * t16,
Kmods SIG 8b815c
+		    8);
Kmods SIG 8b815c
 	rh->ra_off = cpu_to_le16(t16);
Kmods SIG 8b815c
 	rh->minor_ver = cpu_to_le16(1); // 0x1A:
Kmods SIG 8b815c
 	rh->major_ver = cpu_to_le16(1); // 0x1C:
Kmods SIG 8b815c
diff --git a/src/fsntfs.c b/src/fsntfs.c
Kmods SIG 8b815c
index 66924943921771d3cf46f6a762b1ea81ae1e9ca2..91e3743e1442f10cfc727eba0587a9ef0b20c039 100644
Kmods SIG 8b815c
--- a/src/fsntfs.c
Kmods SIG 8b815c
+++ b/src/fsntfs.c
Kmods SIG 8b815c
@@ -312,7 +312,7 @@ int ntfs_loadlog_and_replay(struct ntfs_inode *ni, struct ntfs_sb_info *sbi)
Kmods SIG 8b815c
 	if (sb_rdonly(sb) || !initialized)
Kmods SIG 8b815c
 		goto out;
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-	/* Fill LogFile by '-1' if it is initialized.ssss */
Kmods SIG 8b815c
+	/* Fill LogFile by '-1' if it is initialized. */
Kmods SIG 8b815c
 	err = ntfs_bio_fill_1(sbi, &ni->file.run);
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 out:
Kmods SIG 8b815c
@@ -960,10 +960,10 @@ int ntfs_set_state(struct ntfs_sb_info *sbi, enum NTFS_DIRTY_FLAGS dirty)
Kmods SIG 8b815c
 	/* verify(!ntfs_update_mftmirr()); */
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	/*
Kmods SIG 8b815c
-	 * if we used wait=1, sync_inode_metadata waits for the io for the
Kmods SIG 8b815c
+	 * If we used wait=1, sync_inode_metadata waits for the io for the
Kmods SIG 8b815c
 	 * inode to finish. It hangs when media is removed.
Kmods SIG 8b815c
 	 * So wait=0 is sent down to sync_inode_metadata
Kmods SIG 8b815c
-	 * and filemap_fdatawrite is used for the data blocks
Kmods SIG 8b815c
+	 * and filemap_fdatawrite is used for the data blocks.
Kmods SIG 8b815c
 	 */
Kmods SIG 8b815c
 	err = sync_inode_metadata(&ni->vfs_inode, 0);
Kmods SIG 8b815c
 	if (!err)
Kmods SIG 8b815c
@@ -1917,7 +1917,7 @@ int ntfs_security_init(struct ntfs_sb_info *sbi)
Kmods SIG 8b815c
 	sbi->security.next_id = SECURITY_ID_FIRST;
Kmods SIG 8b815c
 	/* Always write new security at the end of bucket. */
Kmods SIG 8b815c
 	sbi->security.next_off =
Kmods SIG 8b815c
-			ALIGN(sds_size - SecurityDescriptorsBlockSize, 16);
Kmods SIG 8b815c
+		ALIGN(sds_size - SecurityDescriptorsBlockSize, 16);
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	off = 0;
Kmods SIG 8b815c
 	ne = NULL;
Kmods SIG 8b815c
diff --git a/src/index.c b/src/index.c
Kmods SIG 8b815c
index 1224b8e42b3e3d07938310739843f0ab7195f326..0daca9adc54c79084743efc2487b49a0ac0d3227 100644
Kmods SIG 8b815c
--- a/src/index.c
Kmods SIG 8b815c
+++ b/src/index.c
Kmods SIG 8b815c
@@ -2624,17 +2624,19 @@ int indx_update_dup(struct ntfs_inode *ni, struct ntfs_sb_info *sbi,
Kmods SIG 8b815c
 	e_fname = (struct ATTR_FILE_NAME *)(e + 1);
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	if (!memcmp(&e_fname->dup, dup, sizeof(*dup))) {
Kmods SIG 8b815c
-		/* Nothing to update in index! Try to avoid this call. */
Kmods SIG 8b815c
+		/*
Kmods SIG 8b815c
+		 * Nothing to update in index! Try to avoid this call.
Kmods SIG 8b815c
+		 */
Kmods SIG 8b815c
 		goto out;
Kmods SIG 8b815c
 	}
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	memcpy(&e_fname->dup, dup, sizeof(*dup));
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	if (fnd->level) {
Kmods SIG 8b815c
-		/* directory entry in index */
Kmods SIG 8b815c
+		/* Directory entry in index. */
Kmods SIG 8b815c
 		err = indx_write(indx, ni, fnd->nodes[fnd->level - 1], sync);
Kmods SIG 8b815c
 	} else {
Kmods SIG 8b815c
-		/* directory entry in directory MFT record */
Kmods SIG 8b815c
+		/* Directory entry in directory MFT record. */
Kmods SIG 8b815c
 		mi->dirty = true;
Kmods SIG 8b815c
 		if (sync)
Kmods SIG 8b815c
 			err = mi_write(mi, 1);
Kmods SIG 8b815c
diff --git a/src/inode.c b/src/inode.c
Kmods SIG 8b815c
index 8f72066b3229a3f87b7b0b0e770bce20a4b06edd..db2a5a4c38e4d62abfb2c7ca16947cd766982b13 100644
Kmods SIG 8b815c
--- a/src/inode.c
Kmods SIG 8b815c
+++ b/src/inode.c
Kmods SIG 8b815c
@@ -89,7 +89,7 @@ static struct inode *ntfs_read_mft(struct inode *inode,
Kmods SIG 8b815c
 	}
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	if (le32_to_cpu(rec->total) != sbi->record_size) {
Kmods SIG 8b815c
-		// Bad inode?
Kmods SIG 8b815c
+		/* Bad inode? */
Kmods SIG 8b815c
 		err = -EINVAL;
Kmods SIG 8b815c
 		goto out;
Kmods SIG 8b815c
 	}
Kmods SIG 8b815c
@@ -605,7 +605,7 @@ static noinline int ntfs_get_block_vbo(struct inode *inode, u64 vbo,
Kmods SIG 8b815c
 		if (vbo >= valid)
Kmods SIG 8b815c
 			set_buffer_new(bh);
Kmods SIG 8b815c
 	} else if (create) {
Kmods SIG 8b815c
-		/*normal write*/
Kmods SIG 8b815c
+		/* Normal write. */
Kmods SIG 8b815c
 		if (bytes > bh->b_size)
Kmods SIG 8b815c
 			bytes = bh->b_size;
Kmods SIG 8b815c
 
Kmods SIG 8b815c
@@ -1091,7 +1091,7 @@ int inode_write_data(struct inode *inode, const void *data, size_t bytes)
Kmods SIG 8b815c
 /*
Kmods SIG 8b815c
  * ntfs_reparse_bytes
Kmods SIG 8b815c
  *
Kmods SIG 8b815c
- * Number of bytes to for REPARSE_DATA_BUFFER(IO_REPARSE_TAG_SYMLINK)
Kmods SIG 8b815c
+ * Number of bytes for REPARSE_DATA_BUFFER(IO_REPARSE_TAG_SYMLINK)
Kmods SIG 8b815c
  * for unicode string of @uni_len length.
Kmods SIG 8b815c
  */
Kmods SIG 8b815c
 static inline u32 ntfs_reparse_bytes(u32 uni_len)
Kmods SIG 8b815c
@@ -1205,13 +1205,13 @@ struct inode *ntfs_create_inode(struct user_namespace *mnt_userns,
Kmods SIG 8b815c
 		return ERR_PTR(-EINVAL);
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	if (S_ISDIR(mode)) {
Kmods SIG 8b815c
-		/* use parent's directory attributes */
Kmods SIG 8b815c
+		/* Use parent's directory attributes. */
Kmods SIG 8b815c
 		fa = dir_ni->std_fa | FILE_ATTRIBUTE_DIRECTORY |
Kmods SIG 8b815c
 		     FILE_ATTRIBUTE_ARCHIVE;
Kmods SIG 8b815c
 		/*
Kmods SIG 8b815c
-		 * By default child directory inherits parent attributes
Kmods SIG 8b815c
-		 * root directory is hidden + system
Kmods SIG 8b815c
-		 * Make an exception for children in root
Kmods SIG 8b815c
+		 * By default child directory inherits parent attributes.
Kmods SIG 8b815c
+		 * Root directory is hidden + system.
Kmods SIG 8b815c
+		 * Make an exception for children in root.
Kmods SIG 8b815c
 		 */
Kmods SIG 8b815c
 		if (dir->i_ino == MFT_REC_ROOT)
Kmods SIG 8b815c
 			fa &= ~(FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM);
Kmods SIG 8b815c
@@ -1220,8 +1220,8 @@ struct inode *ntfs_create_inode(struct user_namespace *mnt_userns,
Kmods SIG 8b815c
 		fa = FILE_ATTRIBUTE_REPARSE_POINT;
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 		/*
Kmods SIG 8b815c
-		 * linux: there are dir/file/symlink and so on.
Kmods SIG 8b815c
-		 * NTFS: symlinks are "dir + reparse" or "file + reparse".
Kmods SIG 8b815c
+		 * Linux: there are dir/file/symlink and so on.
Kmods SIG 8b815c
+		 * NTFS: symlinks are "dir + reparse" or "file + reparse"
Kmods SIG 8b815c
 		 * It is good idea to create:
Kmods SIG 8b815c
 		 * dir + reparse if 'symname' points to directory
Kmods SIG 8b815c
 		 * or
Kmods SIG 8b815c
@@ -1860,7 +1860,7 @@ static noinline int ntfs_readlink_hlp(struct inode *inode, char *buffer,
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	default:
Kmods SIG 8b815c
 		if (IsReparseTagMicrosoft(rp->ReparseTag)) {
Kmods SIG 8b815c
-			/* unknown Microsoft Tag */
Kmods SIG 8b815c
+			/* Unknown Microsoft Tag. */
Kmods SIG 8b815c
 			goto out;
Kmods SIG 8b815c
 		}
Kmods SIG 8b815c
 		if (!IsReparseTagNameSurrogate(rp->ReparseTag) ||
Kmods SIG 8b815c
diff --git a/src/lznt.c b/src/lznt.c
Kmods SIG 8b815c
index 3acf0d9f0b1511d967a6613e05c5845046b97549..f1f691a67cc490254957f062cfc38ec12ac7e834 100644
Kmods SIG 8b815c
--- a/src/lznt.c
Kmods SIG 8b815c
+++ b/src/lznt.c
Kmods SIG 8b815c
@@ -296,8 +296,9 @@ static inline ssize_t decompress_chunk(u8 *unc, u8 *unc_end, const u8 *cmpr,
Kmods SIG 8b815c
  */
Kmods SIG 8b815c
 struct lznt *get_lznt_ctx(int level)
Kmods SIG 8b815c
 {
Kmods SIG 8b815c
-	struct lznt *r = kzalloc(level ? offsetof(struct lznt, hash) :
Kmods SIG 8b815c
-					 sizeof(struct lznt), GFP_NOFS);
Kmods SIG 8b815c
+	struct lznt *r = kzalloc(level ? offsetof(struct lznt, hash)
Kmods SIG 8b815c
+				       : sizeof(struct lznt),
Kmods SIG 8b815c
+				 GFP_NOFS);
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	if (r)
Kmods SIG 8b815c
 		r->std = !level;
Kmods SIG 8b815c
diff --git a/src/ntfs.h b/src/ntfs.h
Kmods SIG 8b815c
index 0fd7bffb98d4dfe030ee2b4eaf9fa75647f8369d..6bb3e595263b67c7cc66a0fecc5dfa68310826d4 100644
Kmods SIG 8b815c
--- a/src/ntfs.h
Kmods SIG 8b815c
+++ b/src/ntfs.h
Kmods SIG 8b815c
@@ -262,7 +262,7 @@ enum RECORD_FLAG {
Kmods SIG 8b815c
 	RECORD_FLAG_UNKNOWN	= cpu_to_le16(0x0008),
Kmods SIG 8b815c
 };
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-/* MFT Record structure, */
Kmods SIG 8b815c
+/* MFT Record structure. */
Kmods SIG 8b815c
 struct MFT_REC {
Kmods SIG 8b815c
 	struct NTFS_RECORD_HEADER rhdr; // 'FILE'
Kmods SIG 8b815c
 
Kmods SIG 8b815c
diff --git a/src/ntfs_fs.h b/src/ntfs_fs.h
Kmods SIG 8b815c
index f9436cbbc347b617b458bb21d6c7229b467ca289..97e682ebcfb94dd1ad9677ed5ee82bb6a88401a5 100644
Kmods SIG 8b815c
--- a/src/ntfs_fs.h
Kmods SIG 8b815c
+++ b/src/ntfs_fs.h
Kmods SIG 8b815c
@@ -59,18 +59,18 @@ struct ntfs_mount_options {
Kmods SIG 8b815c
 	u16 fs_fmask_inv;
Kmods SIG 8b815c
 	u16 fs_dmask_inv;
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-	unsigned uid : 1,	/* uid was set. */
Kmods SIG 8b815c
-		gid : 1,	/* gid was set. */
Kmods SIG 8b815c
-		fmask : 1,	/* fmask was set. */
Kmods SIG 8b815c
-		dmask : 1,	/* dmask was set. */
Kmods SIG 8b815c
-		sys_immutable : 1,/* Immutable system files. */
Kmods SIG 8b815c
-		discard : 1,	/* Issue discard requests on deletions. */
Kmods SIG 8b815c
-		sparse : 1,	/* Create sparse files. */
Kmods SIG 8b815c
-		showmeta : 1,	/* Show meta files. */
Kmods SIG 8b815c
-		nohidden : 1, 	/* Do not show hidden files. */
Kmods SIG 8b815c
-		force : 1, 	/* Rw mount dirty volume. */
Kmods SIG 8b815c
-		no_acs_rules : 1,/*Exclude acs rules. */
Kmods SIG 8b815c
-		prealloc : 1	/* Preallocate space when file is growing. */
Kmods SIG 8b815c
+	unsigned uid : 1, /* uid was set. */
Kmods SIG 8b815c
+		gid : 1, /* gid was set. */
Kmods SIG 8b815c
+		fmask : 1, /* fmask was set. */
Kmods SIG 8b815c
+		dmask : 1, /* dmask was set. */
Kmods SIG 8b815c
+		sys_immutable : 1, /* Immutable system files. */
Kmods SIG 8b815c
+		discard : 1, /* Issue discard requests on deletions. */
Kmods SIG 8b815c
+		sparse : 1, /* Create sparse files. */
Kmods SIG 8b815c
+		showmeta : 1, /* Show meta files. */
Kmods SIG 8b815c
+		nohidden : 1, /* Do not show hidden files. */
Kmods SIG 8b815c
+		force : 1, /* Rw mount dirty volume. */
Kmods SIG 8b815c
+		no_acs_rules : 1, /*Exclude acs rules. */
Kmods SIG 8b815c
+		prealloc : 1 /* Preallocate space when file is growing. */
Kmods SIG 8b815c
 		;
Kmods SIG 8b815c
 };
Kmods SIG 8b815c
 
Kmods SIG 8b815c
diff --git a/src/record.c b/src/record.c
Kmods SIG 8b815c
index 61e3f2fb619f698ffdf5d81ca6f488008002de52..103705c86772f45a90227e6434449e99c4d7d94b 100644
Kmods SIG 8b815c
--- a/src/record.c
Kmods SIG 8b815c
+++ b/src/record.c
Kmods SIG 8b815c
@@ -219,7 +219,7 @@ struct ATTRIB *mi_enum_attr(struct mft_inode *mi, struct ATTRIB *attr)
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 		asize = le32_to_cpu(attr->size);
Kmods SIG 8b815c
 		if (asize < SIZEOF_RESIDENT) {
Kmods SIG 8b815c
-			/* Impossible 'cause we should not return such attribute */
Kmods SIG 8b815c
+			/* Impossible 'cause we should not return such attribute. */
Kmods SIG 8b815c
 			return NULL;
Kmods SIG 8b815c
 		}
Kmods SIG 8b815c
 
Kmods SIG 8b815c
diff --git a/src/super.c b/src/super.c
Kmods SIG 8b815c
index 2fbab8a931eeb7a3c69471fb1fcb1c3e8b0d582a..dbecf095da59268da2fede022b71cb2b40b2d909 100644
Kmods SIG 8b815c
--- a/src/super.c
Kmods SIG 8b815c
+++ b/src/super.c
Kmods SIG 8b815c
@@ -1053,7 +1053,7 @@ static int ntfs_fill_super(struct super_block *sb, void *data, int silent)
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	iput(inode);
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-	/* Load $LogFile to replay. */
Kmods SIG 8b815c
+	/* Load LogFile to replay. */
Kmods SIG 8b815c
 	ref.low = cpu_to_le32(MFT_REC_LOG);
Kmods SIG 8b815c
 	ref.seq = cpu_to_le16(MFT_REC_LOG);
Kmods SIG 8b815c
 	inode = ntfs_iget5(sb, &ref, &NAME_LOGFILE);
Kmods SIG 8b815c
diff --git a/src/upcase.c b/src/upcase.c
Kmods SIG 8b815c
index eb65bbd939e8cdf17d209b60243e5fddeddabdf3..bbeba778237eefc318b00e04b05ad0ac1592e1ec 100644
Kmods SIG 8b815c
--- a/src/upcase.c
Kmods SIG 8b815c
+++ b/src/upcase.c
Kmods SIG 8b815c
@@ -34,7 +34,7 @@ static inline u16 upcase_unicode_char(const u16 *upcase, u16 chr)
Kmods SIG 8b815c
  * - Case insensitive
Kmods SIG 8b815c
  * - If name equals and 'bothcases' then
Kmods SIG 8b815c
  * - Case sensitive
Kmods SIG 8b815c
- * 'Straigth way' code scans input names twice in worst case.
Kmods SIG 8b815c
+ * 'Straight way' code scans input names twice in worst case.
Kmods SIG 8b815c
  * Optimized code scans input names only once.
Kmods SIG 8b815c
  */
Kmods SIG 8b815c
 int ntfs_cmp_names(const __le16 *s1, size_t l1, const __le16 *s2, size_t l2,
Kmods SIG 8b815c
diff --git a/src/xattr.c b/src/xattr.c
Kmods SIG 8b815c
index 22fd5eb32c5be7f53b3fd8076599f7dbaf84e2cf..b15d532e4a17087b06284d82965c21224f1d4f35 100644
Kmods SIG 8b815c
--- a/src/xattr.c
Kmods SIG 8b815c
+++ b/src/xattr.c
Kmods SIG 8b815c
@@ -26,9 +26,10 @@
Kmods SIG 8b815c
 static inline size_t unpacked_ea_size(const struct EA_FULL *ea)
Kmods SIG 8b815c
 {
Kmods SIG 8b815c
 	return ea->size ? le32_to_cpu(ea->size)
Kmods SIG 8b815c
-			: ALIGN(struct_size(
Kmods SIG 8b815c
-			      ea, name,
Kmods SIG 8b815c
-			      1 + ea->name_len + le16_to_cpu(ea->elength)), 4);
Kmods SIG 8b815c
+			: ALIGN(struct_size(ea, name,
Kmods SIG 8b815c
+					    1 + ea->name_len +
Kmods SIG 8b815c
+						    le16_to_cpu(ea->elength)),
Kmods SIG 8b815c
+				4);
Kmods SIG 8b815c
 }
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 static inline size_t packed_ea_size(const struct EA_FULL *ea)
Kmods SIG 8b815c
-- 
Kmods SIG 8b815c
2.31.1
Kmods SIG 8b815c