]> git.neil.brown.name Git - history.git/commit
[PATCH] Linux-0.99.6 (February 21, 1993) 0.99.6
authorLinus Torvalds <torvalds@linuxfoundation.org>
Fri, 23 Nov 2007 20:09:09 +0000 (15:09 -0500)
committerLinus Torvalds <torvalds@linuxfoundation.org>
Fri, 23 Nov 2007 20:09:09 +0000 (15:09 -0500)
commit64e05a911850c17f7bd821376893dfdf6594f05c
treefc9ef4d276f6eccce316cbbfe29e5891d2d5e3de
parentb5341f738b0587411ef8d1b755b187ee2cfb2168
[PATCH] Linux-0.99.6 (February 21, 1993)

Merge a lot of duplicated special file handling into fs/devices.c, and
make drivers register their major numbers properly.

VFS layer gets fsync virtual function.

Compressed image boot, with the kernel loaded into high memory..

[original announcement below]

I'm starting soon to run out of patchlevel numbers for 0.99, but I made
a new release anyway (and long-time linux hackers remember my less than
completely logical numbering: when I run out of numbers I'll start using
alphabetical characters and other fun characters to indicate new
versions :-)

0.99pl6 is mainly a syncronization release: it fixes a few bugs and
changes the behaviour of 'vhangup()' to be more standard.  The vhangup()
changes will break some init/login stuff that depended on the earlier
incorrect behaviour - not everybody may want to use pl6 until you are
sure your init/login will work happily with it.  Better do these things
before 1.0 than to break it later.

Patchlevel 6 also changes the vfs functions for special devices as well
as adding a 'fsync' field to the inode-operations structure.  Thus
ext2fs and xfs need updating.  Remy and Xia? The special file and fifo
handling code is no longer supposed to be in the fs-dependent layer, but
is handled by the vfs routines, as it's the same for all "normal"
filesystems.

Ok, here are the actual changes/features of pl6:
- the kernel can be loaded in gzipped format and de-compressed at
  startup beyond the 1MB mark.  Good for bootable rootdisks.  Patches
  mainly by Hannu Savolainen.
- I finally enabled NMI's everywhere (except at the bootup sequence),
  so if you have memory errors, they will hopefully now result in
  kernel messages ("NMI received..")
- the device registration code for special devices.  Special files are
  now registered with a special "register_[chr|blk]dev()" function.
- consolidated fifo/special dev handling
- vhangup patches.  Note that these may break init/login badly, at
  least if you are using poeigl-1.7.  Be careful that you don't get
  totally locked out of your machine.
- the procfs NULL-dereferencing bugfix (michaelkjohnson)
- literal next character handling (very losely based on a patch I
  received: I essentially rewrote it with final fixes by jrs).
- fpu-emu bugfixes by Bill Metzenthen - fixes the "internal error 112"
  bug as well as a sign bug with zero.
- fdomain driver fixes
- various other minor fixes (wrongly replying to bad ip messages etc)

I'm still not sure about the 387 error detection code: I have had a
couple of messages that would suggest that some early clone 387's have
problems with math exceptions in protected mode.  With the new (as of
99pl5) test at startup this can lead to problems at boot-time.  Please
mail me directly if you seem to have problems with this (it should be
obvious in pl6 due to debugging messages at startup).

            Linus
87 files changed:
Makefile
boot/setup.S
fs/Makefile
fs/devices.c [new file with mode: 0644]
fs/ext/Makefile
fs/ext/blkdev.c [deleted file]
fs/ext/chrdev.c [deleted file]
fs/ext/dir.c
fs/ext/fifo.c [deleted file]
fs/ext/file.c
fs/ext/inode.c
fs/ext/namei.c
fs/fifo.c
fs/inode.c
fs/isofs/Makefile
fs/isofs/blkdev.c [deleted file]
fs/isofs/chrdev.c [deleted file]
fs/isofs/dir.c
fs/isofs/fifo.c [deleted file]
fs/isofs/file.c
fs/isofs/inode.c
fs/minix/Makefile
fs/minix/blkdev.c [deleted file]
fs/minix/chrdev.c [deleted file]
fs/minix/dir.c
fs/minix/fifo.c [deleted file]
fs/minix/file.c
fs/minix/inode.c
fs/minix/namei.c
fs/msdos/dir.c
fs/msdos/file.c
fs/nfs/Makefile
fs/nfs/blkdev.c [deleted file]
fs/nfs/chrdev.c [deleted file]
fs/nfs/dir.c
fs/nfs/fifo.c [deleted file]
fs/nfs/file.c
fs/open.c
fs/pipe.c
fs/proc/array.c
fs/proc/base.c
fs/proc/fd.c
fs/proc/kmsg.c
fs/proc/mem.c
fs/proc/root.c
fs/super.c
include/linux/dirent.h
include/linux/fd.h
include/linux/fs.h
include/linux/sched.h
include/linux/tty.h
init/main.c
kernel/FPU-emu/Makefile
kernel/FPU-emu/fpu_trig.c
kernel/FPU-emu/reg_add_sub.c
kernel/FPU-emu/version.h
kernel/blk_drv/blk.h
kernel/blk_drv/floppy.c
kernel/blk_drv/hd.c
kernel/blk_drv/ll_rw_blk.c
kernel/blk_drv/ramdisk.c
kernel/blk_drv/scsi/fdomain.c
kernel/blk_drv/scsi/sd.c
kernel/blk_drv/scsi/sr.c
kernel/blk_drv/scsi/st.c
kernel/blk_drv/scsi/wd7000.c
kernel/chr_drv/console.c
kernel/chr_drv/keyboard.c
kernel/chr_drv/lp.c
kernel/chr_drv/mem.c
kernel/chr_drv/mouse.c
kernel/chr_drv/serial.c
kernel/chr_drv/tty_io.c
mm/memory.c
net/tcp/dev.c
net/tcp/ip.c
tools/build.c
zBoot/Makefile [new file with mode: 0644]
zBoot/crypt.h [new file with mode: 0644]
zBoot/gzip.h [new file with mode: 0644]
zBoot/head.S [new file with mode: 0644]
zBoot/inflate.c [new file with mode: 0644]
zBoot/lzw.h [new file with mode: 0644]
zBoot/misc.c [new file with mode: 0644]
zBoot/piggyback.c [new file with mode: 0644]
zBoot/unzip.c [new file with mode: 0644]
zBoot/xtract.c [new file with mode: 0644]