cvs commit: src/sys/geom geom_gpt.c

2006-11-01 Thread Pawel Jakub Dawidek
pjd 2006-11-01 12:29:49 UTC FreeBSD src repository Modified files: sys/geom geom_gpt.c Log: Add BIO_FLUSH support to GPT class. Revision ChangesPath 1.42 +2 -0 src/sys/geom/geom_gpt.c ___ cvs-all@fr

cvs commit: src/sys/geom geom_gpt.c

2006-08-09 Thread Marcel Moolenaar
marcel 2006-08-09 20:53:01 UTC FreeBSD src repository Modified files: sys/geom geom_gpt.c Log: Strengthen the check for a PMBR: o PMBR partitions count to the number of partitions on the disk, which means that if a PMBR entry is invalid we will not treat the MB

cvs commit: src/sys/geom geom_gpt.c

2006-08-08 Thread Marcel Moolenaar
marcel 2006-08-08 21:33:26 UTC FreeBSD src repository Modified files: sys/geom geom_gpt.c Log: Fix a phase-ordering bug: check the mediasize and sectorsize after we obtained access. It is possible that GPT gets to taste a disk first, which means the disk has not

cvs commit: src/sys/geom geom_gpt.c

2006-06-25 Thread Maxim Sobolev
sobomax 2006-06-26 00:32:54 UTC FreeBSD src repository Modified files: sys/geom geom_gpt.c Log: Improve check for protective MBR. Instead of assiming that protective MBR should have only one entry of type 0xEE, consider protective MBR to be one, that has at least

cvs commit: src/sys/geom geom_gpt.c

2006-06-11 Thread Marcel Moolenaar
marcel 2006-06-11 20:02:58 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) sys/geom geom_gpt.c Log: MFC rev 1.38: Fix unaligned memory accesses on Alpha and possible other platforms. Tested by: wilko@ Revision ChangesPath 1.32.

cvs commit: src/sys/geom geom_gpt.c

2006-06-04 Thread Marcel Moolenaar
marcel 2006-06-04 20:26:13 UTC FreeBSD src repository Modified files: sys/geom geom_gpt.c Log: Fix unaligned memory accesses on Alpha and possible other platforms. By using a pointer to struct dos_partition, we implicitly tell the compiler that the pointer is 4-b

cvs commit: src/sys/geom geom_gpt.c

2006-04-09 Thread Marcel Moolenaar
marcel 2006-04-10 04:03:14 UTC FreeBSD src repository Modified files: sys/geom geom_gpt.c Log: MFp4: o Implement the remove verb to remove a partition entry. o Improve error reporting by first checking that the verb is valid. o Add an entry parameter to the

cvs commit: src/sys/geom geom_gpt.c

2005-11-13 Thread Marcel Moolenaar
marcel 2005-11-13 21:53:55 UTC FreeBSD src repository Modified files: sys/geom geom_gpt.c Log: o Slightly refactor the ctlreq code to maximize code sharing between verbs. Only the create verb operates on a provider. All other verbs operate on a GPT geom. A