On Thu 21-12-23 16:56:59, Yu Kuai wrote:
> From: Yu Kuai <yuku...@huawei.com>
> 
> On the one hand covert to use folio while reading bdev inode, on the
> other hand prevent to access bd_inode directly.
> 
> Signed-off-by: Yu Kuai <yuku...@huawei.com>
...
> +             for (p = folio_address(folio); p < max; p++)
>                       if (*p != -1UL) {
> -                             lock_page(page);
> -                             memset(page_address(page), 0xff, PAGE_SIZE);
> -                             set_page_dirty(page);
> -                             unlock_page(page);
> -                             balance_dirty_pages_ratelimited(mapping);
> +                             folio_lock(folio);
> +                             memset(folio_address(folio), 0xff,
> +                                    folio_size(folio));
> +                             folio_mark_dirty(folio);
> +                             folio_unlock(folio);
> +                             bdev_balance_dirty_pages_ratelimited(bdev);

Rather then creating this bdev_balance_dirty_pages_ratelimited() just for
MTD perhaps we can have here (and in other functions):

                                ...
                                mapping = folio_mapping(folio);
                                folio_unlock(folio);
                                if (mapping)
                                        
balance_dirty_pages_ratelimited(mapping);

What do you think? Because when we are working with the folios it is rather
natural to use their mapping for dirty balancing?

                                                                Honza
-- 
Jan Kara <j...@suse.com>
SUSE Labs, CR

Reply via email to