Add initial 7.0 TODO list and list of applicable kernel panics scraped

from Peter Holm's stress test page.
This commit is contained in:
Murray Stokely 2007-09-10 12:26:48 +00:00
parent 26f63df718
commit 663a6a7b70
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/www/; revision=30765
3 changed files with 183 additions and 2 deletions

View file

@ -1,4 +1,4 @@
# $FreeBSD$
# $FreeBSD: www/en/releases/7.0R/Makefile,v 1.1 2007/06/21 14:30:18 hrs Exp $
.if exists(../Makefile.conf)
.include "../Makefile.conf"
@ -7,8 +7,20 @@
.include "../Makefile.inc"
.endif
DOCS= schedule.sgml approvals.sgml
DOCS= todo.sgml schedule.sgml approvals.sgml
FETCHFILE= http://people.freebsd.org/~pho/stress/log/news.rss
FETCHCMD= /usr/bin/fetch
CLEANFILES+= news.rss stress.html
DATA+= docbook.css
news.rss:
${FETCHCMD} ${FETCHFILE}
stress.html: news.rss stress.xsl
${XSLTPROC} stress.xsl news.rss > stress.html
todo.html: stress.html
.include "${WEB_PREFIX}/share/mk/web.site.mk"

View file

@ -0,0 +1,39 @@
<!-- $FreeBSD: www/en/releases/6.2R/stress.xsl,v 1.2 2007/02/18 09:43:41 hrs Exp $ -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cvs="http://www.FreeBSD.org/XML/CVS"
exclude-result-prefixes="rdf cvs"
version="1.0">
<xsl:output
method="html"
indent="no"
encoding="utf-8"/>
<!-- match first element whether we're using namespaces or not -->
<xsl:template match="/*[1]">
<xsl:comment>Generated from XSLT</xsl:comment>
<xsl:choose>
<xsl:when test="channel/item">
<ul>
<xsl:for-each select="channel/item">
<li>
<xsl:element name="a">
<xsl:attribute name="href"><xsl:value-of select="*[local-name()='link']"/></xsl:attribute>
<xsl:value-of select="*[local-name()='title']"/>
</xsl:element>
</li>
</xsl:for-each>
</ul>
</xsl:when>
<xsl:otherwise>
<p>Currently none reported.</p>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>

130
en/releases/7.0R/todo.sgml Normal file
View file

@ -0,0 +1,130 @@
<!DOCTYPE HTML PUBLIC "-//FreeBSD//DTD HTML 4.01 Transitional-Based Extension//EN" [
<!ENTITY base CDATA "../..">
<!ENTITY email 'freebsd-qa'>
<!ENTITY date "$FreeBSD$">
<!ENTITY local.rel "7.0">
<!ENTITY title "FreeBSD 7.0 Open Issues">
<!ENTITY % navinclude.download "INCLUDE">
<!ENTITY % developers SYSTEM "../../developers.sgml"> %developers;
<!-- Status levels -->
<!ENTITY status.na "<font color=green>N/A</font>">
<!ENTITY status.done "<font color=green>Done</font>">
<!ENTITY status.wip "<font color=blue>In&nbsp;progress</font>">
<!ENTITY status.untested "<font color=orange>Needs&nbsp;testing</font>">
<!ENTITY status.new "<font color=red>Not&nbsp;done</font>">
<!ENTITY status.unknown "<font color=red>Unknown</font>">
<!ENTITY status.deferred "<font color=gray>Deferred for future release</font>">
<!ENTITY url.cvsweb "http://www.freebsd.org/cgi/cvsweb.cgi">
<!ENTITY url.mid "http://docs.freebsd.org/cgi/mid.cgi?">
<!ENTITY url.pr "http://www.freebsd.org/cgi/query-pr.cgi?">
<!ENTITY stresstest SYSTEM "./stress.html">
]>
<!--
Changes to this list MUST NOT be committed without approval of the
Release Engineering Team (re@FreeBSD.org) (for general items) or
Documentation Engineering Team (doceng@FreeBSD.org) (for doc-related
items).
-->
<html>
&header;
<p>This is a list of open issues that need to be resolved for FreeBSD
&local.rel;. If you have any updates for this list, please e-mail
re@FreeBSD.org.</p>
<ul>
<li><a href="#major">Major issues</a></li>
<li><a href="#minor">Minor issues</a></li>
<li><a href="#testing">Testing foci</a></li>
<li><a href="#stresstest">Problems Discovered by Kernel Stress Test Suite</a></li>
</ul>
<h3>Major issues for &local.rel;-RELEASE</h3>
<a name="major"></a>
<table class="tblbasic">
<tr class="heading">
<th>Issue</th>
<th>Status</th>
<th>Responsible</th>
<th>Description</th>
</tr>
<tr>
<td>TCP issues</td>
<td>&status.unknown;</td>
<td>&a.silby;</td>
<td></td>
</tr>
</table>
<h3>Minor issues for &local.rel;-RELEASE</h3>
<a name="minor"></a>
<table class="tblbasic">
<tr class="heading">
<th>Issue</th>
<th>Status</th>
<th>Responsible</th>
<th>Description</th>
</tr>
<tr>
<th>sparc64 has a problem building OpenSP so it can't finish a release
build with docs</th>
<th>Open</th>
<th>&status.new;</th>
<th></th>
</tr>
</table>
<h3>Testing foci for &local.rel;-RELEASE</h3>
<a name="testing"></a>
<table class="tblbasic">
<tr class="heading">
<th>Issue</th>
<th>Status</th>
<th>Responsible</th>
<th>Description</th>
</tr>
<tr>
<td>TCP timers</td>
<td>&status.untested;</td>
<td>&a.silby;</td>
<td></td>
</tr>
<tr>
<td>MAC Framework</td>
<td></tD>
<td>&a.rwatson;</td>
<td>A code sync with Mac OS X Leopard for the MAC framework was
was committed.</td>
</tr>
</table>
<h3>Stress Test Panics</h3>
<a name="stresstest"></a>
<p>The system is continuously being subjected to Peter Holm's <a
href="http://www.holm.cc/stress/">Kernel Stress Test Suite</a>. The
following issues have recently been discovered from this test
suite.</p>
&stresstest;
&footer;
</body>
</html>