Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1205369
| From | Jaegeuk Kim <jaegeuk@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] f2fs: do not assing a new segment for dio under space shortage |
| Date | 2015-08-11 20:40 +0200 |
| Message-ID | <pWmCT-519-33@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
If there is not enough free segment, we should not assign a new segment explicitly. Otherwise, we can run out of free segment. Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org> --- fs/f2fs/segment.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fs/f2fs/segment.c b/fs/f2fs/segment.c index 7d53cb4..bf1605d 100644 --- a/fs/f2fs/segment.c +++ b/fs/f2fs/segment.c @@ -1225,7 +1225,8 @@ void allocate_data_block(struct f2fs_sb_info *sbi, struct page *page, mutex_lock(&sit_i->sentry_lock); /* direct_io'ed data is aligned to the segment for better performance */ - if (direct_io && curseg->next_blkoff) + if (direct_io && curseg->next_blkoff && + !has_not_enough_free_secs(sbi, 0)) __allocate_new_segments(sbi, type); *new_blkaddr = NEXT_FREE_BLKADDR(sbi, curseg); -- 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/
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] f2fs: do not assing a new segment for dio under space shortage Jaegeuk Kim <jaegeuk@kernel.org> - 2015-08-11 20:40 +0200
csiph-web