<feed xmlns='http://www.w3.org/2005/Atom'>
<title>kernel/linux.git, branch v2.6.12-rc5</title>
<subtitle>Linux kernel stable tree (mirror)</subtitle>
<id>https://git.radix-linux.su/kernel/linux.git/atom?h=v2.6.12-rc5</id>
<link rel='self' href='https://git.radix-linux.su/kernel/linux.git/atom?h=v2.6.12-rc5'/>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/'/>
<updated>2005-05-25T03:31:20+00:00</updated>
<entry>
<title>Linux 2.6.12-rc5</title>
<updated>2005-05-25T03:31:20+00:00</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@ppc970.osdl.org</email>
</author>
<published>2005-05-25T03:31:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=2a24ab628aa7b190be32f63dfb6d96f3fb61580a'/>
<id>urn:sha1:2a24ab628aa7b190be32f63dfb6d96f3fb61580a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[PATCH] aic7xxx_osm build fix</title>
<updated>2005-05-25T03:08:14+00:00</updated>
<author>
<name>Andrew Morton</name>
<email>akpm@osdl.org</email>
</author>
<published>2005-05-25T02:31:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=d981289627a7e2d8ef62dfcaa11fb60da68f30c6'/>
<id>urn:sha1:d981289627a7e2d8ef62dfcaa11fb60da68f30c6</id>
<content type='text'>
Fix a c99ism.

Cc: James Bottomley &lt;James.Bottomley@steeleye.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] saa6752hs build fix</title>
<updated>2005-05-25T03:08:13+00:00</updated>
<author>
<name>Andrew Morton</name>
<email>akpm@osdl.org</email>
</author>
<published>2005-05-25T02:31:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=558ac33e094f3a47c74a3a66b19cd3616f183184'/>
<id>urn:sha1:558ac33e094f3a47c74a3a66b19cd3616f183184</id>
<content type='text'>
For older gcc's.

Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] try_to_unmap_cluster() passes out-of-bounds pte to pte_unmap()</title>
<updated>2005-05-25T03:08:13+00:00</updated>
<author>
<name>William Lee Irwin III</name>
<email>wli@holomorphy.com</email>
</author>
<published>2005-05-25T02:31:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=cafdd8ba08935d9b161bb781851dc4c0e6f70427'/>
<id>urn:sha1:cafdd8ba08935d9b161bb781851dc4c0e6f70427</id>
<content type='text'>
try_to_unmap_cluster() does:
        for (pte = pte_offset_map(pmd, address);
                        address &lt; end; pte++, address += PAGE_SIZE) {
		...
	}

	pte_unmap(pte);

It may take a little staring to notice, but pte can actually fall off the
end of the pte page in this iteration, which makes life difficult for
kmap_atomic() and the users not expecting it to BUG().  Of course, we're
somewhat lucky in that arithmetic elsewhere in the function guarantees that
at least one iteration is made, lest this force larger rearrangements to be
made.  This issue and patch also apply to non-mm mainline and with trivial
adjustments, at least two related kernels.

Discovered during internal testing at Oracle.

Signed-off-by: William Irwin &lt;wli@holomorphy.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] sigkill priority fix</title>
<updated>2005-05-25T03:08:13+00:00</updated>
<author>
<name>Kirill Korotaev</name>
<email>dev@sw.ru</email>
</author>
<published>2005-05-25T02:29:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=c33880aaddbbab1ccf36f4457ed1090621f2e39a'/>
<id>urn:sha1:c33880aaddbbab1ccf36f4457ed1090621f2e39a</id>
<content type='text'>
If SIGKILL does not have priority, we cannot instantly kill task before it
makes some unexpected job.  It can be critical, but we were unable to
reproduce this easily until Heiko Carstens &lt;Heiko.Carstens@de.ibm.com&gt;
reported this problem on LKML.

Signed-Off-By: Kirill Korotaev &lt;dev@sw.ru&gt;
Signed-Off-By: Alexey Kuznetsov &lt;kuznet@ms2.inr.ac.ru&gt;
Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] voyager_smp.c static inline fix</title>
<updated>2005-05-25T03:08:12+00:00</updated>
<author>
<name>Dominik Hackl</name>
<email>dominik@hackl.dhs.org</email>
</author>
<published>2005-05-25T02:29:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=6431e6a28e8df423e1ebcda065e9ff086198d2c6'/>
<id>urn:sha1:6431e6a28e8df423e1ebcda065e9ff086198d2c6</id>
<content type='text'>
This patch fixes a compile bug by moving a static inline function to the
right place.  The body of a static inline function has to be declared
before the use of this function.

Signed-off-by: Dominik Hackl &lt;dominik@hackl.dhs.org&gt;
Cc: James Bottomley &lt;James.Bottomley@steeleye.com&gt;
Signed-off-by: Andrew Morton &lt;akpm@osdl.org&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] Cleanup DEFINE_WAIT</title>
<updated>2005-05-25T00:05:20+00:00</updated>
<author>
<name>blaisorblade@yahoo.it</name>
<email>blaisorblade@yahoo.it</email>
</author>
<published>2005-05-24T23:31:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=7e43c84e3e5423ae72ae31e4cd7bbccfd1605194'/>
<id>urn:sha1:7e43c84e3e5423ae72ae31e4cd7bbccfd1605194</id>
<content type='text'>
Use LIST_HEAD_INIT rather than doing it by hand in DEFINE_WAIT.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso &lt;blaisorblade@yahoo.it&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>[PATCH] driver core: restore event order for device_add()</title>
<updated>2005-05-23T23:08:12+00:00</updated>
<author>
<name>Kay Sievers</name>
<email>kay.sievers@vrfy.org</email>
</author>
<published>2005-05-23T22:50:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=187a1a94d629621d1471b42308e63573b1150773'/>
<id>urn:sha1:187a1a94d629621d1471b42308e63573b1150773</id>
<content type='text'>
As a result of the split of the kobject-registration and the
corresponding hotplug event, the order of events for device_add() has
changed. This restores the old order, cause it confused some userspace
applications.

Signed-off-by: Kay Sievers &lt;kay.sievers@vrfy.org&gt;
Signed-off-by: Greg Kroah-Hartman &lt;gregkh@suse.de&gt;
Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
</content>
</entry>
<entry>
<title>Merge of rsync://rsync.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git/</title>
<updated>2005-05-23T21:57:14+00:00</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@ppc970.osdl.org</email>
</author>
<published>2005-05-23T21:57:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=ab3fc403633c38aef5ef48844f8e5dbfee7c34f8'/>
<id>urn:sha1:ab3fc403633c38aef5ef48844f8e5dbfee7c34f8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[TG3]: Update driver version.</title>
<updated>2005-05-23T21:00:44+00:00</updated>
<author>
<name>David S. Miller</name>
<email>davem@davemloft.net</email>
</author>
<published>2005-05-23T21:00:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/kernel/linux.git/commit/?id=d1faeaeb95a05275cf0c5b51b88f2fa833434625'/>
<id>urn:sha1:d1faeaeb95a05275cf0c5b51b88f2fa833434625</id>
<content type='text'>
Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;
</content>
</entry>
</feed>
