freebsd-dev/lib/libdisk
Jordan K. Hubbard 96e426f43d + add u_long sector_size to struct disk (documented in libdisk.3)
+ make Open_Disk sense the sector size by trying 512, 1024 and 2048
  in this order. This makes the kernel note that
  dscheck(cd1): bio_bcount 512 is not on a sector boundary (ssize 2048)
  dscheck(cd1): bio_bcount 1024 is not on a sector boundary (ssize 2048)
  if 2048 is the sector size. If this worries anyone: the message is from
  /usr/src/sys/kern/subr_diskslice.c and shutups are to be placed there.
+ Have read_block and write_block use an additional parameter, the
  sector size.
+ replace all barfout calls with return NULL, 0, __LINE__, etc.
  Note that this does NOT emit diagnostics. More often than not,
  you don't want library functions to scribble on stderr -- it may
  not even be available. The right thing is to propagate the error
  condition to upper management. The app should take care of errors.
+ use d1->sector_size instead of 512 in various places. I've left many
  places untouched, especially those writing MBRs. I simply added
  another arg hardcoded as 512. This is because I would not know what
  I'm doing... I felt this approach would be reasonably backward
  compatible and not introduce any new bugs in critical software.
  Famous last words. Messing with MBRs might soon put me in the same
  screwup meister category as, uh, never mind.  :-)
+ bump the max no of disks from 20 to 32 (due to PR 24503).

PR:		8434 / 8436 / 24503
Submitted by:	Jens Schweikhardt <schweikh@schweikhardt.net>
2001-05-13 20:08:54 +00:00
..
blocks.c + add u_long sector_size to struct disk (documented in libdisk.3) 2001-05-13 20:08:54 +00:00
change.c Add spaces around operators. 2001-04-01 12:18:20 +00:00
chunk.c + add u_long sector_size to struct disk (documented in libdisk.3) 2001-05-13 20:08:54 +00:00
create_chunk.c + add u_long sector_size to struct disk (documented in libdisk.3) 2001-05-13 20:08:54 +00:00
disk.c + add u_long sector_size to struct disk (documented in libdisk.3) 2001-05-13 20:08:54 +00:00
disklabel.c + add u_long sector_size to struct disk (documented in libdisk.3) 2001-05-13 20:08:54 +00:00
libdisk.3 + add u_long sector_size to struct disk (documented in libdisk.3) 2001-05-13 20:08:54 +00:00
libdisk.h + add u_long sector_size to struct disk (documented in libdisk.3) 2001-05-13 20:08:54 +00:00
Makefile MAN[1-9] -> MAN. 2001-03-27 17:27:19 +00:00
rules.c Add spaces around operators. 2001-04-01 12:18:20 +00:00
tst01.c Don't call printf without a format string. 2000-07-11 23:49:24 +00:00
write_disk.c + add u_long sector_size to struct disk (documented in libdisk.3) 2001-05-13 20:08:54 +00:00