Re: [uml-devel] [PATCH] hostfs: fix a not needed double check

2012-11-24 Thread Marco Stornelli
Il 24/11/2012 10:12, Richard Weinberger ha scritto: > Am Sat, 24 Nov 2012 10:02:32 +0100 > schrieb Marco Stornelli : > >> Il 18/11/2012 09:59, Marco Stornelli ha scritto: >>> Il 20/10/2012 12:02, Marco Stornelli ha scritto: >>>> With the commit 3be2be0a32c18b0

Re: [uml-devel] [PATCH] hostfs: fix a not needed double check

2012-11-24 Thread Marco Stornelli
Il 18/11/2012 09:59, Marco Stornelli ha scritto: > Il 20/10/2012 12:02, Marco Stornelli ha scritto: >> With the commit 3be2be0a32c18b0fd6d623cda63174a332ca0de1 we removed >> vmtruncate, >> but actaully there is no need to call inode_newsize_ok() because the >> ch

Re: [uml-devel] [PATCH] hostfs: fix a not needed double check

2012-11-18 Thread Marco Stornelli
Il 20/10/2012 12:02, Marco Stornelli ha scritto: > With the commit 3be2be0a32c18b0fd6d623cda63174a332ca0de1 we removed > vmtruncate, > but actaully there is no need to call inode_newsize_ok() because the checks > are > already done in inode_change_ok() at the begin of the funct

[uml-devel] [PATCH] hostfs: fix a not needed double check

2012-10-20 Thread Marco Stornelli
With the commit 3be2be0a32c18b0fd6d623cda63174a332ca0de1 we removed vmtruncate, but actaully there is no need to call inode_newsize_ok() because the checks are already done in inode_change_ok() at the begin of the function. Signed-off-by: Marco Stornelli --- fs/hostfs/hostfs_kern.c |9

[uml-devel] [PATCH 14/22] hostfs: drop vmtruncate

2012-10-06 Thread Marco Stornelli
Removed vmtruncate. Signed-off-by: Marco Stornelli --- fs/hostfs/hostfs_kern.c |8 +--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c index 6c9f3a9..4348e84 100644 --- a/fs/hostfs/hostfs_kern.c +++ b/fs/hostfs

[uml-devel] [PATCH 14/21] hostfs: drop vmtruncate

2012-08-31 Thread Marco Stornelli
Removed vmtruncate. Signed-off-by: Marco Stornelli --- fs/hostfs/hostfs_kern.c |8 +--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c index 1241465..36f5a62 100644 --- a/fs/hostfs/hostfs_kern.c +++ b/fs/hostfs

[uml-devel] [PATCH] um: fix compilation error

2012-08-31 Thread Marco Stornelli
Fix a compilation error due to a regression of commit d3c1cfcdb43e023ab1b1c7a555cd9e929026500a "um: pass siginfo to guest process". Signed-off-by: Marco Stornelli --- arch/um/os-Linux/time.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/um/os-Linu

[uml-devel] 3.6rc-3 doesn't compile um arch

2012-08-31 Thread Marco Stornelli
Hi, I'm trying to compile the latest kernel for arch um, using the latest Linus's tree, but it doesn't compile due to the commit: um: pass siginfo to the guest process. I think the fix is trivial. At line 117 of os-Linux/time.c you find this line: alarm_handler(SIGVTALRM, NULL); but it sho