[f2fs-dev] Call For Papers. Kindly impart in your University/Organization/College/Colleagues/Academia/Circle

2014-03-19 Thread callforpapers
INTERNATIONAL JOURNAL OF TRENDS IN ECONOMICS MANAGEMENT & TECHNOLOGY IJTEMT invites you to submit your research paper for publishing in Volume III, Issue II (MARCH 2014). CALL FOR PAPERS VOLUME III, ISSUE II www.ijtemt.org INDEXED IN: Google Scholar, .docstoc, slideshare, Scribd, J-Gate, Academia

[f2fs-dev] [SPAM] Re:Cleanroom Wipers, Lint Free Wipes, Sontara Replace Wipes

2014-03-19 Thread WIPEX NONWOVEN
4 Dear Sir, How are you doing?66 WIPEX Nonwoven Co.,Ltd is a professional factory of Cleanroom Wipers,Lint Free Wipes,Sontara Replace Wipes in China. We are professional producer who have wipers which can replace Kimberly Clark's Wypall ,Dupont's Sontara,Georgia Pacific's Brawny,Chicopee's

[f2fs-dev] [PATCH 4/5] f2fs: add missing documentation for dir_level

2014-03-19 Thread Jaegeuk Kim
This patch adds missing dir_level documentation. Signed-off-by: Jaegeuk Kim --- Documentation/ABI/testing/sysfs-fs-f2fs | 6 ++ 1 file changed, 6 insertions(+) diff --git a/Documentation/ABI/testing/sysfs-fs-f2fs b/Documentation/ABI/testing/sysfs-fs-f2fs index 4ac2c25..62dd725 100644 --- a

[f2fs-dev] [PATCH 1/5] f2fs: avoid to drop nat entries due to the negative nr_shrink

2014-03-19 Thread Jaegeuk Kim
The try_to_free_nats should not receive the negative nr_shrink. Otherwise, it can drop all the nat entries by the while loop. Signed-off-by: Jaegeuk Kim --- fs/f2fs/node.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c index 707fd20..04450a5 1

[f2fs-dev] [PATCH 3/5] f2fs: remove unnecessary threshold

2014-03-19 Thread Jaegeuk Kim
The NM_WOUT_THRESHOLD is now obsolete since f2fs starts to control on a basis of the memory footprint. Signed-off-by: Jaegeuk Kim --- fs/f2fs/debug.c | 8 fs/f2fs/node.c | 5 + fs/f2fs/node.h | 3 --- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/fs/f2fs/debug.c

[f2fs-dev] [PATCH 5/5] f2fs: change reclaim rate in percentage

2014-03-19 Thread Jaegeuk Kim
It is more reasonable to determine the reclaiming rate of prefree segments according to the volume size, which is set to 5% by default. For example, if the volume is 128GB, the prefree segments are reclaimed when the number reaches to 6.4GB. Signed-off-by: Jaegeuk Kim --- Documentation/filesyste

[f2fs-dev] [PATCH 2/5] f2fs: throttle the memory footprint with a sysfs entry

2014-03-19 Thread Jaegeuk Kim
This patch introduces ram_thresh, a sysfs entry, which controls the memory footprint used by the free nid list and the nat cache. Previously, the free nid list was controlled by MAX_FREE_NIDS, while the nat cache was managed by NM_WOUT_THRESHOLD. However, this approach cannot be applied dynamicall