Re: [f2fs-dev] [PATCH] fscrypto: move ioctl processing more fully into common code

2016-10-18 Thread Richard Weinberger
Eric, On Mon, Oct 17, 2016 at 6:54 PM, Eric Biggers wrote: > Multiple bugs were recently fixed in the "set encryption policy" ioctl. > To make it clear that fscrypt_process_policy() and fscrypt_get_policy() > implement ioctls and therefore their implementations must take

Re: [f2fs-dev] [PATCH] fscrypto: move ioctl processing more fully into common code

2016-10-18 Thread Eric Biggers
On Tue, Oct 18, 2016 at 02:22:07PM +0200, Richard Weinberger wrote: > > Hmm, are you sure the change is worth it? > The patch basically moves a copy_from/to_user() from ext4/f2fs into fscrypto. > Hi Richard, In my opinion consolidating the copy_from/to_user() is worthwhile by itself. The

[f2fs-dev] [PATCH] f2fs: use BIO_MAX_PAGES for bio allocation

2016-10-18 Thread Jaegeuk Kim
We don't need to allocate bio partially in order to maximize sequential writes. Signed-off-by: Jaegeuk Kim --- fs/f2fs/checkpoint.c | 2 +- fs/f2fs/data.c | 4 +--- fs/f2fs/node.c | 3 +-- fs/f2fs/segment.c| 4 ++-- fs/f2fs/segment.h| 17

[f2fs-dev] [PATCH] f2fs: declare static function for __build_free_nids

2016-10-18 Thread Jaegeuk Kim
This patch avoids build warning. 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 fc8f274..69c42e2 100644 --- a/fs/f2fs/node.c +++ b/fs/f2fs/node.c @@ -1808,7 +1808,7 @@

[f2fs-dev] [GIT PULL] f2fs bug fix for 4.9-rc2

2016-10-18 Thread Jaegeuk Kim
Hi Linus, Could you please pull this bug fix patch? Thanks, The following changes since commit 4c1fad64eff481982349f5795b9c198c532b0f13: Merge tag 'for-f2fs-4.9' of git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs (2016-10-06 15:30:40 -0700) are available in the git repository

[f2fs-dev] FWD: la liberte sexuelle des femmes n’a pas de prix

2016-10-18 Thread Alfred J
Salut à tous ! Moi je fais pas les choses à moitié. Pour moi, il est essentiel d’aller vite et de faire en grand. Quand je me suis inscrit sur -leamante.com (enlever les tirest en recopiant le lien), je pensais pas cependant que ca irait aussi vite ! -leamante.com Eux, ils vont vraiment à

[f2fs-dev] [PATCH] mkfs.f2fs: fix the discarding size for block device

2016-10-18 Thread Jaegeuk Kim
This patch fixes wrong discarding size. Signed-off-by: Jaegeuk Kim --- mkfs/f2fs_format.c | 2 +- mkfs/f2fs_format_utils.c | 7 +++ mkfs/f2fs_format_utils.h | 2 +- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/mkfs/f2fs_format.c