Remove unneeded tls_get_curthread() call.
[dragonfly.git] / lib / libdisk / change.c
1 /*
2  * ----------------------------------------------------------------------------
3  * "THE BEER-WARE LICENSE" (Revision 42):
4  * <phk@login.dknet.dk> wrote this file.  As long as you retain this notice you
5  * can do whatever you want with this stuff. If we meet some day, and you think
6  * this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
7  * ----------------------------------------------------------------------------
8  *
9  * $FreeBSD: src/lib/libdisk/change.c,v 1.14.2.5 2002/10/24 13:03:44 nyan Exp $
10  * $DragonFly: src/lib/libdisk/Attic/change.c,v 1.3 2005/03/13 15:10:03 swildner Exp $
11  *
12  */
13
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <unistd.h>
17 #include <fcntl.h>
18 #include <string.h>
19 #include <sys/types.h>
20 #include "libdisk.h"
21
22 void
23 Set_Bios_Geom(struct disk *disk, u_long cyl, u_long hd, u_long sect)
24 {
25         disk->bios_cyl = cyl;
26         disk->bios_hd = hd;
27         disk->bios_sect = sect;
28 }
29
30 void
31 Sanitize_Bios_Geom(struct disk *disk)
32 {
33         int sane;
34
35         sane = 1;
36
37         if (disk->bios_cyl > 1024)
38                 sane = 0;
39         if (disk->bios_hd > 16)
40                 sane = 0;
41         if (disk->bios_sect > 63)
42                 sane = 0;
43         if (disk->bios_cyl*disk->bios_hd*disk->bios_sect != disk->chunks->size)
44                 sane = 0;
45         if (sane)
46                 return;
47
48         /* First try something that IDE can handle */
49         disk->bios_sect = 63;
50         disk->bios_hd = 16;
51         disk->bios_cyl = disk->chunks->size / (disk->bios_sect*disk->bios_hd);
52
53         if (disk->bios_cyl < 1024)
54                 return;
55
56         /* Hmm, try harder... */
57         disk->bios_hd = 255;
58         disk->bios_cyl = disk->chunks->size / (disk->bios_sect*disk->bios_hd);
59
60         return;
61 }
62
63 void
64 All_FreeBSD(struct disk *d, int force_all)
65 {
66         struct chunk *c;
67
68     again:
69         for (c = d->chunks->part; c; c = c->next)
70                 if (c->type != unused) {
71                         Delete_Chunk(d, c);
72                         goto again;
73                 }
74         c = d->chunks;
75         if (force_all) {
76                 Sanitize_Bios_Geom(d);
77                 Create_Chunk(d, c->offset, c->size, freebsd, 0xa5,
78                     CHUNK_FORCE_ALL);
79         } else {
80                 Create_Chunk(d, c->offset, c->size, freebsd, 0xa5, 0);
81         }
82 }