lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <1218559034.6766.58.camel@mingming-laptop> Date: Tue, 12 Aug 2008 09:37:14 -0700 From: Mingming Cao <cmm@...ibm.com> To: tytso <tytso@....edu> Cc: linux-ext4@...r.kernel.org, "Aneesh Kumar K.V" <aneesh.kumar@...ux.vnet.ibm.com>, Andreas Dilger <adilger@....com>, Akira Fujita <a-fujita@...jp.nec.com> Subject: [PATCH 6/6 ]Ext4 journal credits reservation fixes for defrag defrag part change. This patch should be merged with ext4-online-defrag-alloc-contiguous-blks.patch Cc: Akira Fujita <a-fujita@...jp.nec.com> Cc: Takashi Sato <t-sato@...jp.nec.com> Signed-off-by: Mingming Cao <cmm@...ibm.com> Signed-off-by: "Theodore Ts'o" <tytso@....edu> --- Index: linux-2.6.27-rc1/fs/ext4/defrag.c =================================================================== --- linux-2.6.27-rc1.orig/fs/ext4/defrag.c 2008-08-11 17:15:49.000000000 -0700 +++ linux-2.6.27-rc1/fs/ext4/defrag.c 2008-08-11 19:46:59.000000000 -0700 @@ -186,9 +186,9 @@ ext4_defrag_alloc_blocks(handle_t *handl struct buffer_head *bh = NULL; int err, i, credits = 0; - credits = ext4_ext_calc_credits_for_insert(dest_inode, dest_path); - err = ext4_ext_journal_restart(handle, - credits + EXT4_TRANS_META_BLOCKS); + credits = ext4_ext_calc_credits_for_single_extent(dest_inode, + ar->len, dest_path); + err = ext4_ext_journal_restart(handle, credits); if (err) return err; -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists