]> git.neil.brown.name Git - history.git/log
history.git
18 years agoImport 2.1.92pre2 2.1.92pre2
Linus Torvalds [Fri, 23 Nov 2007 20:15:03 +0000 (15:15 -0500)]
Import 2.1.92pre2

18 years agoImport 2.1.92pre1 2.1.92pre1
Linus Torvalds [Fri, 23 Nov 2007 20:15:02 +0000 (15:15 -0500)]
Import 2.1.92pre1

18 years agoLinux 2.1.91 2.1.91
Linus Torvalds [Fri, 23 Nov 2007 20:15:01 +0000 (15:15 -0500)]
Linux 2.1.91

I just made a real 91 on ftp.kernel.org, let's hope that this has all the
sillies gone. As usual, it is prefectly smooth on my machine, but this
time we also have a better chance of it being smooth on machines with less
memory too, as Rik has done some good work in testing the algorithms out.
So throw some problems at it to see just how good it is..

                Linus

18 years agoImport 2.1.91pre2 2.1.91pre2
Linus Torvalds [Fri, 23 Nov 2007 20:15:00 +0000 (15:15 -0500)]
Import 2.1.91pre2

18 years agoImport 2.1.91pre1 2.1.91pre1
Linus Torvalds [Fri, 23 Nov 2007 20:14:58 +0000 (15:14 -0500)]
Import 2.1.91pre1

18 years agoImport 2.1.90 2.1.90
Linus Torvalds [Fri, 23 Nov 2007 20:14:57 +0000 (15:14 -0500)]
Import 2.1.90

18 years ago- Revert TCP delayed ACK fix, and fix correctly. 2.1.90pre3
Linus Torvalds [Fri, 23 Nov 2007 20:14:55 +0000 (15:14 -0500)]
- Revert TCP delayed ACK fix, and fix correctly.
  We should not send an ack if we don't have any pending
  (in which case the DACK timer will be set)     (Dave Miller)

18 years ago- Fix TCP delayed ACK stall (Andrea Arcangeli) 2.1.90pre2
Linus Torvalds [Fri, 23 Nov 2007 20:14:54 +0000 (15:14 -0500)]
- Fix TCP delayed ACK stall  (Andrea Arcangeli)
- the first cut of my spinlock changes wrt the task lists (Linus)

18 years agoI just put a pre-90 on ftp.kernel.org, and I'm happy to report that Davem 2.1.90pre1
Linus Torvalds [Fri, 23 Nov 2007 20:14:53 +0000 (15:14 -0500)]
I just put a pre-90 on ftp.kernel.org, and I'm happy to report that Davem
seems to have found and fixed the TCP performance problem, which means
that the code-freeze for 2.2 is going to go into effect shortly..

pre-90 does a few other minor things, like for example getting rid of
kerneld because the new kmod thing is a lot simpler in many ways. Let's
see what the reaction to that is, but I'm fairly certain that this was a
major good thing: I've personally never liked kerneld, but kmod seems to
be a much nicer and more controlled way of handling the same issues that
kerneld tried to do. I'd actually almost be willing to use the thing
myself, something that was never true of kerneld.

This also moves the WD7000 SCSI driver to a working status again, thanks
to Miroslav Zagorac.

But the interesting and important part of the patches are the networking
fixes from David and Bill Hawes..

                Linus

18 years agoImport 2.1.89 2.1.89
Linus Torvalds [Fri, 23 Nov 2007 20:14:51 +0000 (15:14 -0500)]
Import 2.1.89

18 years agoDate: 1 Mar 1998 05:08:07 GMT 2.1.89pre5
Linus Torvalds [Fri, 23 Nov 2007 20:14:50 +0000 (15:14 -0500)]
Date: 1 Mar 1998 05:08:07 GMT
Subject: Re: INN doesn't work on pre-2.1.89-4 (mmap problem ?)
From: Linus Torvalds <torvalds@transmeta.com>

I fixed _one_ silly bug wrt writeback to shared files in pre-5

18 years agoLinux 2.1.89-4 2.1.89pre4
Linus Torvalds [Fri, 23 Nov 2007 20:14:49 +0000 (15:14 -0500)]
Linux 2.1.89-4

It should fix the problem another way that I'm happier with (fixing that
problem also revealed a few other misuses of close_fp() due to historical
reasons - the uses really needed to be "fput()"s instead).
2.1.89-4 also uses "struct file" for mmap's, which means that the problem
that somebody was complaining about with mmap (that the mapping would
exist even after the last "release()" on that file, and thus the file
would still be active) are gone. As of -4 the kernel will guarantee that
it will call the file->f_op->release() onle after there really aren't any
uses of that file pointer any more..

                Linus

18 years agoImport 2.1.89pre3 2.1.89pre3
Linus Torvalds [Fri, 23 Nov 2007 20:14:48 +0000 (15:14 -0500)]
Import 2.1.89pre3

18 years agoLinux 2.1.89pre2 2.1.89pre2
Linus Torvalds [Fri, 23 Nov 2007 20:14:47 +0000 (15:14 -0500)]
Linux 2.1.89pre2

[sct] a patch against ipc/shm.c was missing from my swap patches,
      and another fix for spurious warnings about shared dirty pages.

[changelog pieced together by davej]

18 years agoStephen Tweedie: 2.1.89pre1
Linus Torvalds [Fri, 23 Nov 2007 20:14:45 +0000 (15:14 -0500)]
Stephen Tweedie:

* 2.1.88, adds a bunch of new functionality to
  the swapper.  The main changes are:

* All swapping goes through the swap cache (aka. page cache) now.

* There is no longer a swap lock map.  Because we need to atomically
  test and create a new swap-cache page in order to do swap IO, it is
  sufficient just to lock the struct page itself.  Having only one
  layer of locking to deal with removes a number of races concerning
  swapping shared pages.

* We can swap shared pages, and still keep them shared when they are
  swapped back in!!!  Currently, only private shared pages (as in pages
  shared after a fork()) benefit from this, but the basic mechanism will
  be appropriate for MAP_ANONYMOUS | MAP_SHARED pages too
  (implementation to follow).  Pages will remain shared after a swapoff.

* The page cache is now quite happy dealing with swap-cache pages too.
  In particular, write-ahead and read-ahead of swap through the page
  cache will work fine (and in fact, write-ahead does get done already
  under certain circumstances with this patch --- that's essentially how
  the swapping of shared pages gets done).  Support code to perform
  asynchronous readahead of swap is included, but is not actually used
  anywhere yet.

  I've tested with a number of forked processes running with a shared
  working set larger than physical memory, and with SysV shared memory.
  I haven't found any problems with it so far.

Linus: I've also changed the way we consider us to need more memory in kswapd,
       but that was entirely orthogonal and did not impact these patches. ]

[Changelog pieced together by davej]

18 years agoImport 2.1.88 2.1.88
Linus Torvalds [Fri, 23 Nov 2007 20:14:44 +0000 (15:14 -0500)]
Import 2.1.88

18 years agoLinux 2.1.87 2.1.87
Linus Torvalds [Fri, 23 Nov 2007 20:14:43 +0000 (15:14 -0500)]
Linux 2.1.87

Ok, 2.1.87 is out there on ftp.kernel.org now, and it has the clever
PROT_NONE thing done. It seems to work for the little test-case I wrote,
and I also verified that swapping still works, so it seems to be all ok.
I'd still like people who have test programs or similar to actually check
it out,

                Linus

18 years agoImport 2.1.87pre1 2.1.87pre1
Linus Torvalds [Fri, 23 Nov 2007 20:14:41 +0000 (15:14 -0500)]
Import 2.1.87pre1

18 years agoImport 2.1.86 2.1.86
Linus Torvalds [Fri, 23 Nov 2007 20:14:40 +0000 (15:14 -0500)]
Import 2.1.86

18 years agoImport 2.1.85 2.1.85
Linus Torvalds [Fri, 23 Nov 2007 20:14:38 +0000 (15:14 -0500)]
Import 2.1.85

18 years agoLinux 2.1.84 2.1.84
Linus Torvalds [Fri, 23 Nov 2007 20:14:37 +0000 (15:14 -0500)]
Linux 2.1.84

- Update makefile version (forgot to in .83)
- fixes a (very obscure, possibly never happens) autofs bug.
- fix missing ; compile error in mm/filemap.c
- MS_NODIRATIME support.

[changelog summary by davej]

18 years agoImport 2.1.83 2.1.83
Linus Torvalds [Fri, 23 Nov 2007 20:14:36 +0000 (15:14 -0500)]
Import 2.1.83

18 years agoImport 2.1.82 2.1.82
Linus Torvalds [Fri, 23 Nov 2007 20:14:35 +0000 (15:14 -0500)]
Import 2.1.82

18 years agoImport 2.1.81 2.1.81
Linus Torvalds [Fri, 23 Nov 2007 20:14:34 +0000 (15:14 -0500)]
Import 2.1.81

18 years agoLinux 2.1.81pre1 2.1.81pre1
Linus Torvalds [Fri, 23 Nov 2007 20:14:32 +0000 (15:14 -0500)]
Linux 2.1.81pre1

I just made a pre-2.1.81 available on ftp.kernel.org.
This fixes the known problems of 2.1.80, and also makes the interrupt
routing by default look like it always used to look - everything goes
through the traditional external 8259A-compatible logic.
The code to handle IO-APIC interrupt routing is still there, but as no
interrupts are actually marked as io-apic interrupts you don't see it in
action yet. The advantage of this is that people who want to work on this
have a base that contains all the logic, and that we only need to figure
out how to reliably make all the IRQ routing decisions.

                Linus

18 years agoLinux 2.1.80 2.1.80
Linus Torvalds [Fri, 23 Nov 2007 20:14:31 +0000 (15:14 -0500)]
Linux 2.1.80

This release should fix a few networking problems, and the NFS client is
hopefully fairly stable even under the kinds of loads we have here at
Transmeta.

The 2.1.80 release also contains some initial ARM support, and contains
Ingo Molnar's better SMP interrupt handling.

NOTE NOTE NOTE! The new SMP interrupt handling is currently not very good
at autodetection. This can be a real problem, and _before_ booting the
2.1.80 kernel as compiled for SMP you should probably try to figure out a
possible IRQ override line by doing:

        echo -n pirq=; echo `scanpci -f | grep T_L | cut -c56-` | sed 's/ /,/g'
which for me gives
        pirq=0x00,0x09,0x0b

Then, after doing the above, boot into 2.1.80 and see if it finds your PCI
interrupt lines correctly. If it does, everything is fine. If it doesn't,
you need to boot with the pirq setting that you determined earlier, by
giving the kernel the pirq data at the bootup command line or by using the
LILO "append=" feature (or similar features in other bootloaders).
We'll certainly have to make the autodetection work reliably, but in the
meantime the command-line approach at least gives us a way to test the
more fundamental impacts of better interrupt handling.

                Linus

18 years agoImport 2.1.80pre4 2.1.80pre4
Linus Torvalds [Fri, 23 Nov 2007 20:14:30 +0000 (15:14 -0500)]
Import 2.1.80pre4

18 years agoImport 2.1.80pre3 2.1.80pre3
Linus Torvalds [Fri, 23 Nov 2007 20:14:29 +0000 (15:14 -0500)]
Import 2.1.80pre3

18 years agoImport 2.1.80pre2 2.1.80pre2
Linus Torvalds [Fri, 23 Nov 2007 20:14:28 +0000 (15:14 -0500)]
Import 2.1.80pre2

18 years agoPre-2.1.80.. 2.1.80pre1
Linus Torvalds [Fri, 23 Nov 2007 20:14:27 +0000 (15:14 -0500)]
Pre-2.1.80..

 I just put a pre-2.1.80 on ftp.kernel.org that should fix the fat-related
problems. The reason I put it there is because I got several patches that
fixed the FAT problems _and_ something else, and they all obviously
clashed with each other so neither part got applied.

 So I'd ask people who sent me patches to maybe re-send the parts of the
patches that are still relevant,

                Linus

18 years agoImport 2.1.79 2.1.79
Linus Torvalds [Fri, 23 Nov 2007 20:14:26 +0000 (15:14 -0500)]
Import 2.1.79

18 years agoImport 2.1.79pre1 2.1.79pre1
Linus Torvalds [Fri, 23 Nov 2007 20:14:24 +0000 (15:14 -0500)]
Import 2.1.79pre1

18 years agoImport 2.1.78 2.1.78
Linus Torvalds [Fri, 23 Nov 2007 20:14:23 +0000 (15:14 -0500)]
Import 2.1.78

18 years agoImport 2.1.78pre3 2.1.78pre3
Linus Torvalds [Fri, 23 Nov 2007 20:14:22 +0000 (15:14 -0500)]
Import 2.1.78pre3

18 years agoImport 2.1.78pre2 2.1.78pre2
Linus Torvalds [Fri, 23 Nov 2007 20:14:21 +0000 (15:14 -0500)]
Import 2.1.78pre2

18 years agoImport 2.1.78pre1 2.1.78pre1
Linus Torvalds [Fri, 23 Nov 2007 20:14:20 +0000 (15:14 -0500)]
Import 2.1.78pre1

18 years agoImport 2.1.77 2.1.77
Linus Torvalds [Fri, 23 Nov 2007 20:14:19 +0000 (15:14 -0500)]
Import 2.1.77

18 years agoImport 2.1.76 2.1.76
Linus Torvalds [Fri, 23 Nov 2007 20:14:18 +0000 (15:14 -0500)]
Import 2.1.76

18 years agoImport 2.1.75 2.1.75
Linus Torvalds [Fri, 23 Nov 2007 20:14:16 +0000 (15:14 -0500)]
Import 2.1.75

18 years agoImport 2.1.74 2.1.74
Linus Torvalds [Fri, 23 Nov 2007 20:14:15 +0000 (15:14 -0500)]
Import 2.1.74

18 years agoImport 2.1.73 2.1.73
Linus Torvalds [Fri, 23 Nov 2007 20:14:14 +0000 (15:14 -0500)]
Import 2.1.73

18 years agoImport 2.1.72 2.1.72
Linus Torvalds [Fri, 23 Nov 2007 20:14:13 +0000 (15:14 -0500)]
Import 2.1.72

18 years agoImport 2.1.71 2.1.71
Linus Torvalds [Fri, 23 Nov 2007 20:14:11 +0000 (15:14 -0500)]
Import 2.1.71

18 years agoImport 2.1.70 2.1.70
Linus Torvalds [Fri, 23 Nov 2007 20:14:10 +0000 (15:14 -0500)]
Import 2.1.70

18 years agoImport 2.1.69 2.1.69
Linus Torvalds [Fri, 23 Nov 2007 20:14:09 +0000 (15:14 -0500)]
Import 2.1.69

18 years agoImport 2.1.68 2.1.68
Linus Torvalds [Fri, 23 Nov 2007 20:14:08 +0000 (15:14 -0500)]
Import 2.1.68

18 years agoImport 2.1.68pre1 2.1.68pre1
Linus Torvalds [Fri, 23 Nov 2007 20:14:07 +0000 (15:14 -0500)]
Import 2.1.68pre1

18 years agoImport 2.1.67 2.1.67
Linus Torvalds [Fri, 23 Nov 2007 20:14:05 +0000 (15:14 -0500)]
Import 2.1.67

18 years agoImport 2.1.66 2.1.66
Linus Torvalds [Fri, 23 Nov 2007 20:14:04 +0000 (15:14 -0500)]
Import 2.1.66

18 years agoImport 2.1.65 2.1.65
Linus Torvalds [Fri, 23 Nov 2007 20:14:03 +0000 (15:14 -0500)]
Import 2.1.65

18 years agoImport 2.1.64 2.1.64
Linus Torvalds [Fri, 23 Nov 2007 20:14:02 +0000 (15:14 -0500)]
Import 2.1.64

18 years agoImport 2.1.63 2.1.63
Linus Torvalds [Fri, 23 Nov 2007 20:14:01 +0000 (15:14 -0500)]
Import 2.1.63

18 years agoImport 2.1.62 2.1.62
Linus Torvalds [Fri, 23 Nov 2007 20:14:00 +0000 (15:14 -0500)]
Import 2.1.62

18 years agoImport 2.1.61 2.1.61
Linus Torvalds [Fri, 23 Nov 2007 20:13:59 +0000 (15:13 -0500)]
Import 2.1.61

18 years agoImport 2.1.60 2.1.60
Linus Torvalds [Fri, 23 Nov 2007 20:13:58 +0000 (15:13 -0500)]
Import 2.1.60

18 years agoImport 2.1.59 2.1.59
Linus Torvalds [Fri, 23 Nov 2007 20:13:57 +0000 (15:13 -0500)]
Import 2.1.59

18 years agoImport 2.1.58 2.1.58
Linus Torvalds [Fri, 23 Nov 2007 20:13:56 +0000 (15:13 -0500)]
Import 2.1.58

18 years agoImport 2.1.57 2.1.57
Linus Torvalds [Fri, 23 Nov 2007 20:13:55 +0000 (15:13 -0500)]
Import 2.1.57

18 years agoImport 2.1.56 2.1.56
Linus Torvalds [Fri, 23 Nov 2007 20:13:54 +0000 (15:13 -0500)]
Import 2.1.56

18 years agoImport 2.1.56pre1 2.1.56pre1
Linus Torvalds [Fri, 23 Nov 2007 20:13:53 +0000 (15:13 -0500)]
Import 2.1.56pre1

18 years agoImport 2.1.55 2.1.55
Linus Torvalds [Fri, 23 Nov 2007 20:13:52 +0000 (15:13 -0500)]
Import 2.1.55

18 years agoImport 2.1.55pre1 2.1.55pre1
Linus Torvalds [Fri, 23 Nov 2007 20:13:51 +0000 (15:13 -0500)]
Import 2.1.55pre1

18 years agoImport 2.1.54 2.1.54
Linus Torvalds [Fri, 23 Nov 2007 20:13:50 +0000 (15:13 -0500)]
Import 2.1.54

18 years agoImport 2.1.53 2.1.53
Linus Torvalds [Fri, 23 Nov 2007 20:13:49 +0000 (15:13 -0500)]
Import 2.1.53

18 years agoImport 2.1.52 2.1.52
Linus Torvalds [Fri, 23 Nov 2007 20:13:48 +0000 (15:13 -0500)]
Import 2.1.52

18 years agoImport 2.1.51 2.1.51
Linus Torvalds [Fri, 23 Nov 2007 20:13:47 +0000 (15:13 -0500)]
Import 2.1.51

18 years agoImport 2.1.51pre1 2.1.51pre1
Linus Torvalds [Fri, 23 Nov 2007 20:13:46 +0000 (15:13 -0500)]
Import 2.1.51pre1

18 years agoImport 2.1.50 2.1.50
Linus Torvalds [Fri, 23 Nov 2007 20:13:45 +0000 (15:13 -0500)]
Import 2.1.50

18 years agoImport 2.1.49 2.1.49
Linus Torvalds [Fri, 23 Nov 2007 20:13:44 +0000 (15:13 -0500)]
Import 2.1.49

18 years agoImport 2.1.49pre1 2.1.49pre1
Linus Torvalds [Fri, 23 Nov 2007 20:13:43 +0000 (15:13 -0500)]
Import 2.1.49pre1

18 years agoImport 2.1.48 2.1.48
Linus Torvalds [Fri, 23 Nov 2007 20:13:43 +0000 (15:13 -0500)]
Import 2.1.48

18 years agoImport 2.1.48pre4 2.1.48pre4
Linus Torvalds [Fri, 23 Nov 2007 20:13:42 +0000 (15:13 -0500)]
Import 2.1.48pre4

18 years agoImport 2.1.48pre3 2.1.48pre3
Linus Torvalds [Fri, 23 Nov 2007 20:13:41 +0000 (15:13 -0500)]
Import 2.1.48pre3

18 years agoImport 2.1.48pre2 2.1.48pre2
Linus Torvalds [Fri, 23 Nov 2007 20:13:39 +0000 (15:13 -0500)]
Import 2.1.48pre2

18 years agoImport 2.1.48pre1 2.1.48pre1
Linus Torvalds [Fri, 23 Nov 2007 20:13:39 +0000 (15:13 -0500)]
Import 2.1.48pre1

18 years agoImport 2.1.47 2.1.47
Linus Torvalds [Fri, 23 Nov 2007 20:13:38 +0000 (15:13 -0500)]
Import 2.1.47

18 years agoImport 2.1.46 2.1.46
Linus Torvalds [Fri, 23 Nov 2007 20:13:37 +0000 (15:13 -0500)]
Import 2.1.46

18 years agoImport 2.1.46pre1 2.1.46pre1
Linus Torvalds [Fri, 23 Nov 2007 20:13:36 +0000 (15:13 -0500)]
Import 2.1.46pre1

18 years agoImport 2.1.45 2.1.45
Linus Torvalds [Fri, 23 Nov 2007 20:13:36 +0000 (15:13 -0500)]
Import 2.1.45

18 years agoImport 2.1.45pre10 2.1.45pre10
Linus Torvalds [Fri, 23 Nov 2007 20:13:35 +0000 (15:13 -0500)]
Import 2.1.45pre10

18 years agoImport 2.1.45pre9 2.1.45pre9
Linus Torvalds [Fri, 23 Nov 2007 20:13:34 +0000 (15:13 -0500)]
Import 2.1.45pre9

18 years agoImport 2.1.45pre8 2.1.45pre8
Linus Torvalds [Fri, 23 Nov 2007 20:13:33 +0000 (15:13 -0500)]
Import 2.1.45pre8

18 years agoImport 2.1.45pre7 2.1.45pre7
Linus Torvalds [Fri, 23 Nov 2007 20:13:32 +0000 (15:13 -0500)]
Import 2.1.45pre7

18 years agoImport 2.1.45pre6 2.1.45pre6
Linus Torvalds [Fri, 23 Nov 2007 20:13:31 +0000 (15:13 -0500)]
Import 2.1.45pre6

18 years agoImport 2.1.45pre5 2.1.45pre5
Linus Torvalds [Fri, 23 Nov 2007 20:13:31 +0000 (15:13 -0500)]
Import 2.1.45pre5

18 years agoImport 2.1.45pre4 2.1.45pre4
Linus Torvalds [Fri, 23 Nov 2007 20:13:30 +0000 (15:13 -0500)]
Import 2.1.45pre4

18 years agoImport 2.1.45pre3 2.1.45pre3
Linus Torvalds [Fri, 23 Nov 2007 20:13:29 +0000 (15:13 -0500)]
Import 2.1.45pre3

18 years agoImport 2.1.45pre2 2.1.45pre2
Linus Torvalds [Fri, 23 Nov 2007 20:13:28 +0000 (15:13 -0500)]
Import 2.1.45pre2

18 years agoImport 2.1.45pre1 2.1.45pre1
Linus Torvalds [Fri, 23 Nov 2007 20:13:28 +0000 (15:13 -0500)]
Import 2.1.45pre1

18 years agoImport 2.1.44 2.1.44
Linus Torvalds [Fri, 23 Nov 2007 20:13:27 +0000 (15:13 -0500)]
Import 2.1.44

18 years agoImport 2.1.44pre3 2.1.44pre3
Linus Torvalds [Fri, 23 Nov 2007 20:13:25 +0000 (15:13 -0500)]
Import 2.1.44pre3

18 years agoImport 2.1.44pre2 2.1.44pre2
Linus Torvalds [Fri, 23 Nov 2007 20:13:24 +0000 (15:13 -0500)]
Import 2.1.44pre2

18 years agoImport 2.1.43 2.1.43
Linus Torvalds [Fri, 23 Nov 2007 20:13:24 +0000 (15:13 -0500)]
Import 2.1.43

18 years agoImport 2.1.43pre1 2.1.43pre1
Linus Torvalds [Fri, 23 Nov 2007 20:13:22 +0000 (15:13 -0500)]
Import 2.1.43pre1

18 years agoImport 2.1.42 2.1.42
Linus Torvalds [Fri, 23 Nov 2007 20:13:21 +0000 (15:13 -0500)]
Import 2.1.42

18 years agoImport 2.1.42pre2 2.1.42pre2
Linus Torvalds [Fri, 23 Nov 2007 20:13:21 +0000 (15:13 -0500)]
Import 2.1.42pre2

18 years agoImport 2.1.42pre1 2.1.42pre1
Linus Torvalds [Fri, 23 Nov 2007 20:13:20 +0000 (15:13 -0500)]
Import 2.1.42pre1

18 years agoImport 2.1.41 2.1.41
Linus Torvalds [Fri, 23 Nov 2007 20:13:19 +0000 (15:13 -0500)]
Import 2.1.41

18 years agoImport 2.1.40 2.1.40
Linus Torvalds [Fri, 23 Nov 2007 20:13:18 +0000 (15:13 -0500)]
Import 2.1.40

18 years agoImport 2.1.39 2.1.39
Linus Torvalds [Fri, 23 Nov 2007 20:13:17 +0000 (15:13 -0500)]
Import 2.1.39