public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [Patch] uml: drop const qualifier for kernel_execve()
@ 2008-12-02 22:51 Américo Wang
  2008-12-03  1:20 ` Johannes Weiner
  0 siblings, 1 reply; 7+ messages in thread
From: Américo Wang @ 2008-12-02 22:51 UTC (permalink / raw)
  To: LKML, Andrew Morton; +Cc: jdike, user-mode-linux-devel

UML implementation of kernel_execve() should not have const qualifier,
because it will finally call do_execve() which doesn't have.

This also shuts up a gcc warning on this.

Signed-off-by: WANG Cong <wangcong@zeuux.org>
Cc: Jeff Dike <jdike@addtoit.com>

---
diff --git a/arch/um/kernel/syscall.c b/arch/um/kernel/syscall.c
index c4df705..4fa62ee 100644
--- a/arch/um/kernel/syscall.c
+++ b/arch/um/kernel/syscall.c
@@ -120,7 +120,7 @@ long sys_olduname(struct oldold_utsname __user * name)
 	return error;
 }

-int kernel_execve(const char *filename, char *const argv[], char *const envp[])
+int kernel_execve(char *filename, char * argv[], char * envp[])
 {
 	mm_segment_t fs;
 	int ret;

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [Patch] uml: drop const qualifier for kernel_execve()
  2008-12-02 22:51 [Patch] uml: drop const qualifier for kernel_execve() Américo Wang
@ 2008-12-03  1:20 ` Johannes Weiner
  2008-12-03 12:32   ` Américo Wang
  0 siblings, 1 reply; 7+ messages in thread
From: Johannes Weiner @ 2008-12-03  1:20 UTC (permalink / raw)
  To: Américo Wang; +Cc: LKML, Andrew Morton, jdike, user-mode-linux-devel

On Tue, Dec 02, 2008 at 10:51:09PM +0000, Américo Wang wrote:
> UML implementation of kernel_execve() should not have const qualifier,
> because it will finally call do_execve() which doesn't have.

And you made sure that do_execve() is correctly annotated?

	Hannes

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Patch] uml: drop const qualifier for kernel_execve()
  2008-12-03  1:20 ` Johannes Weiner
@ 2008-12-03 12:32   ` Américo Wang
  2008-12-03 13:40     ` Johannes Weiner
  0 siblings, 1 reply; 7+ messages in thread
From: Américo Wang @ 2008-12-03 12:32 UTC (permalink / raw)
  To: Johannes Weiner; +Cc: LKML, Andrew Morton, jdike, user-mode-linux-devel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=UTF-8, Size: 526 bytes --]

On Wed, Dec 3, 2008 at 1:20 AM, Johannes Weiner <hannes@cmpxchg.org> wrote:> On Tue, Dec 02, 2008 at 10:51:09PM +0000, Américo Wang wrote:>> UML implementation of kernel_execve() should not have const qualifier,>> because it will finally call do_execve() which doesn't have.>> And you made sure that do_execve() is correctly annotated?>
Yes, I checked that.
Thanks.ÿôèº{.nÇ+‰·Ÿ®‰­†+%ŠËÿ±éݶ\x17¥Šwÿº{.nÇ+‰·¥Š{±þG«éÿŠ{ayº\x1dʇڙë,j\a­¢f£¢·hšïêÿ‘êçz_è®\x03(­éšŽŠÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?™¨è­Ú&£ø§~á¶iO•æ¬z·švØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?–I¥

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Patch] uml: drop const qualifier for kernel_execve()
  2008-12-03 12:32   ` Américo Wang
@ 2008-12-03 13:40     ` Johannes Weiner
  2008-12-06  1:02       ` Américo Wang
  0 siblings, 1 reply; 7+ messages in thread
From: Johannes Weiner @ 2008-12-03 13:40 UTC (permalink / raw)
  To: Américo Wang; +Cc: LKML, Andrew Morton, jdike, user-mode-linux-devel

On Wed, Dec 03, 2008 at 12:32:02PM +0000, Américo Wang wrote:
> On Wed, Dec 3, 2008 at 1:20 AM, Johannes Weiner <hannes@cmpxchg.org> wrote:
> > On Tue, Dec 02, 2008 at 10:51:09PM +0000, Américo Wang wrote:
> >> UML implementation of kernel_execve() should not have const qualifier,
> >> because it will finally call do_execve() which doesn't have.
> >
> > And you made sure that do_execve() is correctly annotated?
> >
> 
> Yes, I checked that.

Good.  Then please fix up do_execve() or let the warning stand out as
a reminder.

	Hannes

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Patch] uml: drop const qualifier for kernel_execve()
  2008-12-03 13:40     ` Johannes Weiner
@ 2008-12-06  1:02       ` Américo Wang
  2008-12-07 19:55         ` Johannes Weiner
  0 siblings, 1 reply; 7+ messages in thread
From: Américo Wang @ 2008-12-06  1:02 UTC (permalink / raw)
  To: Johannes Weiner; +Cc: LKML, Andrew Morton, jdike, user-mode-linux-devel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=UTF-8, Size: 833 bytes --]

On Wed, Dec 3, 2008 at 1:40 PM, Johannes Weiner <hannes@cmpxchg.org> wrote:> On Wed, Dec 03, 2008 at 12:32:02PM +0000, Américo Wang wrote:>> On Wed, Dec 3, 2008 at 1:20 AM, Johannes Weiner <hannes@cmpxchg.org> wrote:>> > On Tue, Dec 02, 2008 at 10:51:09PM +0000, Américo Wang wrote:>> >> UML implementation of kernel_execve() should not have const qualifier,>> >> because it will finally call do_execve() which doesn't have.>> >>> > And you made sure that do_execve() is correctly annotated?>> >>>>> Yes, I checked that.>> Good.  Then please fix up do_execve() or let the warning stand out as> a reminder.
??Confused...
do_execve() is OK, we don't need to fix it.
Thanks.ÿôèº{.nÇ+‰·Ÿ®‰­†+%ŠËÿ±éݶ\x17¥Šwÿº{.nÇ+‰·¥Š{±þG«éÿŠ{ayº\x1dʇڙë,j\a­¢f£¢·hšïêÿ‘êçz_è®\x03(­éšŽŠÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?™¨è­Ú&£ø§~á¶iO•æ¬z·švØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?–I¥

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Patch] uml: drop const qualifier for kernel_execve()
  2008-12-06  1:02       ` Américo Wang
@ 2008-12-07 19:55         ` Johannes Weiner
  2008-12-26  9:32           ` Américo Wang
  0 siblings, 1 reply; 7+ messages in thread
From: Johannes Weiner @ 2008-12-07 19:55 UTC (permalink / raw)
  To: Américo Wang; +Cc: LKML, Andrew Morton, jdike, user-mode-linux-devel

On Sat, Dec 06, 2008 at 01:02:16AM +0000, Américo Wang wrote:
> On Wed, Dec 3, 2008 at 1:40 PM, Johannes Weiner <hannes@cmpxchg.org> wrote:
> > On Wed, Dec 03, 2008 at 12:32:02PM +0000, Américo Wang wrote:
> >> On Wed, Dec 3, 2008 at 1:20 AM, Johannes Weiner <hannes@cmpxchg.org> wrote:
> >> > On Tue, Dec 02, 2008 at 10:51:09PM +0000, Américo Wang wrote:
> >> >> UML implementation of kernel_execve() should not have const qualifier,
> >> >> because it will finally call do_execve() which doesn't have.
> >> >
> >> > And you made sure that do_execve() is correctly annotated?
> >> >
> >>
> >> Yes, I checked that.
> >
> > Good.  Then please fix up do_execve() or let the warning stand out as
> > a reminder.
> 
> ??
> Confused...
> 
> do_execve() is OK, we don't need to fix it.

I don't see where it writes through @filename.  So it seems the right
fix would be to make do_execve()s parameter const (and as it seems, a
lot more adjustments down this call graph) and not remove a correct
const from a callsite.

	Hannes

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Patch] uml: drop const qualifier for kernel_execve()
  2008-12-07 19:55         ` Johannes Weiner
@ 2008-12-26  9:32           ` Américo Wang
  0 siblings, 0 replies; 7+ messages in thread
From: Américo Wang @ 2008-12-26  9:32 UTC (permalink / raw)
  To: Johannes Weiner; +Cc: LKML, Andrew Morton, jdike, user-mode-linux-devel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=UTF-8, Size: 1494 bytes --]

On Sun, Dec 7, 2008 at 7:55 PM, Johannes Weiner <hannes@cmpxchg.org> wrote:> On Sat, Dec 06, 2008 at 01:02:16AM +0000, Américo Wang wrote:>> On Wed, Dec 3, 2008 at 1:40 PM, Johannes Weiner <hannes@cmpxchg.org> wrote:>> > On Wed, Dec 03, 2008 at 12:32:02PM +0000, Américo Wang wrote:>> >> On Wed, Dec 3, 2008 at 1:20 AM, Johannes Weiner <hannes@cmpxchg.org> wrote:>> >> > On Tue, Dec 02, 2008 at 10:51:09PM +0000, Américo Wang wrote:>> >> >> UML implementation of kernel_execve() should not have const qualifier,>> >> >> because it will finally call do_execve() which doesn't have.>> >> >>> >> > And you made sure that do_execve() is correctly annotated?>> >> >>> >>>> >> Yes, I checked that.>> >>> > Good.  Then please fix up do_execve() or let the warning stand out as>> > a reminder.>>>> ??>> Confused...>>>> do_execve() is OK, we don't need to fix it.>> I don't see where it writes through @filename.  So it seems the right> fix would be to make do_execve()s parameter const (and as it seems, a> lot more adjustments down this call graph) and not remove a correct> const from a callsite.
Hello, Johannes.
I apologize for my late reply.
Well, not only @filename, but also the next two parameters, but if you alsomake them const in do_execve(), you will get more warnings. :)So I think my patch is correct.
Thanks for your review.ÿôèº{.nÇ+‰·Ÿ®‰­†+%ŠËÿ±éݶ\x17¥Šwÿº{.nÇ+‰·¥Š{±þG«éÿŠ{ayº\x1dʇڙë,j\a­¢f£¢·hšïêÿ‘êçz_è®\x03(­éšŽŠÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?™¨è­Ú&£ø§~á¶iO•æ¬z·švØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?–I¥

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2008-12-26  9:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-02 22:51 [Patch] uml: drop const qualifier for kernel_execve() Américo Wang
2008-12-03  1:20 ` Johannes Weiner
2008-12-03 12:32   ` Américo Wang
2008-12-03 13:40     ` Johannes Weiner
2008-12-06  1:02       ` Américo Wang
2008-12-07 19:55         ` Johannes Weiner
2008-12-26  9:32           ` Américo Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox