Linux LVM users
 help / color / mirror / Atom feed
* [linux-lvm] *** ANNOUNCEMENT *** LVM 1.0.1-rc3 available at www.sistina.com
@ 2001-10-03  7:52 Heinz J . Mauelshagen
  2001-10-03 10:29 ` [linux-lvm] Re: [lvm-devel] " Christoph Hellwig
  0 siblings, 1 reply; 4+ messages in thread
From: Heinz J . Mauelshagen @ 2001-10-03  7:52 UTC (permalink / raw)
  To: linux-lvm, lvm-devel

Hi all,

LVM 1.0.1-rc3 supports both version 1 and 2 of the metadata.

There's *no* need to run any metadata update tools.

A tarball is available now at

   <http://www.sistina.com/>

for download (Follow the "LVM 1.0" link).

This release contains minor changes to LVM 1.0.1-rc2.

See the CHANGELOG file contained in the tarball for further information.

Feed back LVM related information to <linux-lvm@sistina.com>.

Thanks a lot for your support of LVM.


Regards,
Heinz    -- The LVM Guy --


=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

Heinz Mauelshagen                                 Sistina Software Inc.
Senior Consultant/Developer                       Am Sonnenhang 11
                                                  56242 Marienrachdorf
                                                  Germany
Mauelshagen@Sistina.com                           +49 2626 141200
                                                       FAX 924446
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

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

* [linux-lvm] Re: [lvm-devel] *** ANNOUNCEMENT *** LVM 1.0.1-rc3 available at www.sistina.com
  2001-10-03  7:52 [linux-lvm] *** ANNOUNCEMENT *** LVM 1.0.1-rc3 available at www.sistina.com Heinz J . Mauelshagen
@ 2001-10-03 10:29 ` Christoph Hellwig
  2001-10-03 17:35   ` Friedrich Lobenstock
  0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2001-10-03 10:29 UTC (permalink / raw)
  To: lvm-devel; +Cc: linux-lvm

Hi Heinz,

On Wed, Oct 03, 2001 at 09:52:11AM +0200, Heinz J . Mauelshagen wrote:
> See the CHANGELOG file contained in the tarball for further information.

is there a chance you could inline the relevant parts of the changelog
in the next (-rc4/final) announcment?

	Christoph

-- 
Whip me.  Beat me.  Make me maintain AIX.

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

* Re: [linux-lvm] Re: [lvm-devel] *** ANNOUNCEMENT *** LVM 1.0.1-rc3 available at www.sistina.com
  2001-10-03 10:29 ` [linux-lvm] Re: [lvm-devel] " Christoph Hellwig
@ 2001-10-03 17:35   ` Friedrich Lobenstock
  2001-10-03 22:36     ` [linux-lvm] Patch for lvm-1.0.1-rc4 to work under linux-2.4.10-ac4 Andre Margis
  0 siblings, 1 reply; 4+ messages in thread
From: Friedrich Lobenstock @ 2001-10-03 17:35 UTC (permalink / raw)
  To: linux-lvm; +Cc: lvm-devel

On Wed, 3 Oct 2001, Christoph Hellwig wrote:

> Hi Heinz,
>
> On Wed, Oct 03, 2001 at 09:52:11AM +0200, Heinz J . Mauelshagen wrote:
> > See the CHANGELOG file contained in the tarball for further information.
>
> is there a chance you could inline the relevant parts of the changelog
> in the next (-rc4/final) announcment?

I would also like to see the changes in the announcement, like Alan
and Linus do it. TIA.


-- 
MfG / Regards
Friedrich Lobenstock

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

* [linux-lvm] Patch for lvm-1.0.1-rc4 to work under linux-2.4.10-ac4
  2001-10-03 17:35   ` Friedrich Lobenstock
@ 2001-10-03 22:36     ` Andre Margis
  0 siblings, 0 replies; 4+ messages in thread
From: Andre Margis @ 2001-10-03 22:36 UTC (permalink / raw)
  To: linux-lvm

I change two programs to run under linux.2.4.10-ac4


I don't if this is correct. I test on my machine a believe it's working


This is my corrections:

on lvm.c

line 457
     /* insert our gendisk at the corresponding major */
        /*
        if (gendisk_head != NULL) {
                gendisk_ptr = gendisk_head;
                while (gendisk_ptr->next != NULL &&
                       gendisk_ptr->major > lvm_gendisk.major) {
                        gendisk_ptr = gendisk_ptr->next;
                }
                lvm_gendisk.next = gendisk_ptr->next;
                gendisk_ptr->next = &lvm_gendisk;
        } else {
                gendisk_head = &lvm_gendisk;
                lvm_gendisk.next = NULL;
        }
        */

        add_gendisk(&lvm_gendisk);

line 515
        /*
        gendisk_ptr = gendisk_ptr_prev = gendisk_head;
        while (gendisk_ptr != NULL) {
                if (gendisk_ptr == &lvm_gendisk)
                        break;
                gendisk_ptr_prev = gendisk_ptr;
                gendisk_ptr = gendisk_ptr->next;
        }*/
        /* delete our gendisk from chain */
        /*
        if (gendisk_ptr == &lvm_gendisk)
                gendisk_ptr_prev->next = gendisk_ptr->next;*/

        del_gendisk(&lvm_gendisk);


on lvm-snap.c

add line 53
int kio_max_sectors = KIO_MAX_SECTORS;

change all functions alloc_kiovec(a,b) by alloc_kiovec(a,b,&kio_max_sectors) 
at lines 518 and 527.

change all functions  free_kiovec(a,b) by free_kiovec(a,b,&kio_max_sectors)
at lines 543, 548, 573 and 580


My changes are correct?

Any help?



Thanks 



Andre

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

end of thread, other threads:[~2001-10-03 22:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-10-03  7:52 [linux-lvm] *** ANNOUNCEMENT *** LVM 1.0.1-rc3 available at www.sistina.com Heinz J . Mauelshagen
2001-10-03 10:29 ` [linux-lvm] Re: [lvm-devel] " Christoph Hellwig
2001-10-03 17:35   ` Friedrich Lobenstock
2001-10-03 22:36     ` [linux-lvm] Patch for lvm-1.0.1-rc4 to work under linux-2.4.10-ac4 Andre Margis

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