]> git.neil.brown.name Git - history.git/commit
[PATCH] Linux-0.99.11 (July 17, 1993) 0.99.11
authorLinus Torvalds <torvalds@linuxfoundation.org>
Fri, 23 Nov 2007 20:09:11 +0000 (15:09 -0500)
committerLinus Torvalds <torvalds@linuxfoundation.org>
Fri, 23 Nov 2007 20:09:11 +0000 (15:09 -0500)
commitd9f8e0ec9c1cfc6db81e2780442996f7657e8ca2
tree37f9400da333f5e24abb82fb3f2c4656d2844b2b
parent9cb9f18b5d26bf176e13edbc0c248d121217c6b3
[PATCH] Linux-0.99.11 (July 17, 1993)

Real file mmap with page sharing in the VM code.  We don't do writable
shared mappings (and we won't do them for a _long_ time yet), but this
is a big step forward!

Note in the COPYING file that the GPL only covers the kernel, not user
programs. People were starting to find Linux more and more interesting..

Improved configure script.

Use nicer "save_flags()/cli()/restore_flags()" macros instead of
hardcoding the inline assembly.  Clean up other inline assembly usage
too.

Trying to compile the kernel with C++ compiler.  It will be a failed
experiment.

Original ChangeLog:

 - The keyboard is dynamically changeable (this is true of pl10 as
   well), and you need to get the "keytables.tar.z" archive to set the
   keyboard to suit your taske unless you want to live with the default
   US keymaps.

   Use the "loadkeys map/xxx.map" command to load the keyboard map: you
   can edit the maps to suit yourself if you can't find a suitable one.
   The syntax of the keyboard maps should be obvious after looking at
   the examples.

 - The memory manager has been cleaned up substantially, and mmap()
   works for MAP_PRIVATE.  MAP_SHARED is still not supported for
   anything else than /dev/mem, but even so it actually is usable for a
   lot of applications.  The shared library routines have been rewritten
   to use mmap() instead of the old hardcoded behaviour.

 - The kernel is now compiled with C++ instead of plain C.  Very few
   actual C++ features are used, but even so C++ allows for more
   type-checking and type-safe linkage.

 - The filesystem routines have been cleaned up for multiple block
   sizes.  None of the filesystems use it yet, but people are working on
   it.

 - named pipes and normal pipes should hopefully have the right select()
   semantics in the presense/absense of writers.

 - QIC-02 tape driver by Hennus Bergman

 - selection patches in the default kernel

 - fixed a bug in the pty code which led to busy waiting in some
   circumstances instead of sleeping.

 - Compressed SLIP support (Charles Hedrick). See net/inet/CONFIG

 - the 'clear_bit()' function was changed to return the previous setting
   of the bit instead of the old "error-code".  This makes use of the
   bit operations more logical.

 - udelay() function for short delays (busy-waiting) added.  Used
   currently only by the QIC driver.

 - fork() and sheduler changes to make task switches happen only from
   kernel mode to kernel mode.  Cleaner and more portable than the old
   code which counted on being able to task-switch directly into user
   mode.

 - debugging malloc code.
199 files changed:
COPYING
Configure
Makefile
README
boot/head.S
config.in
fs/block_dev.c
fs/buffer.c
fs/exec.c
fs/ext/file.c
fs/ext/freelists.c
fs/ext/fsync.c
fs/ext/inode.c
fs/ext/namei.c
fs/ext2/balloc.c
fs/ext2/dir.c
fs/ext2/file.c
fs/ext2/ialloc.c
fs/ext2/inode.c
fs/ext2/namei.c
fs/fcntl.c
fs/fifo.c
fs/file_table.c
fs/inode.c
fs/ioctl.c
fs/isofs/dir.c
fs/isofs/file.c
fs/isofs/inode.c
fs/isofs/namei.c
fs/isofs/rock.c
fs/locks.c
fs/minix/bitmap.c
fs/minix/file.c
fs/minix/inode.c
fs/minix/namei.c
fs/msdos/fat.c
fs/msdos/file.c
fs/msdos/inode.c
fs/msdos/misc.c
fs/namei.c
fs/nfs/dir.c
fs/nfs/inode.c
fs/nfs/proc.c
fs/open.c
fs/pipe.c
fs/proc/array.c
fs/proc/base.c
fs/proc/fd.c
fs/proc/inode.c
fs/proc/kmsg.c
fs/proc/link.c
fs/proc/root.c
fs/read_write.c
fs/select.c
fs/stat.c
fs/super.c
fs/xiafs/bitmap.c
fs/xiafs/file.c
fs/xiafs/fsync.c
fs/xiafs/inode.c
fs/xiafs/namei.c
ibcs/emulate.c
include/asm/bitops.h
include/asm/dma.h
include/asm/io.h
include/asm/irq.h
include/asm/segment.h
include/asm/system.h
include/linux/delay.h [new file with mode: 0644]
include/linux/ext2_fs.h
include/linux/ext_fs.h
include/linux/fs.h
include/linux/genhd.h
include/linux/ipc.h
include/linux/iso_fs.h
include/linux/kernel.h
include/linux/keyboard.h
include/linux/minix_fs.h
include/linux/mm.h
include/linux/msdos_fs.h
include/linux/mtio.h
include/linux/sched.h
include/linux/sem.h
include/linux/string.h
include/linux/sys.h
include/linux/timer.h
include/linux/tpqic02.h [new file with mode: 0644]
include/linux/tty.h
include/linux/wait.h
include/linux/xd.h
include/linux/xia_fs.h
include/linux/xia_fs_i.h
init/main.c
ipc/msg.c
ipc/sem.c
ipc/shm.c
ipc/util.c
kernel/FPU-emu/Makefile
kernel/FPU-emu/errors.c
kernel/FPU-emu/fpu_emu.h
kernel/FPU-emu/fpu_entry.c
kernel/FPU-emu/fpu_proto.h
kernel/FPU-emu/load_store.c
kernel/FPU-emu/reg_compare.c
kernel/FPU-emu/reg_ld_str.c
kernel/blk_drv/blk.h
kernel/blk_drv/floppy.c
kernel/blk_drv/genhd.c
kernel/blk_drv/hd.c
kernel/blk_drv/ll_rw_blk.c
kernel/blk_drv/ramdisk.c
kernel/blk_drv/scsi/Makefile
kernel/blk_drv/scsi/aha1542.c
kernel/blk_drv/scsi/aha1740.c
kernel/blk_drv/scsi/fdomain.c
kernel/blk_drv/scsi/fdomain.h
kernel/blk_drv/scsi/scsi.c
kernel/blk_drv/scsi/scsi.h
kernel/blk_drv/scsi/scsi_ioctl.c
kernel/blk_drv/scsi/scsi_ioctl.h
kernel/blk_drv/scsi/sd.c
kernel/blk_drv/scsi/sd_ioctl.c
kernel/blk_drv/scsi/seagate.c
kernel/blk_drv/scsi/seagate.h
kernel/blk_drv/scsi/sr.c
kernel/blk_drv/scsi/st.c
kernel/blk_drv/scsi/ultrastor.c
kernel/blk_drv/scsi/wd7000.c
kernel/blk_drv/xd.c
kernel/chr_drv/Makefile
kernel/chr_drv/busmouse.c
kernel/chr_drv/console.c
kernel/chr_drv/keyboard.c
kernel/chr_drv/lp.c
kernel/chr_drv/mem.c
kernel/chr_drv/msbusmouse.c
kernel/chr_drv/psaux.c
kernel/chr_drv/pty.c
kernel/chr_drv/serial.c
kernel/chr_drv/tpqic02.c [new file with mode: 0644]
kernel/chr_drv/tty_io.c
kernel/chr_drv/tty_ioctl.c
kernel/chr_drv/vt.c
kernel/chr_drv/vt_kern.h
kernel/exit.c
kernel/fork.c
kernel/info.c
kernel/ioport.c
kernel/irq.c
kernel/itimer.c
kernel/panic.c
kernel/printk.c
kernel/ptrace.c
kernel/sched.c
kernel/signal.c
kernel/sys.c
kernel/sys_call.S
kernel/traps.c
lib/_exit.c
lib/malloc.c
mm/memory.c
mm/mmap.c
mm/swap.c
net/inet/8390.c
net/inet/8390.h
net/inet/CONFIG
net/inet/Makefile
net/inet/Space.c
net/inet/arp.c
net/inet/d_link.c
net/inet/dev.c
net/inet/dev.h
net/inet/eth.c
net/inet/hp.c
net/inet/icmp.c
net/inet/ip.c
net/inet/ip.h
net/inet/loopback.c
net/inet/ne.c
net/inet/packet.c
net/inet/plip.c
net/inet/proc.c
net/inet/raw.c
net/inet/route.c
net/inet/slhc.c [new file with mode: 0644]
net/inet/slhc.h [new file with mode: 0644]
net/inet/slip.c
net/inet/slip.h
net/inet/sock.c
net/inet/sock.h
net/inet/tcp.c
net/inet/tcp.h
net/inet/timer.c
net/inet/udp.c
net/inet/utils.c
net/inet/wd.c
net/socket.c
net/unix/proc.c
net/unix/sock.c