* linux-next: build warning after merge of the final tree (in Linus' tree)
@ 2013-05-15 3:20 Stephen Rothwell
2013-05-15 13:32 ` Eric Paris
0 siblings, 1 reply; 6+ messages in thread
From: Stephen Rothwell @ 2013-05-15 3:20 UTC (permalink / raw)
To: Eric Paris
Cc: linux-next, linux-kernel, Eric W. Biederman, Richard Guy Briggs
[-- Attachment #1: Type: text/plain, Size: 458 bytes --]
Hi ,
After merging the final tree, today's linux-next build (i386 defconfig)
produced this warning:
kernel/auditfilter.c: In function 'audit_data_to_entry':
kernel/auditfilter.c:426:3: warning: this decimal constant is unsigned only in ISO C90 [enabled by default]
Introduced by commit 780a7654cee8 ("audit: Make testing for a valid
loginuid explicit") from Linus' tree.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: linux-next: build warning after merge of the final tree (in Linus' tree)
2013-05-15 3:20 linux-next: build warning after merge of the final tree (in Linus' tree) Stephen Rothwell
@ 2013-05-15 13:32 ` Eric Paris
2013-05-15 22:25 ` Stephen Rothwell
2013-05-17 5:17 ` Viresh Kumar
0 siblings, 2 replies; 6+ messages in thread
From: Eric Paris @ 2013-05-15 13:32 UTC (permalink / raw)
To: Stephen Rothwell
Cc: linux-next, linux-kernel, Eric W. Biederman, Richard Guy Briggs
On Wed, 2013-05-15 at 13:20 +1000, Stephen Rothwell wrote:
> Hi ,
>
> After merging the final tree, today's linux-next build (i386 defconfig)
> produced this warning:
>
> kernel/auditfilter.c: In function 'audit_data_to_entry':
> kernel/auditfilter.c:426:3: warning: this decimal constant is unsigned only in ISO C90 [enabled by default]
>
> Introduced by commit 780a7654cee8 ("audit: Make testing for a valid
> loginuid explicit") from Linus' tree.
Thank you, I'll fix it up. What am I likely missing that I don't see it
on my builds? I'm using gcc 4.8. Is there a config option that enables
additional warnings?
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: linux-next: build warning after merge of the final tree (in Linus' tree)
2013-05-15 13:32 ` Eric Paris
@ 2013-05-15 22:25 ` Stephen Rothwell
2013-05-17 5:17 ` Viresh Kumar
1 sibling, 0 replies; 6+ messages in thread
From: Stephen Rothwell @ 2013-05-15 22:25 UTC (permalink / raw)
To: Eric Paris
Cc: linux-next, linux-kernel, Eric W. Biederman, Richard Guy Briggs
Hi Eric,
On Wed, May 15, 2013 at 09:32:42AM -0400, Eric Paris wrote:
> On Wed, 2013-05-15 at 13:20 +1000, Stephen Rothwell wrote:
> >
> > After merging the final tree, today's linux-next build (i386 defconfig)
> > produced this warning:
> >
> > kernel/auditfilter.c: In function 'audit_data_to_entry':
> > kernel/auditfilter.c:426:3: warning: this decimal constant is unsigned only in ISO C90 [enabled by default]
> >
> > Introduced by commit 780a7654cee8 ("audit: Make testing for a valid
> > loginuid explicit") from Linus' tree.
>
> Thank you, I'll fix it up. What am I likely missing that I don't see it
> on my builds? I'm using gcc 4.8. Is there a config option that enables
> additional warnings?
I don't think so, I am still using gcc 4.6 for this build but it is a
32 bit build ...
--
Cheers,
Stephen Rothwell
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: linux-next: build warning after merge of the final tree (in Linus' tree)
2013-05-15 13:32 ` Eric Paris
2013-05-15 22:25 ` Stephen Rothwell
@ 2013-05-17 5:17 ` Viresh Kumar
2013-05-17 19:08 ` Eric Paris
1 sibling, 1 reply; 6+ messages in thread
From: Viresh Kumar @ 2013-05-17 5:17 UTC (permalink / raw)
To: Eric Paris
Cc: Stephen Rothwell, linux-next, linux-kernel, Eric W. Biederman,
Richard Guy Briggs
On Wed, May 15, 2013 at 7:02 PM, Eric Paris <eparis@redhat.com> wrote:
> On Wed, 2013-05-15 at 13:20 +1000, Stephen Rothwell wrote:
>> Hi ,
>>
>> After merging the final tree, today's linux-next build (i386 defconfig)
>> produced this warning:
>>
>> kernel/auditfilter.c: In function 'audit_data_to_entry':
>> kernel/auditfilter.c:426:3: warning: this decimal constant is unsigned only in ISO C90 [enabled by default]
>>
>> Introduced by commit 780a7654cee8 ("audit: Make testing for a valid
>> loginuid explicit") from Linus' tree.
>
> Thank you, I'll fix it up. What am I likely missing that I don't see it
> on my builds? I'm using gcc 4.8. Is there a config option that enables
> additional warnings?
Is this fixed? I couldn't find a relevant patch in linux-next/master for it.
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: linux-next: build warning after merge of the final tree (in Linus' tree)
2013-05-17 5:17 ` Viresh Kumar
@ 2013-05-17 19:08 ` Eric Paris
0 siblings, 0 replies; 6+ messages in thread
From: Eric Paris @ 2013-05-17 19:08 UTC (permalink / raw)
To: Viresh Kumar
Cc: Stephen Rothwell, linux-next, linux-kernel, Eric W. Biederman,
Richard Guy Briggs
On Fri, 2013-05-17 at 10:47 +0530, Viresh Kumar wrote:
> On Wed, May 15, 2013 at 7:02 PM, Eric Paris <eparis@redhat.com> wrote:
> > On Wed, 2013-05-15 at 13:20 +1000, Stephen Rothwell wrote:
> >> Hi ,
> >>
> >> After merging the final tree, today's linux-next build (i386 defconfig)
> >> produced this warning:
> >>
> >> kernel/auditfilter.c: In function 'audit_data_to_entry':
> >> kernel/auditfilter.c:426:3: warning: this decimal constant is unsigned only in ISO C90 [enabled by default]
> >>
> >> Introduced by commit 780a7654cee8 ("audit: Make testing for a valid
> >> loginuid explicit") from Linus' tree.
> >
> > Thank you, I'll fix it up. What am I likely missing that I don't see it
> > on my builds? I'm using gcc 4.8. Is there a config option that enables
> > additional warnings?
>
> Is this fixed? I couldn't find a relevant patch in linux-next/master for it.
Something should be posted by the end of the day. Sorry for the delay.
^ permalink raw reply [flat|nested] 6+ messages in thread
* linux-next: build warning after merge of the final tree (in Linus' tree)
@ 2010-03-10 6:36 Stephen Rothwell
0 siblings, 0 replies; 6+ messages in thread
From: Stephen Rothwell @ 2010-03-10 6:36 UTC (permalink / raw)
To: Joel Becker; +Cc: linux-next, linux-kernel, Linus
[-- Attachment #1: Type: text/plain, Size: 657 bytes --]
Hi Joel,
After merging the scsi-post-merge tree, today's linux-next build (powerpc
allyesconfig) produced this warning:
fs/ocfs2/xattr.c: In function 'ocfs2_create_empty_xattr_block':
fs/ocfs2/xattr.c:6535: warning: 'meta_ac' is used uninitialized in this function
Introduced by commit d3981544d7a4ed276966cdd58fe2f5d6e8a585d9 ("ocfs2:
Set xattr block entries with ocfs2_xa_set()") which is now in Linus'
tree. (Entered linux-next on March 1, 2010 and Linus' tree on March 4).
I am pretty certain that this warning indicates a bug.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
http://www.canb.auug.org.au/~sfr/
[-- Attachment #2: Type: application/pgp-signature, Size: 198 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-05-17 19:09 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-15 3:20 linux-next: build warning after merge of the final tree (in Linus' tree) Stephen Rothwell
2013-05-15 13:32 ` Eric Paris
2013-05-15 22:25 ` Stephen Rothwell
2013-05-17 5:17 ` Viresh Kumar
2013-05-17 19:08 ` Eric Paris
-- strict thread matches above, loose matches on Subject: below --
2010-03-10 6:36 Stephen Rothwell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox