<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/sys/alpha, branch release/5.2.0</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F5.2.0</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F5.2.0'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2003-12-07T23:52:54Z</updated>
<entry>
<title>Don't build a kernel.debug for the release.</title>
<updated>2003-12-07T23:52:54Z</updated>
<author>
<name>Scott Long</name>
<email>scottl@FreeBSD.org</email>
</author>
<published>2003-12-07T23:52:54Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=4b53300c0c5f64aac70293bb712212336c32739e'/>
<id>urn:sha1:4b53300c0c5f64aac70293bb712212336c32739e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Disable WITNESS, INVARIANTS, and DDB for our Tier-1 platforms for the release</title>
<updated>2003-12-07T04:10:47Z</updated>
<author>
<name>Scott Long</name>
<email>scottl@FreeBSD.org</email>
</author>
<published>2003-12-07T04:10:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=303048382cecbf47436240129cdab4ae8d66af6b'/>
<id>urn:sha1:303048382cecbf47436240129cdab4ae8d66af6b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Since the fdc driver can't autodetect the drive capacity on the Alpha,</title>
<updated>2003-12-05T00:57:11Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2003-12-05T00:57:11Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=bcfb4b30a767a650acccc3451e8f52b22ea3d416'/>
<id>urn:sha1:bcfb4b30a767a650acccc3451e8f52b22ea3d416</id>
<content type='text'>
give it a hint that fd0 is a 1440 kB drive.

PR:		alpha/59026
Approved by:	re (murray)
</content>
</entry>
<entry>
<title>Fix all users of mp_maxid to use the same semantics, namely:</title>
<updated>2003-12-03T14:57:26Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2003-12-03T14:57:26Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=b6c71225a9d1850a6cd017cc7792d0a00d9e1e6c'/>
<id>urn:sha1:b6c71225a9d1850a6cd017cc7792d0a00d9e1e6c</id>
<content type='text'>
1) mp_maxid is a valid FreeBSD CPU ID in the range 0 .. MAXCPU - 1.
2) For all active CPUs in the system, PCPU_GET(cpuid) &lt;= mp_maxid.

Approved by:	re (scottl)
Tested on:	i386, amd64, alpha
</content>
</entry>
<entry>
<title> - Set mp_maxid in a way that is consistent with every other arch.  It is</title>
<updated>2003-11-30T22:08:24Z</updated>
<author>
<name>Jeff Roberson</name>
<email>jeff@FreeBSD.org</email>
</author>
<published>2003-11-30T22:08:24Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=6315839163685ab2af46c2427ed80712694c5000'/>
<id>urn:sha1:6315839163685ab2af46c2427ed80712694c5000</id>
<content type='text'>
   one more than the last valid 'cpuid'.

Approved by:	re (rwatson)
</content>
</entry>
<entry>
<title> - In db_stack_trace_cmd() bail out if we get confused about the stack.</title>
<updated>2003-11-29T11:57:02Z</updated>
<author>
<name>Jeff Roberson</name>
<email>jeff@FreeBSD.org</email>
</author>
<published>2003-11-29T11:57:02Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=2d5d22656dc4a599eb1ecdcedf28805423d061eb'/>
<id>urn:sha1:2d5d22656dc4a599eb1ecdcedf28805423d061eb</id>
<content type='text'>
Tested by:	kkenn
Approved by:	re (scottl)
</content>
</entry>
<entry>
<title>- Split cpu_mp_probe() into two parts.  cpu_mp_setmaxid() is still called</title>
<updated>2003-11-21T22:23:26Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2003-11-21T22:23:26Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=798a45964dd4d377a46a81cbd663d2dbb307bd27'/>
<id>urn:sha1:798a45964dd4d377a46a81cbd663d2dbb307bd27</id>
<content type='text'>
  very early (SI_SUB_TUNABLES - 1) and is responsible for setting mp_maxid.
  cpu_mp_probe() is now called at SI_SUB_CPU and determines if SMP is
  actually present and sets mp_ncpus and all_cpus.  Splitting these up
  allows an architecture to probe CPUs later than SI_SUB_TUNABLES by just
  setting mp_maxid to MAXCPU in cpu_mp_setmaxid().  This could allow the
  CPU probing code to live in a module, for example, since modules
  sysinit's in modules cannot be invoked prior to SI_SUB_KLD.  This is
  needed to re-enable the ACPI module on i386.
- For the alpha SMP probing code, use LOCATE_PCS() instead of duplicating
  its contents in a few places.  Also, add a smp_cpu_enabled() function
  to avoid duplicating some code.  There is room for further code
  reduction later since much of this code is also present in cpu_mp_start().
- All archs besides i386 still set mp_maxid to the same values they set it
  to before this change.  i386 now sets mp_maxid to MAXCPU.

Tested on:	alpha, amd64, i386, ia64, sparc64
Approved by:	re (scottl)
</content>
</entry>
<entry>
<title>Widen the enable/disable helper function's argument in line with the</title>
<updated>2003-11-17T06:10:15Z</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>2003-11-17T06:10:15Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=0bfbe7b935a34142a312ab0bfe97bfc5b65bfd16'/>
<id>urn:sha1:0bfbe7b935a34142a312ab0bfe97bfc5b65bfd16</id>
<content type='text'>
ithread_create() changes etc.  This should be mostly a NOP.
</content>
</entry>
<entry>
<title> - Remove unnecessary synchronization from sf_buf_init().  (There is only</title>
<updated>2003-11-16T23:40:06Z</updated>
<author>
<name>Alan Cox</name>
<email>alc@FreeBSD.org</email>
</author>
<published>2003-11-16T23:40:06Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=0ec3db3072f7eeef5fb09943700cf747c7ee2569'/>
<id>urn:sha1:0ec3db3072f7eeef5fb09943700cf747c7ee2569</id>
<content type='text'>
   one active CPU when sf_buf_init() is performed.)
</content>
</entry>
<entry>
<title>Fix build on alpha</title>
<updated>2003-11-16T21:53:05Z</updated>
<author>
<name>Kris Kennaway</name>
<email>kris@FreeBSD.org</email>
</author>
<published>2003-11-16T21:53:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=d5688560bf4be51d588fba46671abbd69f69591e'/>
<id>urn:sha1:d5688560bf4be51d588fba46671abbd69f69591e</id>
<content type='text'>
Pointy hat to:	alfred
</content>
</entry>
</feed>
