Re: [f2fs-dev] [f2fs:dev-test 31/31] fs//f2fs/super.c:1264:9: error: 's_qf_names' undeclared

2017-08-08 Thread Chao Yu
Jaegeuk, I've check that, it's OK to me, thank you! ;)

thanks,

On 2017/8/8 10:49, Jaegeuk Kim wrote:
> I've uploaded a fixed one in dev-test.
> 
> Chao, could you check that?
> (I just added #ifdef.)
> 
> Thanks,
> 
> On 08/08, kbuild test robot wrote:
>> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git 
>> dev-test
>> head:   aced2c62005622672a7b96135389f45766f4ed1a
>> commit: aced2c62005622672a7b96135389f45766f4ed1a [31/31] f2fs: support 
>> journalled quota
>> config: i386-randconfig-x009-08071050 (attached as .config)
>> compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
>> reproduce:
>> git checkout aced2c62005622672a7b96135389f45766f4ed1a
>> # save the attached .config to linux build tree
>> make ARCH=i386 
>>
>> All errors (new ones prefixed by >>):
>>
>>fs//f2fs/super.c: In function 'parse_options':
>>fs//f2fs/super.c:302:6: warning: unused variable 'ret' [-Wunused-variable]
>>  int ret;
>>  ^~~
>>fs//f2fs/super.c: In function 'f2fs_remount':
 fs//f2fs/super.c:1263:7: error: 'i' undeclared (first use in this function)
>>  for (i = 0; i < MAXQUOTAS; i++)
>>   ^
>>fs//f2fs/super.c:1263:7: note: each undeclared identifier is reported 
>> only once for each function it appears in
 fs//f2fs/super.c:1264:9: error: 's_qf_names' undeclared (first use in this 
 function)
>>   kfree(s_qf_names[i]);
>> ^~
>>
>> vim +/s_qf_names +1264 fs//f2fs/super.c
>>
>>   1179   
>>   1180   /* recover superblocks we couldn't write due to 
>> previous RO mount */
>>   1181   if (!(*flags & MS_RDONLY) && is_sbi_flag_set(sbi, 
>> SBI_NEED_SB_WRITE)) {
>>   1182   err = f2fs_commit_super(sbi, false);
>>   1183   f2fs_msg(sb, KERN_INFO,
>>   1184   "Try to recover all the superblocks, 
>> ret: %d", err);
>>   1185   if (!err)
>>   1186   clear_sbi_flag(sbi, SBI_NEED_SB_WRITE);
>>   1187   }
>>   1188   
>>   1189   default_options(sbi);
>>   1190   
>>   1191   /* parse mount options */
>>   1192   err = parse_options(sb, data);
>>   1193   if (err)
>>   1194   goto restore_opts;
>>   1195   
>>   1196   /*
>>   1197* Previous and new state of filesystem is RO,
>>   1198* so skip checking GC and FLUSH_MERGE conditions.
>>   1199*/
>>   1200   if (f2fs_readonly(sb) && (*flags & MS_RDONLY))
>>   1201   goto skip;
>>   1202   
>>   1203   if (!f2fs_readonly(sb) && (*flags & MS_RDONLY)) {
>>   1204   err = dquot_suspend(sb, -1);
>>   1205   if (err < 0)
>>   1206   goto restore_opts;
>>   1207   } else {
>>   1208   /* dquot_resume needs RW */
>>   1209   sb->s_flags &= ~MS_RDONLY;
>>   1210   dquot_resume(sb, -1);
>>   1211   }
>>   1212   
>>   1213   /* disallow enable/disable extent_cache dynamically */
>>   1214   if (no_extent_cache == !!test_opt(sbi, EXTENT_CACHE)) {
>>   1215   err = -EINVAL;
>>   1216   f2fs_msg(sbi->sb, KERN_WARNING,
>>   1217   "switch extent_cache option is 
>> not allowed");
>>   1218   goto restore_opts;
>>   1219   }
>>   1220   
>>   1221   /*
>>   1222* We stop the GC thread if FS is mounted as RO
>>   1223* or if background_gc = off is passed in mount
>>   1224* option. Also sync the filesystem.
>>   1225*/
>>   1226   if ((*flags & MS_RDONLY) || !test_opt(sbi, BG_GC)) {
>>   1227   if (sbi->gc_thread) {
>>   1228   stop_gc_thread(sbi);
>>   1229   need_restart_gc = true;
>>   1230   }
>>   1231   } else if (!sbi->gc_thread) {
>>   1232   err = start_gc_thread(sbi);
>>   1233   if (err)
>>   1234   goto restore_opts;
>>   1235   need_stop_gc = true;
>>   1236   }
>>   1237   
>>   1238   if (*flags & MS_RDONLY) {
>>   1239   writeback_inodes_sb(sb, WB_REASON_SYNC);
>>   1240   sync_inodes_sb(sb);
>>   1241   
>>   1242   set_sbi_flag(sbi, SBI_IS_DIRTY);
>>   1243   set_sbi_flag(sbi, SBI_IS_CLOSE);
>>   1244   f2fs_sync_fs(sb, 1);
>>   1245   clear_sbi_flag(sbi, SBI_IS_CLOSE);
>>   1246   }
>>   1247   
>>   

Re: [f2fs-dev] [f2fs:dev-test 31/31] fs//f2fs/super.c:1264:9: error: 's_qf_names' undeclared

2017-08-07 Thread Chao Yu
Sorry, have fixed and resent.

Thanks,

On 2017/8/8 10:40, kbuild test robot wrote:
> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git 
> dev-test
> head:   aced2c62005622672a7b96135389f45766f4ed1a
> commit: aced2c62005622672a7b96135389f45766f4ed1a [31/31] f2fs: support 
> journalled quota
> config: i386-randconfig-x009-08071050 (attached as .config)
> compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
> reproduce:
> git checkout aced2c62005622672a7b96135389f45766f4ed1a
> # save the attached .config to linux build tree
> make ARCH=i386 
> 
> All errors (new ones prefixed by >>):
> 
>fs//f2fs/super.c: In function 'parse_options':
>fs//f2fs/super.c:302:6: warning: unused variable 'ret' [-Wunused-variable]
>  int ret;
>  ^~~
>fs//f2fs/super.c: In function 'f2fs_remount':
>>> fs//f2fs/super.c:1263:7: error: 'i' undeclared (first use in this function)
>  for (i = 0; i < MAXQUOTAS; i++)
>   ^
>fs//f2fs/super.c:1263:7: note: each undeclared identifier is reported only 
> once for each function it appears in
>>> fs//f2fs/super.c:1264:9: error: 's_qf_names' undeclared (first use in this 
>>> function)
>   kfree(s_qf_names[i]);
> ^~
> 
> vim +/s_qf_names +1264 fs//f2fs/super.c
> 
>   1179
>   1180/* recover superblocks we couldn't write due to 
> previous RO mount */
>   1181if (!(*flags & MS_RDONLY) && is_sbi_flag_set(sbi, 
> SBI_NEED_SB_WRITE)) {
>   1182err = f2fs_commit_super(sbi, false);
>   1183f2fs_msg(sb, KERN_INFO,
>   1184"Try to recover all the superblocks, 
> ret: %d", err);
>   1185if (!err)
>   1186clear_sbi_flag(sbi, SBI_NEED_SB_WRITE);
>   1187}
>   1188
>   1189default_options(sbi);
>   1190
>   1191/* parse mount options */
>   1192err = parse_options(sb, data);
>   1193if (err)
>   1194goto restore_opts;
>   1195
>   1196/*
>   1197 * Previous and new state of filesystem is RO,
>   1198 * so skip checking GC and FLUSH_MERGE conditions.
>   1199 */
>   1200if (f2fs_readonly(sb) && (*flags & MS_RDONLY))
>   1201goto skip;
>   1202
>   1203if (!f2fs_readonly(sb) && (*flags & MS_RDONLY)) {
>   1204err = dquot_suspend(sb, -1);
>   1205if (err < 0)
>   1206goto restore_opts;
>   1207} else {
>   1208/* dquot_resume needs RW */
>   1209sb->s_flags &= ~MS_RDONLY;
>   1210dquot_resume(sb, -1);
>   1211}
>   1212
>   1213/* disallow enable/disable extent_cache dynamically */
>   1214if (no_extent_cache == !!test_opt(sbi, EXTENT_CACHE)) {
>   1215err = -EINVAL;
>   1216f2fs_msg(sbi->sb, KERN_WARNING,
>   1217"switch extent_cache option is 
> not allowed");
>   1218goto restore_opts;
>   1219}
>   1220
>   1221/*
>   1222 * We stop the GC thread if FS is mounted as RO
>   1223 * or if background_gc = off is passed in mount
>   1224 * option. Also sync the filesystem.
>   1225 */
>   1226if ((*flags & MS_RDONLY) || !test_opt(sbi, BG_GC)) {
>   1227if (sbi->gc_thread) {
>   1228stop_gc_thread(sbi);
>   1229need_restart_gc = true;
>   1230}
>   1231} else if (!sbi->gc_thread) {
>   1232err = start_gc_thread(sbi);
>   1233if (err)
>   1234goto restore_opts;
>   1235need_stop_gc = true;
>   1236}
>   1237
>   1238if (*flags & MS_RDONLY) {
>   1239writeback_inodes_sb(sb, WB_REASON_SYNC);
>   1240sync_inodes_sb(sb);
>   1241
>   1242set_sbi_flag(sbi, SBI_IS_DIRTY);
>   1243set_sbi_flag(sbi, SBI_IS_CLOSE);
>   1244f2fs_sync_fs(sb, 1);
>   1245clear_sbi_flag(sbi, SBI_IS_CLOSE);
>   1246}
>   1247
>   1248/*
>   1249 * We stop issue flush thread if FS is mounted as RO
>   1250 * or if flush_merge is not passed in mount option.
>   1251 */

Re: [f2fs-dev] [f2fs:dev-test 31/31] fs//f2fs/super.c:1264:9: error: 's_qf_names' undeclared

2017-08-07 Thread Jaegeuk Kim
I've uploaded a fixed one in dev-test.

Chao, could you check that?
(I just added #ifdef.)

Thanks,

On 08/08, kbuild test robot wrote:
> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git 
> dev-test
> head:   aced2c62005622672a7b96135389f45766f4ed1a
> commit: aced2c62005622672a7b96135389f45766f4ed1a [31/31] f2fs: support 
> journalled quota
> config: i386-randconfig-x009-08071050 (attached as .config)
> compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
> reproduce:
> git checkout aced2c62005622672a7b96135389f45766f4ed1a
> # save the attached .config to linux build tree
> make ARCH=i386 
> 
> All errors (new ones prefixed by >>):
> 
>fs//f2fs/super.c: In function 'parse_options':
>fs//f2fs/super.c:302:6: warning: unused variable 'ret' [-Wunused-variable]
>  int ret;
>  ^~~
>fs//f2fs/super.c: In function 'f2fs_remount':
> >> fs//f2fs/super.c:1263:7: error: 'i' undeclared (first use in this function)
>  for (i = 0; i < MAXQUOTAS; i++)
>   ^
>fs//f2fs/super.c:1263:7: note: each undeclared identifier is reported only 
> once for each function it appears in
> >> fs//f2fs/super.c:1264:9: error: 's_qf_names' undeclared (first use in this 
> >> function)
>   kfree(s_qf_names[i]);
> ^~
> 
> vim +/s_qf_names +1264 fs//f2fs/super.c
> 
>   1179
>   1180/* recover superblocks we couldn't write due to 
> previous RO mount */
>   1181if (!(*flags & MS_RDONLY) && is_sbi_flag_set(sbi, 
> SBI_NEED_SB_WRITE)) {
>   1182err = f2fs_commit_super(sbi, false);
>   1183f2fs_msg(sb, KERN_INFO,
>   1184"Try to recover all the superblocks, 
> ret: %d", err);
>   1185if (!err)
>   1186clear_sbi_flag(sbi, SBI_NEED_SB_WRITE);
>   1187}
>   1188
>   1189default_options(sbi);
>   1190
>   1191/* parse mount options */
>   1192err = parse_options(sb, data);
>   1193if (err)
>   1194goto restore_opts;
>   1195
>   1196/*
>   1197 * Previous and new state of filesystem is RO,
>   1198 * so skip checking GC and FLUSH_MERGE conditions.
>   1199 */
>   1200if (f2fs_readonly(sb) && (*flags & MS_RDONLY))
>   1201goto skip;
>   1202
>   1203if (!f2fs_readonly(sb) && (*flags & MS_RDONLY)) {
>   1204err = dquot_suspend(sb, -1);
>   1205if (err < 0)
>   1206goto restore_opts;
>   1207} else {
>   1208/* dquot_resume needs RW */
>   1209sb->s_flags &= ~MS_RDONLY;
>   1210dquot_resume(sb, -1);
>   1211}
>   1212
>   1213/* disallow enable/disable extent_cache dynamically */
>   1214if (no_extent_cache == !!test_opt(sbi, EXTENT_CACHE)) {
>   1215err = -EINVAL;
>   1216f2fs_msg(sbi->sb, KERN_WARNING,
>   1217"switch extent_cache option is 
> not allowed");
>   1218goto restore_opts;
>   1219}
>   1220
>   1221/*
>   1222 * We stop the GC thread if FS is mounted as RO
>   1223 * or if background_gc = off is passed in mount
>   1224 * option. Also sync the filesystem.
>   1225 */
>   1226if ((*flags & MS_RDONLY) || !test_opt(sbi, BG_GC)) {
>   1227if (sbi->gc_thread) {
>   1228stop_gc_thread(sbi);
>   1229need_restart_gc = true;
>   1230}
>   1231} else if (!sbi->gc_thread) {
>   1232err = start_gc_thread(sbi);
>   1233if (err)
>   1234goto restore_opts;
>   1235need_stop_gc = true;
>   1236}
>   1237
>   1238if (*flags & MS_RDONLY) {
>   1239writeback_inodes_sb(sb, WB_REASON_SYNC);
>   1240sync_inodes_sb(sb);
>   1241
>   1242set_sbi_flag(sbi, SBI_IS_DIRTY);
>   1243set_sbi_flag(sbi, SBI_IS_CLOSE);
>   1244f2fs_sync_fs(sb, 1);
>   1245clear_sbi_flag(sbi, SBI_IS_CLOSE);
>   1246}
>   1247
>   1248/*
>   1249 * We stop issue flush thread if FS is mounted as RO
>   1250 * or if flush_merge is