All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [uml-devel] Partitioning scheme for ubd's
@ 2003-11-04 18:21 BlaisorBlade
  2003-11-04 19:52 ` Matt Zimmerman
  0 siblings, 1 reply; 7+ messages in thread
From: BlaisorBlade @ 2003-11-04 18:21 UTC (permalink / raw)
  To: user-mode-linux-devel

This should have gone to the list, but I sent it to Matt only. Sorry for this.

Alle 23:46, sabato 1 novembre 2003, Matt Zimmerman ha scritto:
> On Sat, Nov 01, 2003 at 11:59:11AM +0100, BlaisorBlade wrote:
> > But there is a problem here:
> > 1) device names are not consistent: if you want to use ubd[a-z], decide
> > so and start the change(for 2.6 there's a lot more changes anyway, so it
> > is a good occasion...)
>
> Are you talking about /proc/partitions or something else?

No, about the command line and the device file names.

> > 2) if I do an install, I can partition the ubd's; but then, I won't be
> > able to loop mount the file on the host(and if I'm in trouble, this
> > ability is worth a lot). In fact, I've never partitioned the ubd's, but
> > this meant a lot of trouble even to run Slackware install.
>
> Of course you can; use losetup -o (or mount -o loop,offset=).  But I don't
> see what this has to do with partition support for ubd.  You can use
> partitions or not, depending on what you prefer, just as with a real block
> device.

This was meant as intro for the 3). But there is losetup -o, so it's useless.
Sorry for not knowing it. Maybe it could be added inside UML docs.

> > 3) so, I thought this: since partitioning schemes are pluggable, it would
> > be possible to fool it and turn the ubd's into partitions of a single
> > disk. I.e. if I setup udb0, ubd1 and so on, they would be seen as three
> > partitions of a single disk. But they are still different files,
> > loop-mountable on host.
> >
> > Would you ever accept this?
>
> I can't think of any instance where I'd want this mixed solution, instead
> of the existing options with partitions and multiple ubd devices.

Ok. You're just right.

> > The other possible solution(which would be
> > cleaner) would be to teach, if possible, to the host kernel Device
> > Manager to read a file as a bunch of partition with its table(I've heard
> > of DM about COW files these days), and then to mount the partitions, but
> > I don't know if it's possible.

Would instead this one(or another way to do this) be interesting? So that the
kernel could guess by itself the offsets of partitions, rather than requiring
the user do more passages(i.e. use fdisk to read partition table) to handle
this.
Bye and sorry for my big mistake.
--
cat <<EOSIGN
Paolo Giarrusso, aka Blaisorblade
Linux Kernel 2.4.21/2.6.0-test on an i686; Linux registered user n. 292729
EOSIGN


-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

^ permalink raw reply	[flat|nested] 7+ messages in thread
* Re:[uml-devel] Partitioning scheme for ubd's
@ 2003-11-02 19:15 James W McMechan
  2003-11-03  2:41 ` [uml-devel] " Jeff Dike
  0 siblings, 1 reply; 7+ messages in thread
From: James W McMechan @ 2003-11-02 19:15 UTC (permalink / raw)
  To: blaisorblade_spam; +Cc: user-mode-linux-devel

1) well the device names are at least internally consistent.
and there are some devices like blah0p1 already.
also the proposed scheme for dealing with devices above 26
is currently a mess, hdaa hdaaa, since with the last patch
set I was using I had 400 disks mounted... mounting /dev/ubdpa1
ick... we only need one disk controller for a effectively unlimited
of disk drives which could be called c0dXpY if desired...
I don't know of any easy way to generate base26[a-z]
numbers from normal numbers.
So we might want to instead use ubd0p1 see cpqarray.txt ciss.txt
in /usr/src/linux/Documentation

2) Yes loop mounting a partitioned device is a pain
see however the offset option to the loop device
e.g. mount -oloop,offset=16384 partitioned_fs /mnt/loop
will mount the first partition
the calculation is based on the default geometry
512 byte/sector
32 sectors/track
128 heads/cylinder
and the first partition is at C0T1S0
1 track in from start so 512 * 32 = 16384
DOS partitions are a pain...
2nd and later are usually at CXT0S0
cylinder X which has offset $(( 512 * 32 * 128 * X ))
2097152 is not a handy number
and the X is 1 less then the start address shown in fdisk
fdisk's expert mode "x" shows the correct number in the
cylinder column

3) you could combine several ubd into one device in
theory, the device mapper might work for this and a
plugin to do this through the partition code should be
possible but I would expect a mess, you would have
to use the device tree to find all the ubd's and merge
them into a single device and then based on which
partition you want to use map back to the real ubd
devices, so it should be possible but messy.

________________________________________________________________
The best thing to hit the internet in years - Juno SpeedBand!
Surf the web up to FIVE TIMES FASTER!
Only $14.95/ month - visit www.juno.com to sign up today!


-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

^ permalink raw reply	[flat|nested] 7+ messages in thread
* [uml-devel] Partitioning scheme for ubd's
@ 2003-11-01 10:59 BlaisorBlade
  2003-11-01 22:46 ` Matt Zimmerman
  2003-11-03 11:23 ` Henrik Nordstrom
  0 siblings, 2 replies; 7+ messages in thread
From: BlaisorBlade @ 2003-11-01 10:59 UTC (permalink / raw)
  To: user-mode-linux-devel

Since some time, we can get nice messages as ubda: unknown partition table on 
boot if we use ubd's normally, and even install UML on partitions for 
installs.

But there is a problem here:
1) device names are not consistent: if you want to use ubd[a-z], decide so and 
start the change(for 2.6 there's a lot more changes anyway, so it is a good 
occasion...)

2) if I do an install, I can partition the ubd's; but then, I won't be able to 
loop mount the file on the host(and if I'm in trouble, this ability is worth 
a lot). In fact, I've never partitioned the ubd's, but this meant a lot of 
trouble even to run Slackware install.

3) so, I thought this: since partitioning schemes are pluggable, it would be 
possible to fool it and turn the ubd's into partitions of a single disk. I.e. 
if I setup udb0, ubd1 and so on, they would be seen as three partitions of a 
single disk. But they are still different files, loop-mountable on host.

Would you ever accept this? The other possible solution(which would be 
cleaner) would be to teach, if possible, to the host kernel Device Manager to 
read a file as a bunch of partition with its table(I've heard of DM about COW 
files these days), and then to mount the partitions, but I don't know if it's 
possible.

-- 
cat <<EOSIGN
Paolo Giarrusso, aka Blaisorblade
Linux Kernel 2.4.21/2.6.0-test on an i686; Linux registered user n. 292729
EOSIGN



-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive?  Does it
help you create better code?   SHARE THE LOVE, and help us help
YOU!  Click Here: http://sourceforge.net/donate/
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel

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

end of thread, other threads:[~2003-11-04 20:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-11-04 18:21 [uml-devel] Partitioning scheme for ubd's BlaisorBlade
2003-11-04 19:52 ` Matt Zimmerman
2003-11-04 20:38   ` BlaisorBlade
  -- strict thread matches above, loose matches on Subject: below --
2003-11-02 19:15 James W McMechan
2003-11-03  2:41 ` [uml-devel] " Jeff Dike
2003-11-01 10:59 BlaisorBlade
2003-11-01 22:46 ` Matt Zimmerman
2003-11-03 11:23 ` Henrik Nordstrom

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.