<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/include, branch v2.6.16.38</title>
<subtitle>Linux kernel source tree</subtitle>
<id>https://git.amat.us/linux/atom/include?h=v2.6.16.38</id>
<link rel='self' href='https://git.amat.us/linux/atom/include?h=v2.6.16.38'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/'/>
<updated>2007-01-09T02:36:59Z</updated>
<entry>
<title>x86_64: re-add a newline to RESTORE_CONTEXT</title>
<updated>2007-01-09T02:36:59Z</updated>
<author>
<name>Adrian Bunk</name>
<email>bunk@stusta.de</email>
</author>
<published>2007-01-09T02:36:59Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=e02612a14b2b714e9d231d14c91e729f0f168299'/>
<id>urn:sha1:e02612a14b2b714e9d231d14c91e729f0f168299</id>
<content type='text'>
RESTORE_CONTEXT lost a newline:
http://www.mail-archive.com/kgdb-bugreport@lists.sourceforge.net/msg00559.html

Reported by Steven M. Christey.

Signed-off-by: Adrian Bunk &lt;bunk@stusta.de&gt;
</content>
</entry>
<entry>
<title>PCI: irq: irq and pci_ids patch for Intel ICH9</title>
<updated>2007-01-09T02:23:31Z</updated>
<author>
<name>Jason Gaston</name>
<email>jason.d.gaston@intel.com</email>
</author>
<published>2007-01-06T00:15:36Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=5f943409cec633c81d506f43b4818e5f89b16d4e'/>
<id>urn:sha1:5f943409cec633c81d506f43b4818e5f89b16d4e</id>
<content type='text'>
This updated patch adds the Intel ICH9 LPC and SMBus Controller DID's.

Signed-off-by: Jason Gaston &lt;jason.d.gaston@intel.com&gt;
Signed-off-by: Adrian Bunk &lt;bunk@stusta.de&gt;
</content>
</entry>
<entry>
<title>x86_64: Don't leak NT bit into next task (CVE-2006-5755)</title>
<updated>2007-01-09T02:23:30Z</updated>
<author>
<name>Andi Kleen</name>
<email>ak@suse.de</email>
</author>
<published>2007-01-08T21:44:07Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=493fa112a845d9ea5d24d429b0142090758f941b'/>
<id>urn:sha1:493fa112a845d9ea5d24d429b0142090758f941b</id>
<content type='text'>
SYSENTER can cause a NT to be set which might cause crashes on the IRET
in the next task.

Following similar i386 patch from Linus.

Backport to 2.6.16 by Chuck Ebbert &lt;76306.1226@compuserve.com&gt;
[Changed 'set_debugreg' to the older 'set_debug' in setup64.c
and added raw_local_save_flags() from 2.6.19 to system.h]

Signed-off-by: Andi Kleen &lt;ak@suse.de&gt;
Signed-off-by: Adrian Bunk &lt;bunk@stusta.de&gt;
</content>
</entry>
<entry>
<title>x86_64: fix ia32 syscall count</title>
<updated>2007-01-09T02:23:30Z</updated>
<author>
<name>Chuck Ebbert</name>
<email>76306.1226@compuserve.com</email>
</author>
<published>2007-01-04T22:01:18Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=be7b264ae676589398f8bff7ea53b01851f17be2'/>
<id>urn:sha1:be7b264ae676589398f8bff7ea53b01851f17be2</id>
<content type='text'>
Signed-off-by: Chuck Ebbert &lt;76306.1226@compuserve.com&gt;
Signed-off-by: Adrian Bunk &lt;bunk@stusta.de&gt;
</content>
</entry>
<entry>
<title>i386: save/restore eflags in context switch (CVE-2006-5173)</title>
<updated>2007-01-04T22:23:27Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@osdl.org</email>
</author>
<published>2007-01-04T22:23:27Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=09d9056ce65466da2a4634c62fcfecfa70fc9605'/>
<id>urn:sha1:09d9056ce65466da2a4634c62fcfecfa70fc9605</id>
<content type='text'>
(And reset it on new thread creation)

It turns out that eflags is important to save and restore not just
because of iopl, but due to the magic bits like the NT bit, which we
don't want leaking between different threads.

Backported to 2.6.16 by Chuck Ebbert &lt;76306.1226@compuserve.com&gt;
[Backport consisted of removing the CFI annotations.]

Signed-off-by: Linus Torvalds &lt;torvalds@osdl.org&gt;
Signed-off-by: Adrian Bunk &lt;bunk@stusta.de&gt;
</content>
</entry>
<entry>
<title>bridge-netfilter: don't overwrite memory outside of skb</title>
<updated>2006-12-18T19:51:43Z</updated>
<author>
<name>Stephen Hemminger</name>
<email>shemminger@osdl.org</email>
</author>
<published>2006-12-18T19:51:43Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=d0354e3ba19cdf9acc2ca89bbb59b1e6292a4f44'/>
<id>urn:sha1:d0354e3ba19cdf9acc2ca89bbb59b1e6292a4f44</id>
<content type='text'>
The bridge netfilter code needs to check for space at the
front of the skb before overwriting; otherwise if skb from
device doesn't have headroom, then it will cause random
memory corruption.

Signed-off-by: Stephen Hemminger &lt;shemminger@osdl.org&gt;
Signed-off-by: Adrian Bunk &lt;bunk@stusta.de&gt;
</content>
</entry>
<entry>
<title>pci_ids.h: Add NVIDIA PCI ID</title>
<updated>2006-12-14T22:23:11Z</updated>
<author>
<name>Peer Chen</name>
<email>pchen@nvidia.com</email>
</author>
<published>2006-12-14T22:23:11Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=d84a90e3ce0840bfbb3a8313abe17f8ecb02c226'/>
<id>urn:sha1:d84a90e3ce0840bfbb3a8313abe17f8ecb02c226</id>
<content type='text'>
Signed-off-by: Adrian Bunk &lt;bunk@stusta.de&gt;
</content>
</entry>
<entry>
<title>amd74xx.c: add some NVIDIA chipset IDs</title>
<updated>2006-12-14T22:21:30Z</updated>
<author>
<name>Randy Dunlap</name>
<email>randy.dunlap@oracle.com</email>
</author>
<published>2006-12-14T22:21:30Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=88c9c162f23bb7bc565311dcc9ea401ad6138dc8'/>
<id>urn:sha1:88c9c162f23bb7bc565311dcc9ea401ad6138dc8</id>
<content type='text'>
Add some nVidia chipset ID's support.

Signed-off-by: Adrian Bunk &lt;bunk@stusta.de&gt;
</content>
</entry>
<entry>
<title>sata_nv/amd74xx: Add MCP61 support</title>
<updated>2006-12-14T22:18:27Z</updated>
<author>
<name>Andrew Chew</name>
<email>achew@nvidia.com</email>
</author>
<published>2006-12-14T22:18:27Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=2633840dae17c52bee3ea29d43e49b1d70347184'/>
<id>urn:sha1:2633840dae17c52bee3ea29d43e49b1d70347184</id>
<content type='text'>
Added MCP61 support to sata_nv and amd74xx.

Signed-off-by: Jeff Garzik &lt;jeff@garzik.org&gt;
Signed-off-by: Adrian Bunk &lt;bunk@stusta.de&gt;
</content>
</entry>
<entry>
<title>PCI: Unhide the SMBus on Asus PU-DLS</title>
<updated>2006-12-08T15:53:49Z</updated>
<author>
<name>Jean Delvare</name>
<email>khali@linux-fr.org</email>
</author>
<published>2006-12-06T19:18:09Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/linux/commit/?id=197ee54e2400c6f891e28fbfcd014d456c1ac519'/>
<id>urn:sha1:197ee54e2400c6f891e28fbfcd014d456c1ac519</id>
<content type='text'>
Unhide the SMBus controller on the Asus PU-DLS board.
This fixes bug #6763.

Signed-off-by: Jean Delvare &lt;khali@linux-fr.org&gt;
Signed-off-by: Adrian Bunk &lt;bunk@stusta.de&gt;
</content>
</entry>
</feed>
