Fixed the calculation of the reserved space for bad144. Thanks Rod!

This commit is contained in:
Poul-Henning Kamp 1995-05-15 19:03:08 +00:00
parent b89995508b
commit 86577745c3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=8538
2 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
* $Id: create_chunk.c,v 1.15 1995/05/12 18:49:57 phk Exp $
* $Id: create_chunk.c,v 1.16 1995/05/15 00:58:25 phk Exp $
*
*/
@ -180,7 +180,7 @@ Create_Chunk_DWIM(struct disk *d, struct chunk *parent , u_long size, chunk_e ty
return 0;
found:
if (c1->flags & CHUNK_BAD144) {
edge = c1->end - (d->bios_hd * d->bios_sect);
edge = c1->end - d->bios_sect - 127;
if (offset > edge)
return 0;
if (offset + size > edge)

View File

@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
* $Id: create_chunk.c,v 1.15 1995/05/12 18:49:57 phk Exp $
* $Id: create_chunk.c,v 1.16 1995/05/15 00:58:25 phk Exp $
*
*/
@ -180,7 +180,7 @@ Create_Chunk_DWIM(struct disk *d, struct chunk *parent , u_long size, chunk_e ty
return 0;
found:
if (c1->flags & CHUNK_BAD144) {
edge = c1->end - (d->bios_hd * d->bios_sect);
edge = c1->end - d->bios_sect - 127;
if (offset > edge)
return 0;
if (offset + size > edge)