* uml-patch-2.5.42-2
@ 2002-10-15 17:17 Jeff Dike
2002-10-16 8:50 ` UML and 2.5.43 Oleg Drokin
0 siblings, 1 reply; 5+ messages in thread
From: Jeff Dike @ 2002-10-15 17:17 UTC (permalink / raw)
To: user-mode-linux-devel, linux-kernel; +Cc: Oleg Drokin, Mike Anderson
The 2.5.42 patch I released last night was broken. This fixes those problems.
The build works again, and I merged the locking fixes that Oleg Drokin and
Nikita Danilov pointed out.
The patch is available at
http://uml-pub.ists.dartmouth.edu/uml/uml-patch-2.5.42-2.bz2
For the other UML mirrors and other downloads, see
http://user-mode-linux.sourceforge.net/dl-sf.html
Other links of interest:
The UML project home page : http://user-mode-linux.sourceforge.net
The UML Community site : http://usermodelinux.org
Jeff
^ permalink raw reply [flat|nested] 5+ messages in thread
* UML and 2.5.43
2002-10-15 17:17 uml-patch-2.5.42-2 Jeff Dike
@ 2002-10-16 8:50 ` Oleg Drokin
2002-10-16 11:27 ` [uml-devel] " Jeff Dike
2002-10-17 1:36 ` Jeff Dike
0 siblings, 2 replies; 5+ messages in thread
From: Oleg Drokin @ 2002-10-16 8:50 UTC (permalink / raw)
To: Jeff Dike; +Cc: user-mode-linux-devel, linux-kernel
Hello!
I noticed that in 2.5.43 ubd does not work anymore until
you enable devfs support, since devfs_register is now only
return meaningful values if devfs is compiled, otherwise it
just returns NULL, and ubd treats this as error. Since UML
itself only uses that value for subsequent freeing of devfs node,
it is quite safe (returned NULL means nothing should be freed
later ;) )
Probably attached patch is one of the right things to do.
As additional bonus it fixes uninitialised variable usage ;)
Bye,
Oleg
# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.859 -> 1.860
# arch/um/drivers/ubd_kern.c 1.10 -> 1.11
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 02/10/16 green@angband.namesys.com 1.860
# do not look at return values from devfs_register stuff
# --------------------------------------------
#
diff -Nru a/arch/um/drivers/ubd_kern.c b/arch/um/drivers/ubd_kern.c
--- a/arch/um/drivers/ubd_kern.c Wed Oct 16 12:41:24 2002
+++ b/arch/um/drivers/ubd_kern.c Wed Oct 16 12:41:24 2002
@@ -469,9 +469,7 @@
MAJOR_NR, n << UBD_SHIFT,
S_IFBLK | S_IRUSR | S_IWUSR | S_IRGRP |S_IWGRP,
&ubd_blops, NULL);
- if(real == NULL)
- goto out;
- ubd_dev[n].real = real;
+ ubd_dev[n].real = real;
if (fake_major) {
fake = devfs_register(ubd_fake_dir_handle, name,
@@ -479,20 +477,16 @@
n << UBD_SHIFT,
S_IFBLK | S_IRUSR | S_IWUSR | S_IRGRP |
S_IWGRP, &ubd_blops, NULL);
- if(fake == NULL)
- goto out_unregister;
- ubd_dev[n].fake = fake;
+ ubd_dev[n].fake = fake;
add_disk(fake_disk);
+
}
add_disk(disk);
make_ide_entries(disk->disk_name);
return(0);
- out_unregister:
- devfs_unregister(real);
- ubd_dev[n].real = NULL;
out:
return(-1);
}
@@ -700,6 +694,6 @@
{
int n = DEVICE_NR(inode->i_rdev);
struct ubd *dev = &ubd_dev[n];
- int err;
+ int err = -EISDIR;
if(dev->is_dir == 1)
goto out;
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [uml-devel] UML and 2.5.43
2002-10-16 8:50 ` UML and 2.5.43 Oleg Drokin
@ 2002-10-16 11:27 ` Jeff Dike
2002-10-16 16:16 ` Mike Anderson
2002-10-17 1:36 ` Jeff Dike
1 sibling, 1 reply; 5+ messages in thread
From: Jeff Dike @ 2002-10-16 11:27 UTC (permalink / raw)
To: Oleg Drokin; +Cc: user-mode-linux-devel, linux-kernel, Mike Anderson
green@namesys.com said:
> Probably attached patch is one of the right things to do.
> As additional bonus it fixes uninitialised variable usage ;)
Cool, Mike Anderson was complaining about that, and I hadn't got around to
looking at it yet.
Jeff
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [uml-devel] UML and 2.5.43
2002-10-16 11:27 ` [uml-devel] " Jeff Dike
@ 2002-10-16 16:16 ` Mike Anderson
0 siblings, 0 replies; 5+ messages in thread
From: Mike Anderson @ 2002-10-16 16:16 UTC (permalink / raw)
To: Jeff Dike; +Cc: Oleg Drokin, user-mode-linux-devel, linux-kernel
Thanks Oleg I had found this late last night. It is good someone else
was seeing it also.
Jeff Dike [jdike@karaya.com] wrote:
> green@namesys.com said:
> > Probably attached patch is one of the right things to do.
> > As additional bonus it fixes uninitialised variable usage ;)
>
> Cool, Mike Anderson was complaining about that, and I hadn't got around to
> looking at it yet.
>
> Jeff
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
-andmike
--
Michael Anderson
andmike@us.ibm.com
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: UML and 2.5.43
2002-10-16 8:50 ` UML and 2.5.43 Oleg Drokin
2002-10-16 11:27 ` [uml-devel] " Jeff Dike
@ 2002-10-17 1:36 ` Jeff Dike
1 sibling, 0 replies; 5+ messages in thread
From: Jeff Dike @ 2002-10-17 1:36 UTC (permalink / raw)
To: Oleg Drokin; +Cc: user-mode-linux-devel, linux-kernel
green@namesys.com said:
> Probably attached patch is one of the right things to do.
> As additional bonus it fixes uninitialised variable usage ;)
Applied, thanks.
Jeff
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2002-10-17 0:25 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-10-15 17:17 uml-patch-2.5.42-2 Jeff Dike
2002-10-16 8:50 ` UML and 2.5.43 Oleg Drokin
2002-10-16 11:27 ` [uml-devel] " Jeff Dike
2002-10-16 16:16 ` Mike Anderson
2002-10-17 1:36 ` Jeff Dike
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®