Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756363AbbEVAlA (ORCPT ); Thu, 21 May 2015 20:41:00 -0400 Received: from mail.kernel.org ([198.145.29.136]:47760 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756273AbbEVAkz (ORCPT ); Thu, 21 May 2015 20:40:55 -0400 From: Jaegeuk Kim To: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net Cc: Jaegeuk Kim Subject: [PATCH 3/3] f2fs crypto: preallocate BIO_MAX_PAGES for writeback Date: Thu, 21 May 2015 17:40:25 -0700 Message-Id: <1432255225-76792-3-git-send-email-jaegeuk@kernel.org> X-Mailer: git-send-email 2.1.1 In-Reply-To: <1432255225-76792-1-git-send-email-jaegeuk@kernel.org> References: <1432255225-76792-1-git-send-email-jaegeuk@kernel.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 903 Lines: 29 This patch changes the number of preallocated pages to BIO_MAX_PAGES to prepare writeback encryption. Signed-off-by: Jaegeuk Kim --- fs/f2fs/crypto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/f2fs/crypto.c b/fs/f2fs/crypto.c index 2ceee68..cfe5a04 100644 --- a/fs/f2fs/crypto.c +++ b/fs/f2fs/crypto.c @@ -48,7 +48,7 @@ /* Encryption added and removed here! (L: */ -static unsigned int num_prealloc_crypto_pages = 32; +static unsigned int num_prealloc_crypto_pages = BIO_MAX_PAGES; static unsigned int num_prealloc_crypto_ctxs = 128; module_param(num_prealloc_crypto_pages, uint, 0444); -- 2.1.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/