linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Chao Yu <yuchao0@huawei.com>
To: Greg KH <greg@kroah.com>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>,
	Gao Xiang <gaoxiang25@huawei.com>,
	Al Viro <viro@ZenIV.linux.org.uk>,
	"Linux-Next Mailing List" <linux-next@vger.kernel.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	David Howells <dhowells@redhat.com>,
	Miao Xie <miaoxie@huawei.com>, Chao Yu <chao@kernel.org>
Subject: Re: linux-next: build failure after merge of the staging tree
Date: Thu, 2 Aug 2018 15:48:53 +0800	[thread overview]
Message-ID: <b23a8a97-d9c2-6973-8c55-52bedee8d258@huawei.com> (raw)
In-Reply-To: <20180802071453.GA25644@kroah.com>

On 2018/8/2 15:14, Greg KH wrote:
> On Thu, Aug 02, 2018 at 03:01:59PM +0800, Chao Yu wrote:
>> Hi Greg,
>>
>> On 2018/8/2 14:15, Greg KH wrote:
>>> On Wed, Aug 01, 2018 at 05:09:13PM +0800, Chao Yu wrote:
>>>> Hi Stephen,
>>>>
>>>> On 2018/7/30 14:31, Gao Xiang wrote:
>>>>> Hi Stephen,
>>>>>
>>>>> On 2018/7/30 14:16, Stephen Rothwell wrote:
>>>>>> Hi Greg,
>>>>>>
>>>>>> After merging the staging tree, today's linux-next build (x86_64
>>>>>> allmodconfig) failed like this:
>>>>>>
>>>>>> drivers/staging/erofs/super.c: In function 'erofs_read_super':
>>>>>> drivers/staging/erofs/super.c:343:17: error: 'MS_RDONLY' undeclared (first use in this function); did you mean 'IS_RDONLY'?
>>>>>>   sb->s_flags |= MS_RDONLY | MS_NOATIME;
>>>>>>                  ^~~~~~~~~
>>>>>>                  IS_RDONLY
>>>>>> drivers/staging/erofs/super.c:343:17: note: each undeclared identifier is reported only once for each function it appears in
>>>>>> drivers/staging/erofs/super.c:343:29: error: 'MS_NOATIME' undeclared (first use in this function); did you mean 'S_NOATIME'?
>>>>>>   sb->s_flags |= MS_RDONLY | MS_NOATIME;
>>>>>>                              ^~~~~~~~~~
>>>>>>                              S_NOATIME
>>>>>> drivers/staging/erofs/super.c: In function 'erofs_mount':
>>>>>> drivers/staging/erofs/super.c:501:10: warning: passing argument 5 of 'mount_bdev' makes integer from pointer without a cast [-Wint-conversion]
>>>>>>    &priv, erofs_fill_super);
>>>>>>           ^~~~~~~~~~~~~~~~
>>>>>> In file included from include/linux/buffer_head.h:12:0,
>>>>>>                  from drivers/staging/erofs/super.c:14:
>>>>>> include/linux/fs.h:2151:23: note: expected 'size_t {aka long unsigned int}' but argument is of type 'int (*)(struct super_block *, void *, int)'
>>>>>>  extern struct dentry *mount_bdev(struct file_system_type *fs_type,
>>>>>>                        ^~~~~~~~~~
>>>>>> drivers/staging/erofs/super.c:500:9: error: too few arguments to function 'mount_bdev'
>>>>>>   return mount_bdev(fs_type, flags, dev_name,
>>>>>>          ^~~~~~~~~~
>>>>>> In file included from include/linux/buffer_head.h:12:0,
>>>>>>                  from drivers/staging/erofs/super.c:14:
>>>>>> include/linux/fs.h:2151:23: note: declared here
>>>>>>  extern struct dentry *mount_bdev(struct file_system_type *fs_type,
>>>>>>                        ^~~~~~~~~~
>>>>>> drivers/staging/erofs/super.c: At top level:
>>>>>> drivers/staging/erofs/super.c:518:20: error: initialization from incompatible pointer type [-Werror=incompatible-pointer-types]
>>>>>>   .mount          = erofs_mount,
>>>>>>                     ^~~~~~~~~~~
>>>>>> drivers/staging/erofs/super.c:518:20: note: (near initialization for 'erofs_fs_type.mount')
>>>>>> drivers/staging/erofs/super.c: In function 'erofs_remount':
>>>>>> drivers/staging/erofs/super.c:630:12: error: 'MS_RDONLY' undeclared (first use in this function); did you mean 'IS_RDONLY'?
>>>>>>   *flags |= MS_RDONLY;
>>>>>>             ^~~~~~~~~
>>>>>>             IS_RDONLY
>>>>>> drivers/staging/erofs/super.c: At top level:
>>>>>> drivers/staging/erofs/super.c:640:16: error: initialization from incompatible pointer type [-Werror=incompatible-pointer-types]
>>>>>>   .remount_fs = erofs_remount,
>>>>>>                 ^~~~~~~~~~~~~
>>>>>>
>>>>>> Caused by various commits creating erofs in the staging tree interacting
>>>>>> with various commits redoing the mount infrastructure in the vfs tree.
>>>>>>
>>>>>> I have disabed CONFIG_EROFS_FS for now:
>>>>
>>>> Xiang has submitted several patches as below to fix compiling error on -next
>>>> tree, could you consider to merge those temporary fixes into -next after merging
>>>> staging-next's updates, and reenable CONFIG_EROFS_FS for further integrity
>>>> compiling and test?
>>>>
>>>> staging: erofs: fix superblock/inode flags (MS_RDONLY -> SB_RDONLY, S_NOATIME)
>>>> https://lists.ozlabs.org/pipermail/linux-erofs/2018-July/000282.html
>>>>
>>>> staging: erofs: remove RADIX_TREE_EXCEPTIONAL_{ENTRY, SHIFT}
>>>> https://lists.ozlabs.org/pipermail/linux-erofs/2018-July/000283.html
>>>>
>>>> staging: erofs: update .mount and .remount_sb
>>>> https://lists.ozlabs.org/pipermail/linux-erofs/2018-July/000285.html
>>>
>>> Why have these not been submitted to me for inclusion in my tree?
>> Oh, let me explain, that is because the compiling error only occurs in -next
>> tree, since -next collects and merges developing patches including common vfs
>> stuff from multi-trees, but those patches didn't cover erofs, such as:
>>
>> ('vfs: Suppress MS_* flag defs within the kernel unless explicitly enabled")
>> https://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git/commit/?h=for-next&id=109b45090d7d3ce2797bb1ef7f70eead5bfe0ff3
>>
>> ("vfs: Require specification of size of mount data for internal mounts")
>> https://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git/commit/?h=for-next&id=0a191e4505a4f255e6513b49426213da69bf0e80
>>
>> As I checked, above vfs related patches has not been merged in staging tree, if
>> I submit those erofs patches to you and after including them in
>> staging-{test,nexts} tree, it can easily cause compiling error. So I just send
>> them to Stephen first for fixing integrity compiling error.
>>
>> Then I'd like to ask how to handle this condition to avoid potential conflict in
>> between erofs and vfs changes during merging window. As Stephen suggested, we
>> can disabling CONFIG_EROFS_FS temporarily to pass merge window, and after that
>> we reenable CONFIG_EROFS_FS and apply those fixing patches.
> 
> Ok, doing that will work.
> 
>> I'd like to ask and make sure, do you agree that we can handle the condition by
>> this way? or do you have any suggestion about solving this issue?
> 
> This is a side affect of being in the staging tree only at this point in
> time.  It will get easier once things get merged correctly.

Yeah, that's correct, so let me send one patch to disable CONFIG_EROFS_FS
temporarily. :)

Thanks,

> 
> thanks,
> 
> greg k-h
> 
> .
> 


  reply	other threads:[~2018-08-02  7:48 UTC|newest]

Thread overview: 143+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-30  6:16 linux-next: build failure after merge of the staging tree Stephen Rothwell
2018-07-30  6:31 ` Gao Xiang
2018-08-01  9:09   ` Chao Yu
2018-08-01 15:07     ` Stephen Rothwell
2018-08-02  6:12       ` Chao Yu
2018-08-02  6:15     ` Greg KH
2018-08-02  7:01       ` Chao Yu
2018-08-02  7:14         ` Greg KH
2018-08-02  7:48           ` Chao Yu [this message]
2018-07-30  9:47 ` David Howells
2018-07-30 10:45   ` Gao Xiang
2018-07-30 11:18   ` David Howells
2018-07-30 11:23     ` Gao Xiang
  -- strict thread matches above, loose matches on Subject: below --
2021-10-08  4:15 Stephen Rothwell
2021-10-08  5:39 ` Sergio Paracuellos
2021-08-16  3:52 Stephen Rothwell
2021-08-16  5:24 ` Greg KH
2021-08-16 15:10 ` Greg KH
2021-08-16 21:46   ` Stephen Rothwell
2021-03-29  5:55 Stephen Rothwell
2021-03-29  6:14 ` Greg KH
2021-03-29  7:25   ` Alexandru Ardelean
2021-04-26 14:41   ` Mark Brown
2021-04-26 16:23     ` Greg KH
2021-04-26 16:40       ` Mark Brown
2021-04-26  1:29 ` Stephen Rothwell
2021-04-26 22:07 ` Stephen Rothwell
2020-12-07  5:46 Stephen Rothwell
2020-12-07  9:26 ` Greg KH
2020-12-07  9:45   ` Stephen Rothwell
2020-12-14 20:27 ` Stephen Rothwell
2019-10-08  2:49 Stephen Rothwell
2019-10-08 12:46 ` Greg KH
2019-06-24  7:38 Stephen Rothwell
2019-06-24  8:46 ` Greg KH
2018-07-17  6:28 Stephen Rothwell
2018-07-17  6:49 ` Ivan Safonov
2018-07-17  8:06   ` Greg KH
2017-09-26  3:54 Stephen Rothwell
2017-09-26  6:15 ` Jonathan Cameron
2017-05-01  4:42 Stephen Rothwell
2017-05-04 23:41 ` Greg KH
2017-04-27  4:20 Stephen Rothwell
2017-04-30 12:15 ` Greg KH
2017-04-18  5:53 Stephen Rothwell
2017-04-18  7:04 ` Johannes Berg
2017-04-18  5:32 Stephen Rothwell
2017-04-18  5:54 ` Greg KH
2017-04-18  6:26   ` Stephen Rothwell
2017-04-18 11:16     ` Greg KH
2017-04-11  5:04 Stephen Rothwell
2017-04-11  5:15 ` Greg KH
2017-04-11  5:38   ` Greg KH
2017-04-11  5:48     ` Stephen Rothwell
2017-04-10  5:10 Stephen Rothwell
2017-03-07  1:25 Stephen Rothwell
2017-03-07  4:46 ` Greg KH
2017-03-07  8:47 ` Greg KH
2017-03-07  9:49   ` Stephen Rothwell
2017-03-07 12:24     ` Greg KH
2016-05-13  3:15 Stephen Rothwell
2016-05-13  8:36 ` Greg KH
2015-06-03  7:16 Stephen Rothwell
2015-06-03  7:23 ` Johannes Berg
2015-03-10  5:07 Stephen Rothwell
2015-03-10 15:08 ` Greg KH
2015-03-10 15:53   ` Sudip Mukherjee
2015-03-10 20:57   ` Stephen Rothwell
2014-09-30  8:04 Stephen Rothwell
2014-10-02 16:31 ` Greg KH
2014-08-17 22:47 Stephen Rothwell
2014-06-20  4:18 Stephen Rothwell
2014-06-20 16:53 ` Greg KH
2014-07-10  0:27   ` Stephen Rothwell
2014-07-10  3:09     ` Greg KH
2014-09-22 10:25 ` Geert Uytterhoeven
2014-01-24  2:01 Stephen Rothwell
2014-01-24  2:34 ` Greg KH
2014-01-24  3:53 ` Greg KH
2014-01-24  4:04   ` Stephen Rothwell
2014-01-24  4:08     ` Greg KH
2013-07-26  6:02 Stephen Rothwell
2013-07-26 21:03 ` Greg KH
2013-07-26 21:22   ` Eli Billauer
2013-07-26 21:56     ` Greg KH
2013-07-26 22:54       ` Eli Billauer
2013-07-26 23:28         ` Greg KH
2013-07-27 13:30           ` Eli Billauer
2013-07-25  3:19 Stephen Rothwell
2013-07-25  4:25 ` Greg KH
2013-06-04  4:57 Stephen Rothwell
2013-06-04  5:42 ` Greg KH
2013-06-04  8:55   ` Peng Tao
2013-01-08  2:23 Stephen Rothwell
2013-01-08  4:27 ` Greg KH
2013-01-08  4:29   ` Stephen Rothwell
2013-01-08 16:46     ` H Hartley Sweeten
2012-09-12  6:07 Stephen Rothwell
2012-09-12 16:13 ` Greg KH
2012-09-14  7:55 ` Samuel Ortiz
2012-09-18 20:40 ` Jonathan Cameron
2012-02-17  4:10 Stephen Rothwell
2012-02-17 17:04 ` Greg KH
2012-02-17 17:23   ` Dan Magenheimer
2012-02-16  4:23 Stephen Rothwell
2012-02-16  5:15 ` Greg KH
2012-02-16 14:39   ` Dan Magenheimer
2012-02-16 21:25     ` Stephen Rothwell
2012-02-16 21:49       ` Dan Magenheimer
2012-02-16 23:39         ` Stephen Rothwell
2012-02-17  0:17           ` Greg KH
2012-02-17 16:01       ` Konrad Rzeszutek Wilk
2012-02-10  4:58 Stephen Rothwell
2012-02-10  5:29 ` Greg KH
2012-02-10 17:21   ` Dan Magenheimer
2012-02-10 17:43     ` Greg KH
2012-02-10 18:22       ` Seth Jennings
2012-02-14 23:43       ` Dan Magenheimer
2012-02-15  0:03         ` Greg KH
2012-02-15  0:54           ` Dan Magenheimer
2012-02-15  2:33             ` Greg KH
2012-02-15 16:14               ` Dan Magenheimer
2011-08-25  5:02 Stephen Rothwell
2011-08-25  5:15 ` Larry Finger
2011-08-25 15:39   ` Greg KH
2011-07-25  5:21 Stephen Rothwell
2011-07-16 13:18 Stephen Rothwell
2011-07-17  9:13 ` Greg KH
2011-07-16 13:15 Stephen Rothwell
2011-07-16 23:39 ` Alan Cox
2011-07-17  9:15   ` Greg KH
2011-07-06  5:09 Stephen Rothwell
2011-07-06 15:12 ` Greg KH
2011-07-06  5:02 Stephen Rothwell
2011-07-06 15:12 ` Greg KH
2010-04-27  4:12 Stephen Rothwell
2010-04-27 15:13 ` Greg KH
2010-04-28  6:14   ` Stephen Rothwell
2010-04-28 15:28     ` Greg KH
2010-05-01 15:42       ` Tobias Klauser
2010-05-03 16:17       ` Tobias Klauser
2010-05-05  2:37         ` Stephen Rothwell
2010-05-05  8:39           ` Tobias Klauser

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b23a8a97-d9c2-6973-8c55-52bedee8d258@huawei.com \
    --to=yuchao0@huawei.com \
    --cc=chao@kernel.org \
    --cc=dhowells@redhat.com \
    --cc=gaoxiang25@huawei.com \
    --cc=greg@kroah.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-next@vger.kernel.org \
    --cc=miaoxie@huawei.com \
    --cc=sfr@canb.auug.org.au \
    --cc=viro@ZenIV.linux.org.uk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).