From: Robin Hsu
Fix man page for sload.f2fs compression support
Signed-off-by: Robin Hsu
---
man/sload.f2fs.8 | 94 ++--
1 file changed, 84 insertions(+), 10 deletions(-)
diff --git a/man/sload.f2fs.8 b/man/sload.f2fs.8
index d07330c..c165b35
From: Robin Hsu
Hi, All,
Due to my mistakes, patches for sload compression support were sent
without "v3" (version 3). That was corrected by resending them again,
with the correct subject (with "v3"). Please ignore those emails without
"v3".
I apologize for th
From: Robin Hsu
Add proprocessor defines (options) 'WITH_func',
where func = DUMP, DEFRAG, RESIZE, or SLOAD
Signed-off-by: Robin Hsu
---
fsck/main.c | 16
1 file changed, 16 insertions(+)
diff --git a/fsck/main.c b/fsck/main.c
index e70048b..b20498f 100644
--- a/f
From: Robin Hsu
Fixed automake for sload.f2fs compression support
./configure automatcally compile in liblzo2 (for sload to support -a LZO)
and liblz4 (for sload to support -a LZ4), whhen the libraries present.
Signed-off-by: Robin Hsu
---
configure.ac | 12
fsck/Makefile.am
From: Robin Hsu
Add F2FS compression support for sload
* Support file extension filter, either default-accept or default-deny
policy
* Support choice of compression algorithm, LZO (version 2) or LZ4
(default)
* Support custom log of cluster size
* Support minimum number of compressed blocks
From: Robin Hsu
* 3 patch set:
#1: added some #ifdef for easier support
#2: main code change
#3: automake changes
v2 fix (from v1): fixed a bug and a more elegant error handling flow.
v3 fix (from v2): ./configure (automake) automatically determine to
compile in lzo and/or lz4 compression
From: Robin Hsu
Add F2FS compression support for sload
* Support file extension filter, either default-accept or default-deny
policy
* Support choice of compression algorithm, LZO (version 2) or LZ4
(default)
* Support custom log of cluster size
* Support minimum number of compressed blocks
From: Robin Hsu
Fixed automake for sload.f2fs compression support
./configure automatcally compile in liblzo2 (for sload to support -a LZO)
and liblz4 (for sload to support -a LZ4), whhen the libraries present.
Signed-off-by: Robin Hsu
---
configure.ac | 12
fsck/Makefile.am
From: Robin Hsu
* 3 patch set:
#1: added some #ifdef for easier support
#2: main code change
#3: automake changes
v2 fix (from v1): fixed a bug and a more elegant error handling flow.
v3 fix (from v2): ./configure (automake) automatically determine to
compile in lzo and/or lz4 compression
From: Robin Hsu
Add proprocessor defines (options) 'WITH_func',
where func = DUMP, DEFRAG, RESIZE, or SLOAD
Signed-off-by: Robin Hsu
---
fsck/main.c | 16
1 file changed, 16 insertions(+)
diff --git a/fsck/main.c b/fsck/main.c
index e70048b..b20498f 100644
--- a/f
From: Robin Hsu
Add F2FS compression support for sload
* Support file extension filter, either default-accept or default-deny
policy
* Support choice of compression algorithm, LZO (version 2) or LZ4
(default)
* Support custom log of cluster size
* Support minimum number of compressed blocks
From: Robin Hsu
Fixed automake for sload.f2fs compression support
./configure now will by default depends on liblzo2 and liblz4.
To compile without liblzo2 (and thus not support liblzo2 compression),
run ./configure with '--without-lzo2' option.
To compile without liblz4 (and thus n
From: Robin Hsu
Add proprocessor defines (options) 'WITH_func',
where func = DUMP, DEFRAG, RESIZE, or SLOAD
Bug: 161486536
Test: n/a (trivial)
Signed-off-by: Robin Hsu
Change-Id: I813755548cc71dd8b026abd06893ed0fcf1d8b26
---
fsck/main.c | 16
1 file changed, 16
From: Robin Hsu
* 3 patch set:
#1: added some #ifdef for easier support
#2: main code change
#3: automake changes
v2 fix (from v1): fixed a bug and a more elegant error handling flow.
Robin Hsu (3):
f2fs-tools: Added #ifdef WITH_func
f2fs-tools:sload.f2fs compression support
f2fs
From: Robin Hsu
Fixed automake for sload.f2fs compression support
./configure now will by default depends on liblzo2 and liblz4.
To compile without liblzo2 (and thus not support liblzo2 compression),
run ./configure with '--without-lzo2' option.
To compile without liblz4 (and thus n
From: Robin Hsu
Add F2FS compression support for sload
* Support file extension filter, either default-accept or default-deny
policy
* Support choice of compression algorithm, LZO (version 2) or LZ4
(default)
* Support custom log of cluster size
* Support minimum number of compressed blocks
From: Robin Hsu
Add proprocessor defines (options) 'WITH_func',
where func = DUMP, DEFRAG, RESIZE, or SLOAD
Signed-off-by: Robin Hsu
---
fsck/main.c | 16
1 file changed, 16 insertions(+)
diff --git a/fsck/main.c b/fsck/main.c
index e70048b..b20498f 100644
--- a/f
From: Robin Hsu
* 3 patch set:
#1: added some #ifdef for easier support
#2: main code change
#3: automake changes
Robin Hsu (3):
f2fs-tools: Added #ifdef WITH_func
f2fs-tools:sload.f2fs compression support
f2fs-tools:sload.f2fs compress: Fixed automake
configure.ac
From: Robin Hsu
When error were found, we won't need to do any initialization but
just quit.
Signed-off-by: Robin Hsu
---
fsck/main.c | 24 +---
1 file changed, 13 insertions(+), 11 deletions(-)
diff --git a/fsck/main.c b/fsck/main.c
index 32559f1..e70048b 100644
When error were found, we won't need to do any initialization but
just quit.
Signed-off-by: Robin Hsu
---
fsck/main.c | 24 +---
1 file changed, 13 insertions(+), 11 deletions(-)
diff --git a/fsck/main.c b/fsck/main.c
index 32559f1..e70048b 100644
--- a/fsck/main.c
'ret' should not have been used here: otherwise, it would be wrongly used
as the error code and then be returned from main().
Signed-off-by: Robin Hsu
---
fsck/fsck.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/fsck/fsck.c b/fsck/fsck.c
index f97e9fb..66e4
f2fs-tools:fsck.f2fs: Fix always return 1 (error) after asking user to restore
lost files into ./lost_found
Robin Hsu (1):
f2fs-toos:fsck.f2fs Fix bad return value
fsck/fsck.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
--
2.29.0.rc2.309.g374f81d7ae-goog
22 matches
Mail list logo