Will update the first BUG_ON by using SHASH_DESC_ON_STACK.

2016-03-02 10:21 GMT-08:00 Jaegeuk Kim <jaeg...@kernel.org>:
> Hi Keith,
>
>> +static inline __u32 f2fs_crc32(struct f2fs_sb_info *sbi, const void 
>> *address,
>> +                        unsigned int length)
>> +{
>> +     struct {
>> +             struct shash_desc shash;
>> +             char ctx[4];
>> +     } desc;
>> +     int err;
>> +
>> +     BUG_ON(crypto_shash_descsize(sbi->s_chksum_driver) != 
>> sizeof(desc.ctx));
>
> I can't accept this and the below BUG_ON, since this hits during the 
> checkpoint
> procedure which is very critical for entire filesystem.
> How about calling back the original method for the error cases?
>
> Thanks,
>
>> +
>> +     desc.shash.tfm = sbi->s_chksum_driver;
>> +     desc.shash.flags = 0;
>> +     *(u32 *)desc.ctx = F2FS_SUPER_MAGIC;
>> +
>> +     err = crypto_shash_update(&desc.shash, address, length);
>> +     BUG_ON(err);
>> +
>> +     return *(__u32 *)desc.ctx;
>> +}
>> +
>> +static inline bool f2fs_crc_valid(struct f2fs_sb_info *sbi, __u32 blk_crc,
>> +                               void *buf, size_t buf_size)
>> +{
>> +     return f2fs_crc32(sbi, buf, buf_size) == blk_crc;
>> +}
>> +
>>  static inline struct f2fs_inode_info *F2FS_I(struct inode *inode)
>>  {
>>       return container_of(inode, struct f2fs_inode_info, vfs_inode);
>> diff --git a/fs/f2fs/super.c b/fs/f2fs/super.c
>> index 6134832..9630865 100644
>> --- a/fs/f2fs/super.c
>> +++ b/fs/f2fs/super.c
>> @@ -574,6 +574,8 @@ static void f2fs_put_super(struct super_block *sb)
>>       wait_for_completion(&sbi->s_kobj_unregister);
>>
>>       sb->s_fs_info = NULL;
>> +     if (sbi->s_chksum_driver)
>> +             crypto_free_shash(sbi->s_chksum_driver);
>>       kfree(sbi->raw_super);
>>       kfree(sbi);
>>  }
>> @@ -1254,6 +1256,15 @@ try_onemore:
>>       if (!sbi)
>>               return -ENOMEM;
>>
>> +     /* Load the checksum driver */
>> +     sbi->s_chksum_driver = crypto_alloc_shash("crc32", 0, 0);
>> +     if (IS_ERR(sbi->s_chksum_driver)) {
>> +             f2fs_msg(sb, KERN_ERR, "Cannot load crc32 driver.");
>> +             err = PTR_ERR(sbi->s_chksum_driver);
>> +             sbi->s_chksum_driver = NULL;
>> +             goto free_sbi;
>> +     }
>> +
>>       /* set a block size */
>>       if (unlikely(!sb_set_blocksize(sb, F2FS_BLKSIZE))) {
>>               f2fs_msg(sb, KERN_ERR, "unable to set blocksize");
>> @@ -1506,6 +1517,8 @@ free_options:
>>  free_sb_buf:
>>       kfree(raw_super);
>>  free_sbi:
>> +     if (sbi->s_chksum_driver)
>> +             crypto_free_shash(sbi->s_chksum_driver);
>>       kfree(sbi);
>>
>>       /* give only one another chance */
>> --
>> 2.5.1

------------------------------------------------------------------------------
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=272487151&iu=/4140
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel

Reply via email to