Blame SOURCES/0017-fs-ntfs3-Restyle-comment-block-in-ni_parse_reparse.patch

Kmods SIG 8b815c
From 24516d481dfc6c7728ffe36280ca8cf4640d119a Mon Sep 17 00:00:00 2001
Kmods SIG 8b815c
From: Kari Argillander <kari.argillander@gmail.com>
Kmods SIG 8b815c
Date: Tue, 24 Aug 2021 21:37:06 +0300
Kmods SIG 8b815c
Subject: [Backport 24516d481dfc] src: Restyle comment block in
Kmods SIG 8b815c
 ni_parse_reparse()
Kmods SIG 8b815c
Kmods SIG 8b815c
First of this fix one none utf8 char in this comment block. Maybe
Kmods SIG 8b815c
this happened because error in filesystem ;)
Kmods SIG 8b815c
Kmods SIG 8b815c
Also this block was hard to read because long lines so make it max 80
Kmods SIG 8b815c
long. And while we doing this stuff make little better grammer.
Kmods SIG 8b815c
Kmods SIG 8b815c
Signed-off-by: Kari Argillander <kari.argillander@gmail.com>
Kmods SIG 8b815c
Reviewed-by: Christoph Hellwig <hch@lst.de>
Kmods SIG 8b815c
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Kmods SIG 8b815c
---
Kmods SIG 8b815c
 src/frecord.c | 16 ++++++++++------
Kmods SIG 8b815c
 1 file changed, 10 insertions(+), 6 deletions(-)
Kmods SIG 8b815c
Kmods SIG 8b815c
diff --git a/src/frecord.c b/src/frecord.c
Kmods SIG 8b815c
index e377d72477dfba95eb73a2a78a1c43ebc1f6f456..e94d830b2f4a12f84bf4870219507b21042b41c0 100644
Kmods SIG 8b815c
--- a/src/frecord.c
Kmods SIG 8b815c
+++ b/src/frecord.c
Kmods SIG 8b815c
@@ -1782,14 +1782,18 @@ enum REPARSE_SIGN ni_parse_reparse(struct ntfs_inode *ni, struct ATTRIB *attr,
Kmods SIG 8b815c
 		break;
Kmods SIG 8b815c
 	case IO_REPARSE_TAG_COMPRESS:
Kmods SIG 8b815c
 		/*
Kmods SIG 8b815c
-		 * WOF - Windows Overlay Filter - used to compress files with lzx/xpress
Kmods SIG 8b815c
-		 * Unlike native NTFS file compression, the Windows Overlay Filter supports
Kmods SIG 8b815c
-		 * only read operations. This means that it doesn't need to sector-align each
Kmods SIG 8b815c
-		 * compressed chunk, so the compressed data can be packed more tightly together.
Kmods SIG 8b815c
-		 * If you open the file for writing, the Windows Overlay Filter just decompresses
Kmods SIG 8b815c
+		 * WOF - Windows Overlay Filter - Used to compress files with
Kmods SIG 8b815c
+		 * LZX/Xpress.
Kmods SIG 8b815c
+		 *
Kmods SIG 8b815c
+		 * Unlike native NTFS file compression, the Windows
Kmods SIG 8b815c
+		 * Overlay Filter supports only read operations. This means
Kmods SIG 8b815c
+		 * that it doesn't need to sector-align each compressed chunk,
Kmods SIG 8b815c
+		 * so the compressed data can be packed more tightly together.
Kmods SIG 8b815c
+		 * If you open the file for writing, the WOF just decompresses
Kmods SIG 8b815c
 		 * the entire file, turning it back into a plain file.
Kmods SIG 8b815c
 		 *
Kmods SIG 8b815c
-		 * ntfs3 driver decompresses the entire file only on write or change size requests
Kmods SIG 8b815c
+		 * Ntfs3 driver decompresses the entire file only on write or
Kmods SIG 8b815c
+		 * change size requests.
Kmods SIG 8b815c
 		 */
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 		cmpr = &rp->CompressReparseBuffer;
Kmods SIG 8b815c
-- 
Kmods SIG 8b815c
2.31.1
Kmods SIG 8b815c