Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1253100 > unrolled thread
| Started by | Valdis Kletnieks <Valdis.Kletnieks@vt.edu> |
|---|---|
| First post | 2015-10-21 20:10 +0200 |
| Last post | 2015-10-22 05:10 +0200 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
next-20151021 - compile error in fs/f2fs/checkpoint.c Valdis Kletnieks <Valdis.Kletnieks@vt.edu> - 2015-10-21 20:10 +0200
RE: next-20151021 - compile error in fs/f2fs/checkpoint.c Chao Yu <chao2.yu@samsung.com> - 2015-10-22 03:50 +0200
Re: next-20151021 - compile error in fs/f2fs/checkpoint.c Jaegeuk Kim <jaegeuk@kernel.org> - 2015-10-22 05:10 +0200
| From | Valdis Kletnieks <Valdis.Kletnieks@vt.edu> |
|---|---|
| Date | 2015-10-21 20:10 +0200 |
| Subject | next-20151021 - compile error in fs/f2fs/checkpoint.c |
| Message-ID | <qm5ZN-2ld-27@gated-at.bofh.it> |
[Multipart message — attachments visible in raw view] — view raw
Building next-20151021 dies with this error:
CC [M] fs/f2fs/checkpoint.o
fs/f2fs/checkpoint.c: In function 'get_valid_checkpoint':
fs/f2fs/checkpoint.c:707:3: error: too few arguments to function 'ra_meta_pages'
ra_meta_pages(sbi, cp_blk_no + 1, cp_blks - 1, META_CP);
^
fs/f2fs/checkpoint.c:143:5: note: declared here
int ra_meta_pages(struct f2fs_sb_info *sbi, block_t start, int nrpages,
^
scripts/Makefile.build:258: recipe for target 'fs/f2fs/checkpoint.o' failed
make[2]: *** [fs/f2fs/checkpoint.o] Error 1
Looks like this commit:
commit 26879fb101f28c554294eaf25ac7817a2825b180
Author: Chao Yu <chao2.yu@samsung.com>
Date: Mon Oct 12 17:05:59 2015 +0800
f2fs: support lower priority asynchronous readahead in ra_meta_pages
missed updating one call. Apparently this wasn't compile-tested before
being pushed upstream?
[toc] | [next] | [standalone]
| From | Chao Yu <chao2.yu@samsung.com> |
|---|---|
| Date | 2015-10-22 03:50 +0200 |
| Message-ID | <qmdaW-486-5@gated-at.bofh.it> |
| In reply to | #1253100 |
Hello,
> -----Original Message-----
> From: Valdis Kletnieks [mailto:Valdis.Kletnieks@vt.edu]
> Sent: Thursday, October 22, 2015 2:06 AM
> To: Chao Yu; Jaegeuk Kim; Changman Lee
> Cc: linux-f2fs-devel@lists.sourceforge.net; linux-kernel@vger.kernel.org
> Subject: next-20151021 - compile error in fs/f2fs/checkpoint.c
>
> Building next-20151021 dies with this error:
>
> CC [M] fs/f2fs/checkpoint.o
> fs/f2fs/checkpoint.c: In function 'get_valid_checkpoint':
> fs/f2fs/checkpoint.c:707:3: error: too few arguments to function 'ra_meta_pages'
> ra_meta_pages(sbi, cp_blk_no + 1, cp_blks - 1, META_CP);
Above invoking is added in commit ("f2fs: readahead cp payload pages
when mount") at ~9/12/2015, but sadly it's complete wrong due to my fault,
so it is removed in our dev-test branch by Jaegeuk at ~9/26/2015. I can't
remember the time when this commit is removed from dev branch which is for
-next branch. I have checked next-20151022, this commit is gone, I think
the last -next will not make any trouble to you. Could you check that?
> ^
> fs/f2fs/checkpoint.c:143:5: note: declared here
> int ra_meta_pages(struct f2fs_sb_info *sbi, block_t start, int nrpages,
> ^
> scripts/Makefile.build:258: recipe for target 'fs/f2fs/checkpoint.o' failed
> make[2]: *** [fs/f2fs/checkpoint.o] Error 1
>
> Looks like this commit:
>
> commit 26879fb101f28c554294eaf25ac7817a2825b180
> Author: Chao Yu <chao2.yu@samsung.com>
> Date: Mon Oct 12 17:05:59 2015 +0800
>
> f2fs: support lower priority asynchronous readahead in ra_meta_pages
>
> missed updating one call. Apparently this wasn't compile-tested before
> being pushed upstream?
When this commit was updated in Jaegeuk's tree, above invoking in
fs/f2fs/checkpoint.c:707 was gone.
Thanks,
--
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/
[toc] | [prev] | [next] | [standalone]
| From | Jaegeuk Kim <jaegeuk@kernel.org> |
|---|---|
| Date | 2015-10-22 05:10 +0200 |
| Message-ID | <qmeqm-6lm-15@gated-at.bofh.it> |
| In reply to | #1253412 |
On Thu, Oct 22, 2015 at 09:47:22AM +0800, Chao Yu wrote:
> Hello,
>
> > -----Original Message-----
> > From: Valdis Kletnieks [mailto:Valdis.Kletnieks@vt.edu]
> > Sent: Thursday, October 22, 2015 2:06 AM
> > To: Chao Yu; Jaegeuk Kim; Changman Lee
> > Cc: linux-f2fs-devel@lists.sourceforge.net; linux-kernel@vger.kernel.org
> > Subject: next-20151021 - compile error in fs/f2fs/checkpoint.c
> >
> > Building next-20151021 dies with this error:
> >
> > CC [M] fs/f2fs/checkpoint.o
> > fs/f2fs/checkpoint.c: In function 'get_valid_checkpoint':
> > fs/f2fs/checkpoint.c:707:3: error: too few arguments to function 'ra_meta_pages'
> > ra_meta_pages(sbi, cp_blk_no + 1, cp_blks - 1, META_CP);
>
> Above invoking is added in commit ("f2fs: readahead cp payload pages
> when mount") at ~9/12/2015, but sadly it's complete wrong due to my fault,
> so it is removed in our dev-test branch by Jaegeuk at ~9/26/2015. I can't
> remember the time when this commit is removed from dev branch which is for
> -next branch. I have checked next-20151022, this commit is gone, I think
> the last -next will not make any trouble to you. Could you check that?
At least, now f2fs for -next contains a fixed patch.
Thanks,
>
> > ^
> > fs/f2fs/checkpoint.c:143:5: note: declared here
> > int ra_meta_pages(struct f2fs_sb_info *sbi, block_t start, int nrpages,
> > ^
> > scripts/Makefile.build:258: recipe for target 'fs/f2fs/checkpoint.o' failed
> > make[2]: *** [fs/f2fs/checkpoint.o] Error 1
> >
> > Looks like this commit:
> >
> > commit 26879fb101f28c554294eaf25ac7817a2825b180
> > Author: Chao Yu <chao2.yu@samsung.com>
> > Date: Mon Oct 12 17:05:59 2015 +0800
> >
> > f2fs: support lower priority asynchronous readahead in ra_meta_pages
> >
> > missed updating one call. Apparently this wasn't compile-tested before
> > being pushed upstream?
>
> When this commit was updated in Jaegeuk's tree, above invoking in
> fs/f2fs/checkpoint.c:707 was gone.
>
> Thanks,
--
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/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web