<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/syslinux.git/core/fs, branch thread</title>
<subtitle>git.kernel.org: pub/scm/boot/syslinux/syslinux.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/'/>
<entry>
<title>core: pxe: don't confuse index and data when searching...</title>
<updated>2009-09-04T00:19:36+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2009-09-04T00:18:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=fde3298c7bc2b6d90ffc104219f2cb116f71a315'/>
<id>fde3298c7bc2b6d90ffc104219f2cb116f71a315</id>
<content type='text'>
Don't confuse the index and data when searching the PCI ID table for
special idle handling.

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Don't confuse the index and data when searching the PCI ID table for
special idle handling.

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>core: pxe: create a single tftp_error() function, send ERROR on close</title>
<updated>2009-09-03T04:09:33+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2009-09-03T04:09:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=b5e5e33602d563cb792083e95b13cbd95136e7e5'/>
<id>b5e5e33602d563cb792083e95b13cbd95136e7e5</id>
<content type='text'>
Create a single function to generate a TFTP error.  We really should
be better about distinguishing different error conditions.

Send an ERROR packet if we're closing a file which still has an open
connection.

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Create a single function to generate a TFTP error.  We really should
be better about distinguishing different error conditions.

Send an ERROR packet if we're closing a file which still has an open
connection.

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>core: use jiffies instead of BIOS_timer</title>
<updated>2009-09-03T00:55:56+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2009-09-03T00:55:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=733ec3ad95cf1df199cd0a8ec9b8352a6942e059'/>
<id>733ec3ad95cf1df199cd0a8ec9b8352a6942e059</id>
<content type='text'>
Use jiffies instead of BIOS_timer.  In 16-bit code we can use the low
16 bits of __jiffies when appropriate, since we have proper 2's
complement wraparound at all times.

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use jiffies instead of BIOS_timer.  In 16-bit code we can use the low
16 bits of __jiffies when appropriate, since we have proper 2's
complement wraparound at all times.

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>core: pxe: fix the behavior on non-received RRQ reply</title>
<updated>2009-09-03T00:20:48+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2009-09-03T00:20:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=33a3c79d6fe333b1d61b29a64fc045ddde89af22'/>
<id>33a3c79d6fe333b1d61b29a64fc045ddde89af22</id>
<content type='text'>
Fix the behavior when we don't immediately get a valid reply to an RRQ
packet.  In particular, we would interpret what was previously in the
buffer as the requested data, whereas in general it hadn't even been
written to.

Reported-by: Sebastian Herbszt &lt;herbszt@gmx.de&gt;
Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix the behavior when we don't immediately get a valid reply to an RRQ
packet.  In particular, we would interpret what was previously in the
buffer as the requested data, whereas in general it hadn't even been
written to.

Reported-by: Sebastian Herbszt &lt;herbszt@gmx.de&gt;
Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>core: pxe: use FAR_PTR() macro where appropriate</title>
<updated>2009-09-02T00:13:41+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2009-09-02T00:13:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=25fb8ebda235fad14d64949180405877a3a394df'/>
<id>25fb8ebda235fad14d64949180405877a3a394df</id>
<content type='text'>
Use the FAR_PTR() macro to convert a pointer in lowmem to SEG:OFFS
format as unit.

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use the FAR_PTR() macro to convert a pointer in lowmem to SEG:OFFS
format as unit.

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>core: pxe: remove vestigial dnsresolv.inc</title>
<updated>2009-09-02T00:10:07+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2009-09-02T00:08:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=4ef0e7caa56701bd453baa4e4e6542ee4523cf09'/>
<id>4ef0e7caa56701bd453baa4e4e6542ee4523cf09</id>
<content type='text'>
Remove dnsresolv.inc, which was already unused except for a couple of
buffer declarations.  Move those buffers to regular C variables.

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove dnsresolv.inc, which was already unused except for a couple of
buffer declarations.  Move those buffers to regular C variables.

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>core: pxe: port the PXE idle function to C</title>
<updated>2009-09-01T23:59:46+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2009-09-01T23:58:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=b381542a3f987dfe33cbb635beee214efc2de642'/>
<id>b381542a3f987dfe33cbb635beee214efc2de642</id>
<content type='text'>
Port the PXE idle function to C; make the idle hook a protected-mode
call.

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Port the PXE idle function to C; make the idle hook a protected-mode
call.

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>core: booleanize the return value from *_load_config()</title>
<updated>2009-08-30T16:46:45+00:00</updated>
<author>
<name>H. Peter Anvin</name>
<email>hpa@zytor.com</email>
</author>
<published>2009-08-30T16:46:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=0396e62e734b8d919f395adfe09d0046b840a823'/>
<id>0396e62e734b8d919f395adfe09d0046b840a823</id>
<content type='text'>
The *_load_config() file is specific to each filesystem, and
documented to return 0 or 1.  Make sure the return value actually is
zero or one.

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The *_load_config() file is specific to each filesystem, and
documented to return 0 or 1.  Make sure the return value actually is
zero or one.

Signed-off-by: H. Peter Anvin &lt;hpa@zytor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Core:pxelinux: fix the config file loading when we got a DHCP option</title>
<updated>2009-08-30T22:22:26+00:00</updated>
<author>
<name>Liu Aleaxander</name>
<email>Aleaxander@gmail.com</email>
</author>
<published>2009-08-30T22:22:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=53793f217eef16ac53000730fa364efb3b3f4a7a'/>
<id>53793f217eef16ac53000730fa364efb3b3f4a7a</id>
<content type='text'>
I knew what the DHCP option is now.

Signed-off-by: Liu Aleaxander &lt;Aleaxander@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I knew what the DHCP option is now.

Signed-off-by: Liu Aleaxander &lt;Aleaxander@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Core: get rid of passing com32sys_t structure as parameter in PMode</title>
<updated>2009-08-30T21:51:38+00:00</updated>
<author>
<name>Liu Aleaxander</name>
<email>Aleaxander@gmail.com</email>
</author>
<published>2009-08-30T21:51:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/syslinux.git/commit/?id=8b584217d5b18b7737c344bfb45570af1379da24'/>
<id>8b584217d5b18b7737c344bfb45570af1379da24</id>
<content type='text'>
Well, this molstly be about xxx_load_config function, with function type changed.
The new load_config function will return 1 if failed, or 0 if successed.

Signed-off-by: Liu Aleaxander &lt;Aleaxander@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Well, this molstly be about xxx_load_config function, with function type changed.
The new load_config function will return 1 if failed, or 0 if successed.

Signed-off-by: Liu Aleaxander &lt;Aleaxander@gmail.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
