Re: [f2fs-dev] [PATCH 1/2] f2fs: support aligned pinned file

2019-11-04 Thread Chao Yu
On 2019/10/31 23:29, Jaegeuk Kim wrote:
> On 10/31, Chao Yu wrote:
>> On 2019/10/31 0:09, Jaegeuk Kim wrote:
>>> On 10/26, Chao Yu wrote:
 On 2019/10/26 2:18, Jaegeuk Kim wrote:
> On 10/24, Chao Yu wrote:
>> Hi Jaegeuk,
>>
>> On 2019/10/23 1:16, Jaegeuk Kim wrote:
>>> This patch supports 2MB-aligned pinned file, which can guarantee no GC 
>>> at all
>>> by allocating fully valid 2MB segment.
>>>
>>> Signed-off-by: Jaegeuk Kim 
>>> ---
>>>  fs/f2fs/f2fs.h |  4 +++-
>>>  fs/f2fs/file.c | 39 ++-
>>>  fs/f2fs/recovery.c |  2 +-
>>>  fs/f2fs/segment.c  | 21 -
>>>  fs/f2fs/segment.h  |  2 ++
>>>  fs/f2fs/super.c|  1 +
>>>  fs/f2fs/sysfs.c|  2 ++
>>>  7 files changed, 63 insertions(+), 8 deletions(-)
>>>
>>> diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
>>> index ca342f4c7db1..c681f51e351b 100644
>>> --- a/fs/f2fs/f2fs.h
>>> +++ b/fs/f2fs/f2fs.h
>>> @@ -890,6 +890,7 @@ enum {
>>> CURSEG_WARM_NODE,   /* direct node blocks of normal files */
>>> CURSEG_COLD_NODE,   /* indirect node blocks */
>>> NO_CHECK_TYPE,
>>> +   CURSEG_COLD_DATA_PINNED,/* cold data for pinned file */
>>>  };
>>>  
>>>  struct flush_cmd {
>>> @@ -1301,6 +1302,7 @@ struct f2fs_sb_info {
>>>  
>>> /* threshold for gc trials on pinned files */
>>> u64 gc_pin_file_threshold;
>>> +   struct rw_semaphore pin_sem;
>>>  
>>> /* maximum # of trials to find a victim segment for SSR and GC 
>>> */
>>> unsigned int max_victim_search;
>>> @@ -3116,7 +3118,7 @@ void f2fs_release_discard_addrs(struct 
>>> f2fs_sb_info *sbi);
>>>  int f2fs_npages_for_summary_flush(struct f2fs_sb_info *sbi, bool 
>>> for_ra);
>>>  void allocate_segment_for_resize(struct f2fs_sb_info *sbi, int type,
>>> unsigned int start, unsigned 
>>> int end);
>>> -void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi);
>>> +void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi, int type);
>>>  int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range);
>>>  bool f2fs_exist_trim_candidates(struct f2fs_sb_info *sbi,
>>> struct cp_control *cpc);
>>> diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
>>> index 29bc0a542759..f6c038e8a6a7 100644
>>> --- a/fs/f2fs/file.c
>>> +++ b/fs/f2fs/file.c
>>> @@ -1545,12 +1545,41 @@ static int expand_inode_data(struct inode 
>>> *inode, loff_t offset,
>>> if (off_end)
>>> map.m_len++;
>>>  
>>> -   if (f2fs_is_pinned_file(inode))
>>> -   map.m_seg_type = CURSEG_COLD_DATA;
>>> +   if (!map.m_len)
>>> +   return 0;
>>> +
>>> +   if (f2fs_is_pinned_file(inode)) {
>>> +   block_t len = (map.m_len >> sbi->log_blocks_per_seg) <<
>>> +   sbi->log_blocks_per_seg;
>>> +   block_t done = 0;
>>> +
>>> +   if (map.m_len % sbi->blocks_per_seg)
>>> +   len += sbi->blocks_per_seg;
>>>  
>>> -   err = f2fs_map_blocks(inode, , 1, 
>>> (f2fs_is_pinned_file(inode) ?
>>> -   F2FS_GET_BLOCK_PRE_DIO :
>>> -   
>>> F2FS_GET_BLOCK_PRE_AIO));
>>> +   map.m_len = sbi->blocks_per_seg;
>>> +next_alloc:
>>> +   mutex_lock(>gc_mutex);
>>> +   err = f2fs_gc(sbi, true, false, NULL_SEGNO);
>>> +   if (err && err != -ENODATA && err != -EAGAIN)
>>> +   goto out_err;
>>
>> To grab enough free space?
>>
>> Shouldn't we call
>>
>>  if (has_not_enough_free_secs(sbi, 0, 0)) {
>>  mutex_lock(>gc_mutex);
>>  f2fs_gc(sbi, false, false, NULL_SEGNO);
>>  }
>
> The above calls gc all the time. Do we need this?

 Hmmm... my concern is why we need to run foreground GC even if there is 
 enough
 free space..
>>>
>>> In order to get the free segment easily?
>>
>> However, I doubt arbitrary foreground GC with greedy algorithm will ruin
>> hot/cold data separation, actually, for sufficient free segment case, it's
>> unnecessary to call FGGC.
> 
> Two things here; 1) I do worry much about when hitting boundary on
> has_not_enough_free_secs() which calculates # of free segments based on # of
> dirty pages. In this case, we just jump to allocate another free segment so
> I think it increases the possiblity of no free segment panic. 2) Even if we

Yup, I guess for other places, if there is thousand of threads allocating space
concurrently, we may have small 

Re: [f2fs-dev] [PATCH 1/2] f2fs: support aligned pinned file

2019-10-31 Thread Jaegeuk Kim
On 10/31, Chao Yu wrote:
> On 2019/10/31 0:09, Jaegeuk Kim wrote:
> > On 10/26, Chao Yu wrote:
> >> On 2019/10/26 2:18, Jaegeuk Kim wrote:
> >>> On 10/24, Chao Yu wrote:
>  Hi Jaegeuk,
> 
>  On 2019/10/23 1:16, Jaegeuk Kim wrote:
> > This patch supports 2MB-aligned pinned file, which can guarantee no GC 
> > at all
> > by allocating fully valid 2MB segment.
> >
> > Signed-off-by: Jaegeuk Kim 
> > ---
> >  fs/f2fs/f2fs.h |  4 +++-
> >  fs/f2fs/file.c | 39 ++-
> >  fs/f2fs/recovery.c |  2 +-
> >  fs/f2fs/segment.c  | 21 -
> >  fs/f2fs/segment.h  |  2 ++
> >  fs/f2fs/super.c|  1 +
> >  fs/f2fs/sysfs.c|  2 ++
> >  7 files changed, 63 insertions(+), 8 deletions(-)
> >
> > diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
> > index ca342f4c7db1..c681f51e351b 100644
> > --- a/fs/f2fs/f2fs.h
> > +++ b/fs/f2fs/f2fs.h
> > @@ -890,6 +890,7 @@ enum {
> > CURSEG_WARM_NODE,   /* direct node blocks of normal files */
> > CURSEG_COLD_NODE,   /* indirect node blocks */
> > NO_CHECK_TYPE,
> > +   CURSEG_COLD_DATA_PINNED,/* cold data for pinned file */
> >  };
> >  
> >  struct flush_cmd {
> > @@ -1301,6 +1302,7 @@ struct f2fs_sb_info {
> >  
> > /* threshold for gc trials on pinned files */
> > u64 gc_pin_file_threshold;
> > +   struct rw_semaphore pin_sem;
> >  
> > /* maximum # of trials to find a victim segment for SSR and GC 
> > */
> > unsigned int max_victim_search;
> > @@ -3116,7 +3118,7 @@ void f2fs_release_discard_addrs(struct 
> > f2fs_sb_info *sbi);
> >  int f2fs_npages_for_summary_flush(struct f2fs_sb_info *sbi, bool 
> > for_ra);
> >  void allocate_segment_for_resize(struct f2fs_sb_info *sbi, int type,
> > unsigned int start, unsigned 
> > int end);
> > -void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi);
> > +void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi, int type);
> >  int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range);
> >  bool f2fs_exist_trim_candidates(struct f2fs_sb_info *sbi,
> > struct cp_control *cpc);
> > diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
> > index 29bc0a542759..f6c038e8a6a7 100644
> > --- a/fs/f2fs/file.c
> > +++ b/fs/f2fs/file.c
> > @@ -1545,12 +1545,41 @@ static int expand_inode_data(struct inode 
> > *inode, loff_t offset,
> > if (off_end)
> > map.m_len++;
> >  
> > -   if (f2fs_is_pinned_file(inode))
> > -   map.m_seg_type = CURSEG_COLD_DATA;
> > +   if (!map.m_len)
> > +   return 0;
> > +
> > +   if (f2fs_is_pinned_file(inode)) {
> > +   block_t len = (map.m_len >> sbi->log_blocks_per_seg) <<
> > +   sbi->log_blocks_per_seg;
> > +   block_t done = 0;
> > +
> > +   if (map.m_len % sbi->blocks_per_seg)
> > +   len += sbi->blocks_per_seg;
> >  
> > -   err = f2fs_map_blocks(inode, , 1, 
> > (f2fs_is_pinned_file(inode) ?
> > -   F2FS_GET_BLOCK_PRE_DIO :
> > -   
> > F2FS_GET_BLOCK_PRE_AIO));
> > +   map.m_len = sbi->blocks_per_seg;
> > +next_alloc:
> > +   mutex_lock(>gc_mutex);
> > +   err = f2fs_gc(sbi, true, false, NULL_SEGNO);
> > +   if (err && err != -ENODATA && err != -EAGAIN)
> > +   goto out_err;
> 
>  To grab enough free space?
> 
>  Shouldn't we call
> 
>   if (has_not_enough_free_secs(sbi, 0, 0)) {
>   mutex_lock(>gc_mutex);
>   f2fs_gc(sbi, false, false, NULL_SEGNO);
>   }
> >>>
> >>> The above calls gc all the time. Do we need this?
> >>
> >> Hmmm... my concern is why we need to run foreground GC even if there is 
> >> enough
> >> free space..
> > 
> > In order to get the free segment easily?
> 
> However, I doubt arbitrary foreground GC with greedy algorithm will ruin
> hot/cold data separation, actually, for sufficient free segment case, it's
> unnecessary to call FGGC.

Two things here; 1) I do worry much about when hitting boundary on
has_not_enough_free_secs() which calculates # of free segments based on # of
dirty pages. In this case, we just jump to allocate another free segment so
I think it increases the possiblity of no free segment panic. 2) Even if we
do call FGGC a lot, I don't think it will *ruin* the hot/cold data separation
a lot. Putting hot/warm blocks together into cold log will make another hot
segment which was 

Re: [f2fs-dev] [PATCH 1/2] f2fs: support aligned pinned file

2019-10-30 Thread Chao Yu
On 2019/10/31 0:09, Jaegeuk Kim wrote:
> On 10/26, Chao Yu wrote:
>> On 2019/10/26 2:18, Jaegeuk Kim wrote:
>>> On 10/24, Chao Yu wrote:
 Hi Jaegeuk,

 On 2019/10/23 1:16, Jaegeuk Kim wrote:
> This patch supports 2MB-aligned pinned file, which can guarantee no GC at 
> all
> by allocating fully valid 2MB segment.
>
> Signed-off-by: Jaegeuk Kim 
> ---
>  fs/f2fs/f2fs.h |  4 +++-
>  fs/f2fs/file.c | 39 ++-
>  fs/f2fs/recovery.c |  2 +-
>  fs/f2fs/segment.c  | 21 -
>  fs/f2fs/segment.h  |  2 ++
>  fs/f2fs/super.c|  1 +
>  fs/f2fs/sysfs.c|  2 ++
>  7 files changed, 63 insertions(+), 8 deletions(-)
>
> diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
> index ca342f4c7db1..c681f51e351b 100644
> --- a/fs/f2fs/f2fs.h
> +++ b/fs/f2fs/f2fs.h
> @@ -890,6 +890,7 @@ enum {
>   CURSEG_WARM_NODE,   /* direct node blocks of normal files */
>   CURSEG_COLD_NODE,   /* indirect node blocks */
>   NO_CHECK_TYPE,
> + CURSEG_COLD_DATA_PINNED,/* cold data for pinned file */
>  };
>  
>  struct flush_cmd {
> @@ -1301,6 +1302,7 @@ struct f2fs_sb_info {
>  
>   /* threshold for gc trials on pinned files */
>   u64 gc_pin_file_threshold;
> + struct rw_semaphore pin_sem;
>  
>   /* maximum # of trials to find a victim segment for SSR and GC */
>   unsigned int max_victim_search;
> @@ -3116,7 +3118,7 @@ void f2fs_release_discard_addrs(struct f2fs_sb_info 
> *sbi);
>  int f2fs_npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra);
>  void allocate_segment_for_resize(struct f2fs_sb_info *sbi, int type,
>   unsigned int start, unsigned int end);
> -void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi);
> +void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi, int type);
>  int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range);
>  bool f2fs_exist_trim_candidates(struct f2fs_sb_info *sbi,
>   struct cp_control *cpc);
> diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
> index 29bc0a542759..f6c038e8a6a7 100644
> --- a/fs/f2fs/file.c
> +++ b/fs/f2fs/file.c
> @@ -1545,12 +1545,41 @@ static int expand_inode_data(struct inode *inode, 
> loff_t offset,
>   if (off_end)
>   map.m_len++;
>  
> - if (f2fs_is_pinned_file(inode))
> - map.m_seg_type = CURSEG_COLD_DATA;
> + if (!map.m_len)
> + return 0;
> +
> + if (f2fs_is_pinned_file(inode)) {
> + block_t len = (map.m_len >> sbi->log_blocks_per_seg) <<
> + sbi->log_blocks_per_seg;
> + block_t done = 0;
> +
> + if (map.m_len % sbi->blocks_per_seg)
> + len += sbi->blocks_per_seg;
>  
> - err = f2fs_map_blocks(inode, , 1, (f2fs_is_pinned_file(inode) ?
> - F2FS_GET_BLOCK_PRE_DIO :
> - F2FS_GET_BLOCK_PRE_AIO));
> + map.m_len = sbi->blocks_per_seg;
> +next_alloc:
> + mutex_lock(>gc_mutex);
> + err = f2fs_gc(sbi, true, false, NULL_SEGNO);
> + if (err && err != -ENODATA && err != -EAGAIN)
> + goto out_err;

 To grab enough free space?

 Shouldn't we call

if (has_not_enough_free_secs(sbi, 0, 0)) {
mutex_lock(>gc_mutex);
f2fs_gc(sbi, false, false, NULL_SEGNO);
}
>>>
>>> The above calls gc all the time. Do we need this?
>>
>> Hmmm... my concern is why we need to run foreground GC even if there is 
>> enough
>> free space..
> 
> In order to get the free segment easily?

However, I doubt arbitrary foreground GC with greedy algorithm will ruin
hot/cold data separation, actually, for sufficient free segment case, it's
unnecessary to call FGGC.

Thanks,

> 
>>
>>>

> +
> + down_write(>pin_sem);
> + map.m_seg_type = CURSEG_COLD_DATA_PINNED;
> + f2fs_allocate_new_segments(sbi, CURSEG_COLD_DATA);
> + err = f2fs_map_blocks(inode, , 1, F2FS_GET_BLOCK_PRE_DIO);
> + up_write(>pin_sem);
> +
> + done += map.m_len;
> + len -= map.m_len;
> + map.m_lblk += map.m_len;
> + if (!err && len)
> + goto next_alloc;
> +
> + map.m_len = done;
> + } else {
> + err = f2fs_map_blocks(inode, , 1, F2FS_GET_BLOCK_PRE_AIO);
> + }
> +out_err:
>   if (err) {
>   pgoff_t last_off;
>  
> diff --git a/fs/f2fs/recovery.c b/fs/f2fs/recovery.c
> index 783773e4560d..76477f71d4ee 100644
> --- a/fs/f2fs/recovery.c
> +++ b/fs/f2fs/recovery.c
> @@ -711,7 +711,7 @@ static int 

Re: [f2fs-dev] [PATCH 1/2] f2fs: support aligned pinned file

2019-10-30 Thread Jaegeuk Kim
On 10/26, Chao Yu wrote:
> On 2019/10/26 2:18, Jaegeuk Kim wrote:
> > On 10/24, Chao Yu wrote:
> >> Hi Jaegeuk,
> >>
> >> On 2019/10/23 1:16, Jaegeuk Kim wrote:
> >>> This patch supports 2MB-aligned pinned file, which can guarantee no GC at 
> >>> all
> >>> by allocating fully valid 2MB segment.
> >>>
> >>> Signed-off-by: Jaegeuk Kim 
> >>> ---
> >>>  fs/f2fs/f2fs.h |  4 +++-
> >>>  fs/f2fs/file.c | 39 ++-
> >>>  fs/f2fs/recovery.c |  2 +-
> >>>  fs/f2fs/segment.c  | 21 -
> >>>  fs/f2fs/segment.h  |  2 ++
> >>>  fs/f2fs/super.c|  1 +
> >>>  fs/f2fs/sysfs.c|  2 ++
> >>>  7 files changed, 63 insertions(+), 8 deletions(-)
> >>>
> >>> diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
> >>> index ca342f4c7db1..c681f51e351b 100644
> >>> --- a/fs/f2fs/f2fs.h
> >>> +++ b/fs/f2fs/f2fs.h
> >>> @@ -890,6 +890,7 @@ enum {
> >>>   CURSEG_WARM_NODE,   /* direct node blocks of normal files */
> >>>   CURSEG_COLD_NODE,   /* indirect node blocks */
> >>>   NO_CHECK_TYPE,
> >>> + CURSEG_COLD_DATA_PINNED,/* cold data for pinned file */
> >>>  };
> >>>  
> >>>  struct flush_cmd {
> >>> @@ -1301,6 +1302,7 @@ struct f2fs_sb_info {
> >>>  
> >>>   /* threshold for gc trials on pinned files */
> >>>   u64 gc_pin_file_threshold;
> >>> + struct rw_semaphore pin_sem;
> >>>  
> >>>   /* maximum # of trials to find a victim segment for SSR and GC */
> >>>   unsigned int max_victim_search;
> >>> @@ -3116,7 +3118,7 @@ void f2fs_release_discard_addrs(struct f2fs_sb_info 
> >>> *sbi);
> >>>  int f2fs_npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra);
> >>>  void allocate_segment_for_resize(struct f2fs_sb_info *sbi, int type,
> >>>   unsigned int start, unsigned int end);
> >>> -void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi);
> >>> +void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi, int type);
> >>>  int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range);
> >>>  bool f2fs_exist_trim_candidates(struct f2fs_sb_info *sbi,
> >>>   struct cp_control *cpc);
> >>> diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
> >>> index 29bc0a542759..f6c038e8a6a7 100644
> >>> --- a/fs/f2fs/file.c
> >>> +++ b/fs/f2fs/file.c
> >>> @@ -1545,12 +1545,41 @@ static int expand_inode_data(struct inode *inode, 
> >>> loff_t offset,
> >>>   if (off_end)
> >>>   map.m_len++;
> >>>  
> >>> - if (f2fs_is_pinned_file(inode))
> >>> - map.m_seg_type = CURSEG_COLD_DATA;
> >>> + if (!map.m_len)
> >>> + return 0;
> >>> +
> >>> + if (f2fs_is_pinned_file(inode)) {
> >>> + block_t len = (map.m_len >> sbi->log_blocks_per_seg) <<
> >>> + sbi->log_blocks_per_seg;
> >>> + block_t done = 0;
> >>> +
> >>> + if (map.m_len % sbi->blocks_per_seg)
> >>> + len += sbi->blocks_per_seg;
> >>>  
> >>> - err = f2fs_map_blocks(inode, , 1, (f2fs_is_pinned_file(inode) ?
> >>> - F2FS_GET_BLOCK_PRE_DIO :
> >>> - F2FS_GET_BLOCK_PRE_AIO));
> >>> + map.m_len = sbi->blocks_per_seg;
> >>> +next_alloc:
> >>> + mutex_lock(>gc_mutex);
> >>> + err = f2fs_gc(sbi, true, false, NULL_SEGNO);
> >>> + if (err && err != -ENODATA && err != -EAGAIN)
> >>> + goto out_err;
> >>
> >> To grab enough free space?
> >>
> >> Shouldn't we call
> >>
> >>if (has_not_enough_free_secs(sbi, 0, 0)) {
> >>mutex_lock(>gc_mutex);
> >>f2fs_gc(sbi, false, false, NULL_SEGNO);
> >>}
> > 
> > The above calls gc all the time. Do we need this?
> 
> Hmmm... my concern is why we need to run foreground GC even if there is enough
> free space..

In order to get the free segment easily?

> 
> > 
> >>
> >>> +
> >>> + down_write(>pin_sem);
> >>> + map.m_seg_type = CURSEG_COLD_DATA_PINNED;
> >>> + f2fs_allocate_new_segments(sbi, CURSEG_COLD_DATA);
> >>> + err = f2fs_map_blocks(inode, , 1, F2FS_GET_BLOCK_PRE_DIO);
> >>> + up_write(>pin_sem);
> >>> +
> >>> + done += map.m_len;
> >>> + len -= map.m_len;
> >>> + map.m_lblk += map.m_len;
> >>> + if (!err && len)
> >>> + goto next_alloc;
> >>> +
> >>> + map.m_len = done;
> >>> + } else {
> >>> + err = f2fs_map_blocks(inode, , 1, F2FS_GET_BLOCK_PRE_AIO);
> >>> + }
> >>> +out_err:
> >>>   if (err) {
> >>>   pgoff_t last_off;
> >>>  
> >>> diff --git a/fs/f2fs/recovery.c b/fs/f2fs/recovery.c
> >>> index 783773e4560d..76477f71d4ee 100644
> >>> --- a/fs/f2fs/recovery.c
> >>> +++ b/fs/f2fs/recovery.c
> >>> @@ -711,7 +711,7 @@ static int recover_data(struct f2fs_sb_info *sbi, 
> >>> struct list_head *inode_list,
> >>>   f2fs_put_page(page, 1);
> >>>   }
> >>>   if (!err)
> >>> - f2fs_allocate_new_segments(sbi);
> >>> + 

Re: [f2fs-dev] [PATCH 1/2] f2fs: support aligned pinned file

2019-10-25 Thread Chao Yu
On 2019/10/26 2:18, Jaegeuk Kim wrote:
> On 10/24, Chao Yu wrote:
>> Hi Jaegeuk,
>>
>> On 2019/10/23 1:16, Jaegeuk Kim wrote:
>>> This patch supports 2MB-aligned pinned file, which can guarantee no GC at 
>>> all
>>> by allocating fully valid 2MB segment.
>>>
>>> Signed-off-by: Jaegeuk Kim 
>>> ---
>>>  fs/f2fs/f2fs.h |  4 +++-
>>>  fs/f2fs/file.c | 39 ++-
>>>  fs/f2fs/recovery.c |  2 +-
>>>  fs/f2fs/segment.c  | 21 -
>>>  fs/f2fs/segment.h  |  2 ++
>>>  fs/f2fs/super.c|  1 +
>>>  fs/f2fs/sysfs.c|  2 ++
>>>  7 files changed, 63 insertions(+), 8 deletions(-)
>>>
>>> diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
>>> index ca342f4c7db1..c681f51e351b 100644
>>> --- a/fs/f2fs/f2fs.h
>>> +++ b/fs/f2fs/f2fs.h
>>> @@ -890,6 +890,7 @@ enum {
>>> CURSEG_WARM_NODE,   /* direct node blocks of normal files */
>>> CURSEG_COLD_NODE,   /* indirect node blocks */
>>> NO_CHECK_TYPE,
>>> +   CURSEG_COLD_DATA_PINNED,/* cold data for pinned file */
>>>  };
>>>  
>>>  struct flush_cmd {
>>> @@ -1301,6 +1302,7 @@ struct f2fs_sb_info {
>>>  
>>> /* threshold for gc trials on pinned files */
>>> u64 gc_pin_file_threshold;
>>> +   struct rw_semaphore pin_sem;
>>>  
>>> /* maximum # of trials to find a victim segment for SSR and GC */
>>> unsigned int max_victim_search;
>>> @@ -3116,7 +3118,7 @@ void f2fs_release_discard_addrs(struct f2fs_sb_info 
>>> *sbi);
>>>  int f2fs_npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra);
>>>  void allocate_segment_for_resize(struct f2fs_sb_info *sbi, int type,
>>> unsigned int start, unsigned int end);
>>> -void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi);
>>> +void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi, int type);
>>>  int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range);
>>>  bool f2fs_exist_trim_candidates(struct f2fs_sb_info *sbi,
>>> struct cp_control *cpc);
>>> diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
>>> index 29bc0a542759..f6c038e8a6a7 100644
>>> --- a/fs/f2fs/file.c
>>> +++ b/fs/f2fs/file.c
>>> @@ -1545,12 +1545,41 @@ static int expand_inode_data(struct inode *inode, 
>>> loff_t offset,
>>> if (off_end)
>>> map.m_len++;
>>>  
>>> -   if (f2fs_is_pinned_file(inode))
>>> -   map.m_seg_type = CURSEG_COLD_DATA;
>>> +   if (!map.m_len)
>>> +   return 0;
>>> +
>>> +   if (f2fs_is_pinned_file(inode)) {
>>> +   block_t len = (map.m_len >> sbi->log_blocks_per_seg) <<
>>> +   sbi->log_blocks_per_seg;
>>> +   block_t done = 0;
>>> +
>>> +   if (map.m_len % sbi->blocks_per_seg)
>>> +   len += sbi->blocks_per_seg;
>>>  
>>> -   err = f2fs_map_blocks(inode, , 1, (f2fs_is_pinned_file(inode) ?
>>> -   F2FS_GET_BLOCK_PRE_DIO :
>>> -   F2FS_GET_BLOCK_PRE_AIO));
>>> +   map.m_len = sbi->blocks_per_seg;
>>> +next_alloc:
>>> +   mutex_lock(>gc_mutex);
>>> +   err = f2fs_gc(sbi, true, false, NULL_SEGNO);
>>> +   if (err && err != -ENODATA && err != -EAGAIN)
>>> +   goto out_err;
>>
>> To grab enough free space?
>>
>> Shouldn't we call
>>
>>  if (has_not_enough_free_secs(sbi, 0, 0)) {
>>  mutex_lock(>gc_mutex);
>>  f2fs_gc(sbi, false, false, NULL_SEGNO);
>>  }
> 
> The above calls gc all the time. Do we need this?

Hmmm... my concern is why we need to run foreground GC even if there is enough
free space..

> 
>>
>>> +
>>> +   down_write(>pin_sem);
>>> +   map.m_seg_type = CURSEG_COLD_DATA_PINNED;
>>> +   f2fs_allocate_new_segments(sbi, CURSEG_COLD_DATA);
>>> +   err = f2fs_map_blocks(inode, , 1, F2FS_GET_BLOCK_PRE_DIO);
>>> +   up_write(>pin_sem);
>>> +
>>> +   done += map.m_len;
>>> +   len -= map.m_len;
>>> +   map.m_lblk += map.m_len;
>>> +   if (!err && len)
>>> +   goto next_alloc;
>>> +
>>> +   map.m_len = done;
>>> +   } else {
>>> +   err = f2fs_map_blocks(inode, , 1, F2FS_GET_BLOCK_PRE_AIO);
>>> +   }
>>> +out_err:
>>> if (err) {
>>> pgoff_t last_off;
>>>  
>>> diff --git a/fs/f2fs/recovery.c b/fs/f2fs/recovery.c
>>> index 783773e4560d..76477f71d4ee 100644
>>> --- a/fs/f2fs/recovery.c
>>> +++ b/fs/f2fs/recovery.c
>>> @@ -711,7 +711,7 @@ static int recover_data(struct f2fs_sb_info *sbi, 
>>> struct list_head *inode_list,
>>> f2fs_put_page(page, 1);
>>> }
>>> if (!err)
>>> -   f2fs_allocate_new_segments(sbi);
>>> +   f2fs_allocate_new_segments(sbi, NO_CHECK_TYPE);
>>> return err;
>>>  }
>>>  
>>> diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
>>> index 25c750cd0272..253d72c2663c 100644
>>> --- a/fs/f2fs/segment.c
>>> +++ b/fs/f2fs/segment.c
>>> @@ 

Re: [f2fs-dev] [PATCH 1/2] f2fs: support aligned pinned file

2019-10-25 Thread Jaegeuk Kim
On 10/24, Chao Yu wrote:
> Hi Jaegeuk,
> 
> On 2019/10/23 1:16, Jaegeuk Kim wrote:
> > This patch supports 2MB-aligned pinned file, which can guarantee no GC at 
> > all
> > by allocating fully valid 2MB segment.
> > 
> > Signed-off-by: Jaegeuk Kim 
> > ---
> >  fs/f2fs/f2fs.h |  4 +++-
> >  fs/f2fs/file.c | 39 ++-
> >  fs/f2fs/recovery.c |  2 +-
> >  fs/f2fs/segment.c  | 21 -
> >  fs/f2fs/segment.h  |  2 ++
> >  fs/f2fs/super.c|  1 +
> >  fs/f2fs/sysfs.c|  2 ++
> >  7 files changed, 63 insertions(+), 8 deletions(-)
> > 
> > diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
> > index ca342f4c7db1..c681f51e351b 100644
> > --- a/fs/f2fs/f2fs.h
> > +++ b/fs/f2fs/f2fs.h
> > @@ -890,6 +890,7 @@ enum {
> > CURSEG_WARM_NODE,   /* direct node blocks of normal files */
> > CURSEG_COLD_NODE,   /* indirect node blocks */
> > NO_CHECK_TYPE,
> > +   CURSEG_COLD_DATA_PINNED,/* cold data for pinned file */
> >  };
> >  
> >  struct flush_cmd {
> > @@ -1301,6 +1302,7 @@ struct f2fs_sb_info {
> >  
> > /* threshold for gc trials on pinned files */
> > u64 gc_pin_file_threshold;
> > +   struct rw_semaphore pin_sem;
> >  
> > /* maximum # of trials to find a victim segment for SSR and GC */
> > unsigned int max_victim_search;
> > @@ -3116,7 +3118,7 @@ void f2fs_release_discard_addrs(struct f2fs_sb_info 
> > *sbi);
> >  int f2fs_npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra);
> >  void allocate_segment_for_resize(struct f2fs_sb_info *sbi, int type,
> > unsigned int start, unsigned int end);
> > -void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi);
> > +void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi, int type);
> >  int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range);
> >  bool f2fs_exist_trim_candidates(struct f2fs_sb_info *sbi,
> > struct cp_control *cpc);
> > diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
> > index 29bc0a542759..f6c038e8a6a7 100644
> > --- a/fs/f2fs/file.c
> > +++ b/fs/f2fs/file.c
> > @@ -1545,12 +1545,41 @@ static int expand_inode_data(struct inode *inode, 
> > loff_t offset,
> > if (off_end)
> > map.m_len++;
> >  
> > -   if (f2fs_is_pinned_file(inode))
> > -   map.m_seg_type = CURSEG_COLD_DATA;
> > +   if (!map.m_len)
> > +   return 0;
> > +
> > +   if (f2fs_is_pinned_file(inode)) {
> > +   block_t len = (map.m_len >> sbi->log_blocks_per_seg) <<
> > +   sbi->log_blocks_per_seg;
> > +   block_t done = 0;
> > +
> > +   if (map.m_len % sbi->blocks_per_seg)
> > +   len += sbi->blocks_per_seg;
> >  
> > -   err = f2fs_map_blocks(inode, , 1, (f2fs_is_pinned_file(inode) ?
> > -   F2FS_GET_BLOCK_PRE_DIO :
> > -   F2FS_GET_BLOCK_PRE_AIO));
> > +   map.m_len = sbi->blocks_per_seg;
> > +next_alloc:
> > +   mutex_lock(>gc_mutex);
> > +   err = f2fs_gc(sbi, true, false, NULL_SEGNO);
> > +   if (err && err != -ENODATA && err != -EAGAIN)
> > +   goto out_err;
> 
> To grab enough free space?
> 
> Shouldn't we call
> 
>   if (has_not_enough_free_secs(sbi, 0, 0)) {
>   mutex_lock(>gc_mutex);
>   f2fs_gc(sbi, false, false, NULL_SEGNO);
>   }

The above calls gc all the time. Do we need this?

> 
> > +
> > +   down_write(>pin_sem);
> > +   map.m_seg_type = CURSEG_COLD_DATA_PINNED;
> > +   f2fs_allocate_new_segments(sbi, CURSEG_COLD_DATA);
> > +   err = f2fs_map_blocks(inode, , 1, F2FS_GET_BLOCK_PRE_DIO);
> > +   up_write(>pin_sem);
> > +
> > +   done += map.m_len;
> > +   len -= map.m_len;
> > +   map.m_lblk += map.m_len;
> > +   if (!err && len)
> > +   goto next_alloc;
> > +
> > +   map.m_len = done;
> > +   } else {
> > +   err = f2fs_map_blocks(inode, , 1, F2FS_GET_BLOCK_PRE_AIO);
> > +   }
> > +out_err:
> > if (err) {
> > pgoff_t last_off;
> >  
> > diff --git a/fs/f2fs/recovery.c b/fs/f2fs/recovery.c
> > index 783773e4560d..76477f71d4ee 100644
> > --- a/fs/f2fs/recovery.c
> > +++ b/fs/f2fs/recovery.c
> > @@ -711,7 +711,7 @@ static int recover_data(struct f2fs_sb_info *sbi, 
> > struct list_head *inode_list,
> > f2fs_put_page(page, 1);
> > }
> > if (!err)
> > -   f2fs_allocate_new_segments(sbi);
> > +   f2fs_allocate_new_segments(sbi, NO_CHECK_TYPE);
> > return err;
> >  }
> >  
> > diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
> > index 25c750cd0272..253d72c2663c 100644
> > --- a/fs/f2fs/segment.c
> > +++ b/fs/f2fs/segment.c
> > @@ -2690,7 +2690,7 @@ void allocate_segment_for_resize(struct f2fs_sb_info 
> > *sbi, int type,
> > up_read(_I(sbi)->curseg_lock);
> >  }
> >  
> 

Re: [f2fs-dev] [PATCH 1/2] f2fs: support aligned pinned file

2019-10-24 Thread Chao Yu
Hi Jaegeuk,

On 2019/10/23 1:16, Jaegeuk Kim wrote:
> This patch supports 2MB-aligned pinned file, which can guarantee no GC at all
> by allocating fully valid 2MB segment.
> 
> Signed-off-by: Jaegeuk Kim 
> ---
>  fs/f2fs/f2fs.h |  4 +++-
>  fs/f2fs/file.c | 39 ++-
>  fs/f2fs/recovery.c |  2 +-
>  fs/f2fs/segment.c  | 21 -
>  fs/f2fs/segment.h  |  2 ++
>  fs/f2fs/super.c|  1 +
>  fs/f2fs/sysfs.c|  2 ++
>  7 files changed, 63 insertions(+), 8 deletions(-)
> 
> diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
> index ca342f4c7db1..c681f51e351b 100644
> --- a/fs/f2fs/f2fs.h
> +++ b/fs/f2fs/f2fs.h
> @@ -890,6 +890,7 @@ enum {
>   CURSEG_WARM_NODE,   /* direct node blocks of normal files */
>   CURSEG_COLD_NODE,   /* indirect node blocks */
>   NO_CHECK_TYPE,
> + CURSEG_COLD_DATA_PINNED,/* cold data for pinned file */
>  };
>  
>  struct flush_cmd {
> @@ -1301,6 +1302,7 @@ struct f2fs_sb_info {
>  
>   /* threshold for gc trials on pinned files */
>   u64 gc_pin_file_threshold;
> + struct rw_semaphore pin_sem;
>  
>   /* maximum # of trials to find a victim segment for SSR and GC */
>   unsigned int max_victim_search;
> @@ -3116,7 +3118,7 @@ void f2fs_release_discard_addrs(struct f2fs_sb_info 
> *sbi);
>  int f2fs_npages_for_summary_flush(struct f2fs_sb_info *sbi, bool for_ra);
>  void allocate_segment_for_resize(struct f2fs_sb_info *sbi, int type,
>   unsigned int start, unsigned int end);
> -void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi);
> +void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi, int type);
>  int f2fs_trim_fs(struct f2fs_sb_info *sbi, struct fstrim_range *range);
>  bool f2fs_exist_trim_candidates(struct f2fs_sb_info *sbi,
>   struct cp_control *cpc);
> diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c
> index 29bc0a542759..f6c038e8a6a7 100644
> --- a/fs/f2fs/file.c
> +++ b/fs/f2fs/file.c
> @@ -1545,12 +1545,41 @@ static int expand_inode_data(struct inode *inode, 
> loff_t offset,
>   if (off_end)
>   map.m_len++;
>  
> - if (f2fs_is_pinned_file(inode))
> - map.m_seg_type = CURSEG_COLD_DATA;
> + if (!map.m_len)
> + return 0;
> +
> + if (f2fs_is_pinned_file(inode)) {
> + block_t len = (map.m_len >> sbi->log_blocks_per_seg) <<
> + sbi->log_blocks_per_seg;
> + block_t done = 0;
> +
> + if (map.m_len % sbi->blocks_per_seg)
> + len += sbi->blocks_per_seg;
>  
> - err = f2fs_map_blocks(inode, , 1, (f2fs_is_pinned_file(inode) ?
> - F2FS_GET_BLOCK_PRE_DIO :
> - F2FS_GET_BLOCK_PRE_AIO));
> + map.m_len = sbi->blocks_per_seg;
> +next_alloc:
> + mutex_lock(>gc_mutex);
> + err = f2fs_gc(sbi, true, false, NULL_SEGNO);
> + if (err && err != -ENODATA && err != -EAGAIN)
> + goto out_err;

To grab enough free space?

Shouldn't we call

if (has_not_enough_free_secs(sbi, 0, 0)) {
mutex_lock(>gc_mutex);
f2fs_gc(sbi, false, false, NULL_SEGNO);
}

> +
> + down_write(>pin_sem);
> + map.m_seg_type = CURSEG_COLD_DATA_PINNED;
> + f2fs_allocate_new_segments(sbi, CURSEG_COLD_DATA);
> + err = f2fs_map_blocks(inode, , 1, F2FS_GET_BLOCK_PRE_DIO);
> + up_write(>pin_sem);
> +
> + done += map.m_len;
> + len -= map.m_len;
> + map.m_lblk += map.m_len;
> + if (!err && len)
> + goto next_alloc;
> +
> + map.m_len = done;
> + } else {
> + err = f2fs_map_blocks(inode, , 1, F2FS_GET_BLOCK_PRE_AIO);
> + }
> +out_err:
>   if (err) {
>   pgoff_t last_off;
>  
> diff --git a/fs/f2fs/recovery.c b/fs/f2fs/recovery.c
> index 783773e4560d..76477f71d4ee 100644
> --- a/fs/f2fs/recovery.c
> +++ b/fs/f2fs/recovery.c
> @@ -711,7 +711,7 @@ static int recover_data(struct f2fs_sb_info *sbi, struct 
> list_head *inode_list,
>   f2fs_put_page(page, 1);
>   }
>   if (!err)
> - f2fs_allocate_new_segments(sbi);
> + f2fs_allocate_new_segments(sbi, NO_CHECK_TYPE);
>   return err;
>  }
>  
> diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c
> index 25c750cd0272..253d72c2663c 100644
> --- a/fs/f2fs/segment.c
> +++ b/fs/f2fs/segment.c
> @@ -2690,7 +2690,7 @@ void allocate_segment_for_resize(struct f2fs_sb_info 
> *sbi, int type,
>   up_read(_I(sbi)->curseg_lock);
>  }
>  
> -void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi)
> +void f2fs_allocate_new_segments(struct f2fs_sb_info *sbi, int type)
>  {
>   struct curseg_info *curseg;
>   unsigned int old_segno;
> @@ -2699,6 +2699,9 @@