Link [ NetBSD | NetBSD OpenGrok source search | PR fulltext-search | Summary of daily snapshot builds | history of daily build result | pkgsrc commit viewer ]


   
        usage: [branch:branch] [user:user] [path@revision] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN sys/arch/arm, if_wm.c@1.234 )




switch to index mode

recent branches: MAIN (4h)  netbsd-8 (5d)  netbsd-10 (5d)  netbsd-9 (11d)  thorpej-ifq (175d)  thorpej-altq-separation (178d) 

2024-05-10 07:49:53 UTC Now

2010-05-19 17:57:42 UTC MAIN commitmail json YAML

Do not call zfs_init and zfs_fini directly they will be called by vfs routines.

(haad)

2010-05-19 17:51:00 UTC MAIN commitmail json YAML

Do not initialize space map cv twice.

(haad)

2010-05-19 15:05:58 UTC MAIN commitmail json YAML

2010-05-19 15:04:51 UTC MAIN commitmail json YAML

Updated Synology extclk from latest Linux/Synology source.

(phx)

2010-05-19 13:41:39 UTC MAIN commitmail json YAML

microtime(9) stores struct timeval.  bintime(9) stores struct bintime.

(tsutsui)

2010-05-19 13:20:32 UTC MAIN commitmail json YAML

* document VOP_DELETEEXTATTR
* remove "vector element" from summary table:
  1) deleteextattr caused problems for 80col rendering
  2) it's not correct on NetBSD, we use the VOFFSET instead (!)

(pooka)

2010-05-19 12:50:49 UTC MAIN commitmail json YAML

rename the allow and deny files to match the documentation.

(christos)

2010-05-19 12:16:45 UTC MAIN commitmail json YAML

remove three years out-of-date comment

(pooka)

2010-05-19 08:02:46 UTC MAIN commitmail json YAML

Continue the discussion w.r.t. SIGEV_THREAD by nothing that pthread_join(3)
should be out of the question and that thread stack cannot be recovered.

(jruoho)

2010-05-19 06:59:44 UTC MAIN commitmail json YAML

2010-05-19 06:44:52 UTC MAIN commitmail json YAML

Refer to sigevent(3).

(jruoho)

2010-05-19 06:35:20 UTC MAIN commitmail json YAML

Remove the paragraph about the used notification mechanism. Instead,
reference sigevent(3). Clarify the file offset discussion.

(jruoho)

2010-05-19 06:28:53 UTC MAIN commitmail json YAML

Add sigevent(3), a manual page that describes the struct sigevent used by
the POSIX real time functions and timers.

XXX: (a) Needs to be modified once real time signals are supported.
(b) Could use an example.

(jruoho)

2010-05-19 02:50:16 UTC MAIN commitmail json YAML

One more reason not to use DSA keys:

The DSA algorithm seems to require a digest value which is 20 bytes
long, which kind of implies SHA-1.

If we have a DSA signature, use SHA-1 as a hash algorithm, for backwards
compatibility. RSA signatures continue to use SHA256 by default, although
this can be given as an argument, if desired.

This fixes DSA signatures with netpgp:

% netpgp --sign --userid d4a643c5 a
pub 1024/DSA 8222c3ecd4a643c5 2010-05-19 [EXPIRES 2013-05-18]
Key fingerprint: 3e4a 5df4 033b 2333 219b 1afd 8222 c3ec d4a6 43c5
uid              Alistair Crooks (DSA TEST KEY - DO NOT USE) <agc@netbsd.org>
sub 1024/DSA 8222c3ecd4a643c5 2010-05-19 [EXPIRES 2013-05-18]
netpgp passphrase:
% netpgp --verify a.gpg
Good signature for a.gpg made Tue May 18 05:41:25 2010
using DSA key 8222c3ecd4a643c5
pub 1024/DSA 8222c3ecd4a643c5 2010-05-19 [EXPIRES 2013-05-18]
Key fingerprint: 3e4a 5df4 033b 2333 219b 1afd 8222 c3ec d4a6 43c5
uid              Alistair Crooks (DSA TEST KEY - DO NOT USE) <agc@netbsd.org>
sub 1024/DSA 8222c3ecd4a643c5 2010-05-19 [EXPIRES 2013-05-18]
%

(agc)

2010-05-18 23:34:40 UTC MAIN commitmail json YAML

Add gpt(8) and sort SEE ALSO (case insensitively). Bump date.

(wiz)

2010-05-18 23:33:03 UTC MAIN commitmail json YAML

Mention that dkctl(8) does not modify on-disk data, and add xrefs to
fdisk(8) and gpt(8). Bump date.

(wiz)

2010-05-18 21:49:52 UTC MAIN commitmail json YAML

- The new cron keeps time internally as localtime. Revert to previous behavior
  of keeping UTC, and handle timezones the way we handled them before (CRON_TZ).
  The old behavior can be selected with defining CRON_LOCALTIME.
- Provide functions to pretty-print crontab entries.

(christos)

2010-05-18 21:47:43 UTC MAIN commitmail json YAML

Forgot to commit this:
Bring back the default to allow any user to install crontabs.

(christos)

2010-05-18 20:18:18 UTC MAIN commitmail json YAML

2010-05-18 19:51:43 UTC matt-nb5-mips64 commitmail json YAML

configure com1 and make it attach correctly
note that config loc 'mult' is assumed to be 4, and so no need to specify

(cliff)

2010-05-18 18:05:52 UTC MAIN commitmail json YAML

Split "file system" and fix a typo.

(wiz)

2010-05-18 18:02:32 UTC MAIN commitmail json YAML

Slight wording improvement.

(wiz)

2010-05-18 16:30:22 UTC MAIN commitmail json YAML

2010-05-18 16:29:36 UTC MAIN commitmail json YAML

Add uniprocessor versions of mutex/rw/cv.  They work only on virtual
unicpu configurations (i.e. RUMP_NCPU==1), but are massively faster
than the multiprocessor versions since the fast path does not have
to perform any cache coherent operations.  _Applications_ with
lock-happy kernel paths, i.e. _not_ lock microbenchmarks, measure
up to tens of percents speedup on my Core2 Duo.  Every globally
atomic state required by normal locks/atomic ops implies a hideous
speed penalty even for the fast path.

While this requires a unicpu configuration, it should be noted that
we are talking about a virtual unicpu configuration.  The host can
have as many processors as it desires, and the speed benefit of
virtual unicpu is still there.  It's pretty obvious that in terms
of scalability simple workload partitioning and replication into
multiple kernels wins hands down over complicated locking or
locklessing algorithms which depend on globally atomic state.

(pooka)

2010-05-18 15:16:10 UTC MAIN commitmail json YAML

2010-05-18 15:12:19 UTC MAIN commitmail json YAML

Move routines related to kernel locking and scheduling from
locks.c to klock.c.

No functional change.

(pooka)

2010-05-18 15:10:41 UTC MAIN commitmail json YAML

Add support for DIOCCACHESYNC ioctl for dm devices. Add new sync function
pointer to dm_target_t because that is the only part of dm which know real
block device. disk_ioctl_switch parses whole device table and for every
entry it calls particular sync routine which propagates DIOCCACHESYNC
to real disk.

While I was here implement some KNF fixes and remove unneeded symbols from
dm.h.

Problem reported on port-xen@ by Hugo Silva.

(haad)

2010-05-18 15:07:50 UTC MAIN commitmail json YAML

Recognize a network boot device by its PCI tag, even when it is not directly
attached to a PCI bus, but to a controller chip (e.g. sk(4) on skc(4)).
Extended BTINFO_NET to usa a PCI tag as well, now since it works.

(phx)

2010-05-18 15:01:17 UTC MAIN commitmail json YAML

Fix typo in comment.

(haad)

2010-05-18 14:58:42 UTC MAIN commitmail json YAML

Make it possible to use the scheduler lock as the rumpuser condvar
interlock.  This is applicable in cases where the actual interlock
is the CPU the currently running thread is scheduled on.  Borrowing
the scheduler lock as the mutex mandated by pthread_cond_wait()
does away with need to have an additional mutex.  This both optimizes
runtime execution and simplifies code, as the extra lock typically
lead to quite some trickeries to avoid the dungeon collapsing due
to zaps from the wand of deadlock.

(pooka)

2010-05-18 14:32:39 UTC MAIN commitmail json YAML

Set Synology extclk from 33.333333MHz to 33.164526MHz, which reduces the
error in the mftb timer from 5% to 0.002%.
The console port for QNAP and STORCENTER is 0x4500, not 0x4600.

(phx)

2010-05-18 11:20:13 UTC MAIN commitmail json YAML

Macros, not functions.

(jruoho)

2010-05-18 10:41:30 UTC MAIN commitmail json YAML

Synology PCI fixup, submitted by Toru Nishimura.

(phx)

2010-05-18 09:10:03 UTC MAIN commitmail json YAML

2010-05-18 09:07:38 UTC MAIN commitmail json YAML

Describe also the timespec() family of macros in timeradd(3).

(jruoho)

2010-05-18 07:31:15 UTC MAIN commitmail json YAML

2010-05-18 07:14:18 UTC MAIN commitmail json YAML

Refer to timeval(3) and only describe the legacy struct timezone here.

Improve markup.

(jruoho)

2010-05-18 07:04:27 UTC MAIN commitmail json YAML

Add an introductory example.

(jruoho)

2010-05-18 06:31:17 UTC MAIN commitmail json YAML

2010-05-18 06:05:08 UTC MAIN commitmail json YAML

Note timeval(9). Add %D to the .Rs/.Re.

(jruoho)

2010-05-18 05:57:08 UTC MAIN commitmail json YAML

Note that struct bintime is described in timecounter(9). Improve wording.

(jruoho)

2010-05-18 04:30:16 UTC MAIN commitmail json YAML

move the mutex_init() for ci_ctx_lock inside cpu_attach() so that
we don't try to mutex_init() before lockdebug is available.

fixes LOCKDEBUG crashes at startup (for USII systems.)

(mrg)

2010-05-17 23:09:52 UTC MAIN commitmail json YAML

Use wput_utf8() to improve conversion of UTF-16 GPT partition names to UTF-8.
Drop static CRC32 function in favor of the one from libkern.

(jakllsch)

2010-05-17 22:52:17 UTC MAIN commitmail json YAML

Excluded KUROBOX from GENERIC.NAS because console is on a different port.
Add INET6 option to GENERIC(.NAS).
Build KUROBOX kernel together with GENERIC and GENERIC.NAS.
Patch submitted by Toru Nishimura.

(phx)

2010-05-17 20:32:09 UTC MAIN commitmail json YAML

Due previous, remove STANDARDS.

(jruoho)

2010-05-17 20:25:19 UTC MAIN commitmail json YAML

2010-05-17 20:18:30 UTC MAIN commitmail json YAML

2010-05-17 19:22:31 UTC MAIN commitmail json YAML

Reference only aio(3) in SEE ALSO as it is the central placeholder. Note
timespec(3). Markup: -width Er (not -width Dv), .Dv NULL (not null), etc.

(jruoho)

2010-05-17 19:04:55 UTC MAIN commitmail json YAML

Fix a typo of a typo, and use .Sq in couple of places.

(jruoho)

2010-05-17 17:55:49 UTC MAIN commitmail json YAML

Writing, rereading, writing, reareading, and yet still one typo.

(jruoho)

2010-05-17 17:50:08 UTC MAIN commitmail json YAML

2010-05-17 17:48:59 UTC MAIN commitmail json YAML

Set correct extclk for KuroBox, which is not 33MHz.
Patch submitted by Toru Nishimura.

(phx)

2010-05-17 17:15:42 UTC MAIN commitmail json YAML

Add an introductory manual page for the POSIX asynchronous I/O, aio(3).

This is hopefully enough for a reader to get started with the aio.

ok rmind@

(jruoho)

2010-05-17 17:01:16 UTC MAIN commitmail json YAML

put back canonicalization, but avoid doing it for files that don't contain /
From dholland

(christos)

2010-05-17 12:38:04 UTC MAIN commitmail json YAML

Offset indent, .Dv.

(jruoho)

2010-05-17 12:37:20 UTC MAIN commitmail json YAML

Regen for multiple inclusion protection.

(njoly)

2010-05-17 12:35:20 UTC MAIN commitmail json YAML

Add multiple inclusion protection to rump_syscalls.h.

(njoly)

2010-05-17 12:27:13 UTC MAIN commitmail json YAML

Remove trailing comma.

(jruoho)

2010-05-17 12:23:05 UTC MAIN commitmail json YAML

Use -enum in the list for clarity.

(jruoho)

2010-05-17 12:16:43 UTC MAIN commitmail json YAML

Add subtitle. Break long paragraph.

(jruoho)

2010-05-17 12:12:35 UTC MAIN commitmail json YAML

Note that all stat-functions are standardized nowadays.

(jruoho)

2010-05-17 11:51:10 UTC MAIN commitmail json YAML

Simplify primary CPU startup slightly by using the fact that our cpuinfo's
curpcb pointer points to the uarea/pcb of lwp0 and by remembering the pointer
to this cpuinfo, thus avoiding a few CPUINFO_VA references.

(martin)

2010-05-17 11:46:19 UTC MAIN commitmail json YAML

2010-05-17 11:41:28 UTC MAIN commitmail json YAML

Indent.
s/mainbus0/mainbus?/.

(kiyohara)

2010-05-17 09:13:03 UTC MAIN commitmail json YAML

Handle the HAVE_NBTOOL_CONFIG_H case.

Fixes hp700 build with objdir.

(ahoka)

2010-05-17 08:09:20 UTC MAIN commitmail json YAML

2010-05-17 07:22:03 UTC MAIN commitmail json YAML

2010-05-17 07:10:16 UTC MAIN commitmail json YAML

Add a manual page that describes the basic structures in <sys/time.h>.

(jruoho)

2010-05-17 05:20:05 UTC MAIN commitmail json YAML

Try to describe the struct stat instead of copy-pasting it from the header.
Use xrefs to avoid duplication of effort. Note the S_IS*() macros.

(jruoho)

2010-05-17 03:09:06 UTC MAIN commitmail json YAML

Actually the previous is wrong; all of these can set the errno either via
each other or via something like malloc(3) or lseek(2).

(jruoho)

2010-05-17 03:04:09 UTC MAIN commitmail json YAML

Fix the note about errno in ERRORS; telldir(3), seekdir(3), and rewinddir(3)
do not set the errno.

(jruoho)

2010-05-16 15:56:39 UTC MAIN commitmail json YAML

Fix the SYNOPSIS.

(jruoho)

2010-05-16 15:33:30 UTC MAIN commitmail json YAML

As was done with the man-page for <sys/types.h>, move dir(5) to dirent(3).
Add a table describing the stat <-> dirent types. Note IFTODT() and DTTOIF().

(jruoho)

2010-05-16 12:36:32 UTC MAIN commitmail json YAML

2010-05-16 12:23:32 UTC MAIN commitmail json YAML

Add the Butenhof's book to SEE ALSO. (It was decent enough when I read it
years ago, but if there are better ones, please feel free to add those.)

(jruoho)

2010-05-16 12:20:00 UTC MAIN commitmail json YAML

Enumerate the functions in a table instead of a big SEE ALSO.
Also some stylistic changes.

(jruoho)

2010-05-16 11:37:06 UTC MAIN commitmail json YAML

Sort sections. Fix typo. Fix xref. Improve wording in one case.

(wiz)

2010-05-16 11:27:50 UTC MAIN commitmail json YAML

Make netboot generate a BTINFO_NET bootinfo node for the Synology sk(4) NIC.
It will pass the MAC address, which is read from Flash ROM, into the kernel.
The kernel creates a "mac-address" device-property, which is used by sk(4),
when given, before reading the MAC from its EEPROM.

(phx)

2010-05-16 11:20:01 UTC MAIN commitmail json YAML

From Matt Thomas, suggested upstream:

* atof-generic.c (atof_generic): recognize snan and qnan in
addition to nan and inf.
* atof-vax.c (flonum_gen2vax): deal properly with nan, snan, qnan,
and +Inf and -Inf codes.

This fixes PR toolchain/43303.

(martin)

2010-05-16 08:56:17 UTC MAIN commitmail json YAML

Add a note that the "whiteout inode", DT_WHT, is an implementation detail
and should not be seen in normal user applications.

(jruoho)

2010-05-16 08:01:14 UTC MAIN commitmail json YAML

At least one markup-typo slipped through the cracks.

(jruoho)

2010-05-16 07:52:58 UTC MAIN commitmail json YAML

Rewrite much of the page.

Provide much more detailed and structured discussion. Notably, try to gather
some of the conditions around the famous undefined behavior; these functions
(or the implementations) are quite prone to such behavior.

Add compatibility notes. (The big change here is that in SUSv4 it is no
longer mandated that the directory streams are implemented by using file
descriptors.)

XXX: Please proofread this. Consider also adding some additional notes. For
    instance, I left the semantics about "." and ".." out.  The returned
    errno's should be enumerated as well.

(jruoho)

2010-05-16 07:40:53 UTC MAIN commitmail json YAML

and, erm, bump date too.

(dholland)

2010-05-16 07:40:13 UTC MAIN commitmail json YAML

Grammar, clarification, and note that the rusage information is total
as opposed to strict subprocess only.

(dholland)

2010-05-16 06:48:53 UTC MAIN commitmail json YAML

When setting up res (results), errs (error) and outs (outputs) streams,
change the pre-defined stdio streams to be denoted by "<stdout>" and
"<stderr>", to distinguish them from file names.

In netpgpkeys(1), send the default "res" (results) stream to stdout,
rather than stderr. Requested by Anon Ymous (and makes perfect sense).

(agc)

2010-05-16 06:21:14 UTC MAIN commitmail json YAML

Avoid a possible overwrite of a value in the (key, value) array, in
the event that a reference to the value is passed to the
netpgp_setvar() function as the new value.  Problem noted, cause
detected, and most of the fix contributed by, Anon Ymous.  Thanks!

(agc)

2010-05-16 05:18:35 UTC MAIN commitmail json YAML

2010-05-16 05:17:03 UTC MAIN commitmail json YAML

Use .An as documented in mdoc.samples(7).

(jruoho)

2010-05-16 05:16:08 UTC matt-nb5-mips64 commitmail json YAML

Use device_xname and <sys/intr.h>

(matt)

2010-05-16 05:00:12 UTC matt-nb5-mips64 commitmail json YAML

If IPL_SCHED != IPL_HIGH we need to raise ourselves back to IPL_HIGH before
we return from a fast softint that was switchedaway from.

(matt)

2010-05-16 02:46:25 UTC MAIN commitmail json YAML

2010-05-16 00:40:51 UTC matt-nb5-mips64 commitmail json YAML

2010-05-16 00:34:45 UTC matt-nb5-mips64 commitmail json YAML

Add IPL_DDB.  This is needed for watchdog on sbmips and for IPIs used by DDB.
It's above IPL_SCHED but below IPL_HIGH.

(matt)

2010-05-15 23:11:38 UTC matt-nb5-mips64 commitmail json YAML

Make sure we have a spare cell at the sr_map to make splintr will stop.

(matt)

2010-05-15 21:22:39 UTC MAIN commitmail json YAML

Follow the Fundamental Theory of Algebra. Disallow factorising of
numbers less than 2 as it is not
- naturally unique (negative numbers)
- finite (0)
- non-empty (1)

Discussed with the kristaps and wiz

(joerg)

2010-05-15 20:47:23 UTC MAIN commitmail json YAML

Add register information for the EHCI 1.0 Appendix C Debug Port.

(jakllsch)

2010-05-15 20:45:43 UTC MAIN commitmail json YAML

Add Debug Descriptor structures and constants,
as well as symbolic identifiers for USB packet IDs.

(jakllsch)

2010-05-15 20:31:10 UTC MAIN commitmail json YAML

Set RI_NO_AUTO in ri_flg if init function is invoked from cnattach.
Untested. (3100 support seems somewhat broken, per gxemul output)

(tsutsui)

2010-05-15 20:27:48 UTC matt-nb5-mips64 commitmail json YAML

Add kernel support for MIPS TLS.  Use rdhwr rt, $29 as defined by the MIPS
TLS spec so that Linux MIPS binaries will work.  Use sysarch(MIPS_TINFOSET, v)
to set the pointer.

(matt)

2010-05-15 20:24:57 UTC MAIN commitmail json YAML

nfs_statvfs should return NFS_MAXNAMLEN, not MAXNAMLEN.
(Compile-tested only, but that should be ok)

(dholland)

2010-05-15 20:13:43 UTC matt-nb5-mips64 commitmail json YAML

make it compile when DIAGNOSTIC is defined

(cliff)

2010-05-15 20:11:42 UTC MAIN commitmail json YAML

2010-05-15 20:10:37 UTC MAIN commitmail json YAML

Add NetChip (now PLX) vendor ID, as well as NET228[02] device IDs.

(jakllsch)

2010-05-15 16:35:37 UTC MAIN commitmail json YAML

Set RI_NO_AUTO at correct place. Confirmed on EWS4800/360AD.

(tsutsui)

2010-05-15 16:20:03 UTC MAIN commitmail json YAML

Complete the information in the reference (authors, publisher, date, URL).

(jruoho)

2010-05-15 15:53:42 UTC MAIN commitmail json YAML

Minor markup improvements.

(jruoho)

2010-05-15 15:38:42 UTC MAIN commitmail json YAML

Move the more detailed discussion around the dirent-structure from
getdents(2) to dirent(5), and extend it with some compatibility notes.

(jruoho)

2010-05-15 15:34:09 UTC MAIN commitmail json YAML

2010-05-15 15:33:30 UTC MAIN commitmail json YAML

2010-05-15 13:54:52 UTC MAIN commitmail json YAML

Remove repeated text "After filling..."

XXX Someone else can decide whether we should refer to "U.S.A." or to
XXX "the United States" in the parenthetical.

(pgoyette)

2010-05-15 12:17:35 UTC MAIN commitmail json YAML

Add definitions for Power Manager Registers.
Add some fields for USBHC_UHCRHDB.

(kiyohara)

2010-05-15 10:42:51 UTC MAIN commitmail json YAML

2010-05-15 10:01:44 UTC MAIN commitmail json YAML

Set RI_NO_AUTO in ri_flg if init functions are invoked from cnattach.
Tested on NWS-3470D. xafb.c for NWS-5000 is untested.

XXX: isn't it better to have failsafe default than sprinkle RI_NO_AUTO
XXX: to avoid fatal silent hangup?

(tsutsui)

2010-05-15 09:00:54 UTC MAIN commitmail json YAML

Add some missing atf keywords to fix MKATF=no build.

(njoly)

2010-05-15 08:53:27 UTC MAIN commitmail json YAML

2010-05-15 07:38:24 UTC MAIN commitmail json YAML

Set RI_NO_AUTO in ri_flg if fb_init() is invoked from cnattach.
Tested on Explora451.

(tsutsui)

2010-05-15 07:01:38 UTC MAIN commitmail json YAML

2010-05-15 06:48:27 UTC MAIN commitmail json YAML

2010-05-15 06:48:23 UTC MAIN commitmail json YAML

Set RI_NO_AUTO in ri_flg if pvr_getdevconfig() is invoked from cninit.
Tested on gxemul.

(tsutsui)

2010-05-15 06:47:18 UTC MAIN commitmail json YAML

2010-05-15 06:39:06 UTC MAIN commitmail json YAML

Set RI_NO_AUTO in cnattach function. Untested.

(tsutsui)

2010-05-15 06:38:34 UTC MAIN commitmail json YAML

Set RI_NO_AUTO in rip->ri_flg if tga_init() is invoked from cnattach.

(tsutsui)

2010-05-15 06:36:12 UTC MAIN commitmail json YAML

TERM=x68k -> vt220.  sysinst works again.

(isaki)

2010-05-15 06:22:38 UTC matt-nb5-mips64 commitmail json YAML

Make the sibyte watchdog establish an interrupt, and if taken, drop into DDB.
Make sure these interrupt are not blocked by IPL_HIGH.

(matt)

2010-05-15 06:01:13 UTC MAIN commitmail json YAML

Set RI_NO_AUTO in ri->ri_flg if hpcfb_init() is invoked from cnattach.
Fixes silent hang on hpcsh and hpcmips.

XXX: all other rasops based console devices need to set this flag??

(tsutsui)

2010-05-15 05:08:53 UTC MAIN commitmail json YAML

Enable dhcpcd(8) in hpcsh sysinst.

(tsutsui)

2010-05-15 05:02:46 UTC MAIN commitmail json YAML

Backout rev.1.137.  It causes troubles, see PR kern/43294.
We needs more discussion/a more general solution.

(oki)

2010-05-15 03:54:35 UTC MAIN commitmail json YAML

tune ADC Averaging Control parameter.

(nonaka)

2010-05-15 00:08:31 UTC MAIN commitmail json YAML

Reorder sections to canonical order.

(joerg)

2010-05-14 23:16:08 UTC matt-nb5-mips64 commitmail json YAML

- increase SYMTAB_SPACE to 380000
- configure ohci at pci, and some useful USB devices

(cliff)

2010-05-14 22:48:46 UTC matt-nb5-mips64 commitmail json YAML

Do the sync before the badaddr in pci_conf_read so make no other PCI
transactions are pending before we probe.

(matt)

2010-05-14 22:42:32 UTC MAIN commitmail json YAML

Cleanup duplicated groff keyword.

(njoly)

2010-05-14 22:26:00 UTC matt-nb5-mips64 commitmail json YAML

Make badaddr64 work on O32.  Add a few syncs to force errors.

(matt)

2010-05-14 21:50:06 UTC MAIN commitmail json YAML

2010-05-14 21:24:12 UTC MAIN commitmail json YAML

2010-05-14 19:02:28 UTC MAIN commitmail json YAML

2010-05-14 18:54:01 UTC MAIN commitmail json YAML

Reorder sections to canonical order.

(joerg)

2010-05-14 18:52:54 UTC MAIN commitmail json YAML

Resort sections to canonical order

(joerg)

2010-05-14 18:52:46 UTC MAIN commitmail json YAML

2010-05-14 18:39:05 UTC MAIN commitmail json YAML

Reorder sections to canonical order

(joerg)

2010-05-14 18:37:43 UTC MAIN commitmail json YAML

Reorder sections to canonical order.

(joerg)

2010-05-14 18:28:40 UTC MAIN commitmail json YAML

2010-05-14 18:11:25 UTC MAIN commitmail json YAML

gcscpcib depends on functions from x86/pci/pcib.c

(phx)

2010-05-14 17:37:06 UTC MAIN commitmail json YAML

Don't break lines in .It, there be dragons in groff.

(joerg)

2010-05-14 17:32:58 UTC MAIN commitmail json YAML

update DPRINTF to reflect actual function name

(plunky)

2010-05-14 17:31:27 UTC MAIN commitmail json YAML

Explicitly close quote.

(joerg)

2010-05-14 17:28:56 UTC MAIN commitmail json YAML

Resort sections to canonical order.

(joerg)

2010-05-14 17:28:23 UTC MAIN commitmail json YAML

Resort sections to canonical order.

(joerg)

2010-05-14 17:27:35 UTC MAIN commitmail json YAML

2010-05-14 17:24:38 UTC MAIN commitmail json YAML

Simplify markup.

(joerg)

2010-05-14 17:23:13 UTC MAIN commitmail json YAML

Escape punctuation. Use logical markup for indentation.

(joerg)

2010-05-14 17:20:06 UTC MAIN commitmail json YAML

Resort sections to canonical order

(joerg)

2010-05-14 17:14:28 UTC MAIN commitmail json YAML

Improve/fix/deuglify markup.

(joerg)

2010-05-14 17:11:52 UTC MAIN commitmail json YAML

Reorder sections to canonical order. Use .Ex -std

(joerg)

2010-05-14 17:10:38 UTC MAIN commitmail json YAML

Reorder sections to canonical order.

(joerg)

2010-05-14 17:06:40 UTC MAIN commitmail json YAML

Reorder sections to canonical order.

(joerg)

2010-05-14 17:03:19 UTC MAIN commitmail json YAML

Reorder sections to canonical order. Use .Ex -std.

(joerg)

2010-05-14 17:02:01 UTC MAIN commitmail json YAML

Reorder sections to canonical order.

(joerg)

2010-05-14 16:58:32 UTC MAIN commitmail json YAML

2010-05-14 16:54:48 UTC MAIN commitmail json YAML

Fix section order. Use .Ex -std

(joerg)

2010-05-14 16:51:32 UTC MAIN commitmail json YAML

Reorder section. Use .Ex -std.

(joerg)

2010-05-14 16:48:36 UTC MAIN commitmail json YAML

Reorder to canonical order.

(joerg)

2010-05-14 16:48:02 UTC MAIN commitmail json YAML

Missing -width for .Bl -tag

(joerg)

2010-05-14 16:45:41 UTC MAIN commitmail json YAML

Reorder sections to canonical order.

(joerg)

2010-05-14 16:43:34 UTC MAIN commitmail json YAML

Reorder sections.

(joerg)

2010-05-14 16:43:07 UTC MAIN commitmail json YAML

Programs exit, they don't return values.

(joerg)

2010-05-14 16:23:42 UTC MAIN commitmail json YAML

Explicitly quote |. Don't use .%T outside the scope of .Rs/.Re.

(joerg)

2010-05-14 16:19:59 UTC MAIN commitmail json YAML

2010-05-14 16:05:49 UTC MAIN commitmail json YAML

Use standard section headers.

(jruoho)

2010-05-14 15:30:39 UTC MAIN commitmail json YAML

2010-05-14 13:04:14 UTC MAIN commitmail json YAML

Pick up after people who find build-testing their changes too difficult.

(pooka)

2010-05-14 12:25:19 UTC MAIN commitmail json YAML

May be easy to understand 'pay_len > 0' more than 'paylaod != NULL'.

(kiyohara)

2010-05-14 12:10:07 UTC MAIN commitmail json YAML

Use kmem(9) instead of malloc(9).

(kiyohara)

2010-05-14 12:02:23 UTC MAIN commitmail json YAML

Add missing minus to fix build of HTML page.

(wiz)

2010-05-14 09:16:17 UTC MAIN commitmail json YAML

Convert to mdoc. Reorder content to sort flags and sections.

(wiz)

2010-05-14 08:31:38 UTC MAIN commitmail json YAML

Clarify the wording in the table.

(jruoho)

2010-05-14 08:30:34 UTC MAIN commitmail json YAML

2010-05-14 05:32:06 UTC MAIN commitmail json YAML

Move PMAP_KMPAGE to be used in pmap_kenter_pa flags argument.
'Looks good to me' gimpy@

Forgot to commit this piece in previous commit

(cegger)

2010-05-14 05:23:35 UTC MAIN commitmail json YAML

fix previous again, hopefully ok this time

(dholland)

2010-05-14 05:07:22 UTC MAIN commitmail json YAML

Use a table instead of a literal .Bd "list".

(jruoho)

2010-05-14 05:04:58 UTC MAIN commitmail json YAML

Use a list for the list of bugs.

(jruoho)

2010-05-14 05:02:06 UTC MAIN commitmail json YAML

Move PMAP_KMPAGE to be used in pmap_kenter_pa flags argument.
'Looks good to me' gimpy@

(cegger)

2010-05-14 03:25:20 UTC MAIN commitmail json YAML

Provide a sane argument for -width.

(joerg)

2010-05-14 03:22:49 UTC MAIN commitmail json YAML

Fix trailing whitespace

(joerg)

2010-05-14 03:14:41 UTC MAIN commitmail json YAML

2010-05-14 03:10:24 UTC MAIN commitmail json YAML

2010-05-14 03:05:28 UTC MAIN commitmail json YAML

2010-05-14 03:04:32 UTC MAIN commitmail json YAML

2010-05-14 03:02:13 UTC MAIN commitmail json YAML

Proper markup for example. Use <> include style. Bump date.

(joerg)

2010-05-14 02:45:39 UTC MAIN commitmail json YAML

2010-05-14 02:45:27 UTC MAIN commitmail json YAML

Fix prologue. \\ -> \e

(joerg)

2010-05-14 02:45:02 UTC MAIN commitmail json YAML

Fix prologue. Drop size of last column as it doesn't exist in all cases
and implicit last column handling will do TRT.

(joerg)

2010-05-14 02:09:58 UTC MAIN commitmail json YAML

Quote punctation.

(joerg)

2010-05-14 01:58:07 UTC MAIN commitmail json YAML

Fix trailing whitespace

(joerg)

2010-05-14 01:57:21 UTC MAIN commitmail json YAML

Use plain \* not \\*. Fix trailing whitespace

(joerg)

2010-05-14 01:54:03 UTC MAIN commitmail json YAML

Fix trailing whitespace

(joerg)

2010-05-14 01:53:28 UTC MAIN commitmail json YAML

Fix trailing whitespace

(joerg)

2010-05-14 01:52:48 UTC MAIN commitmail json YAML

Drop undefined macro .PU. Drop unnecessary .ll. Fix .TH to use upper
case.

(joerg)

2010-05-14 01:48:12 UTC MAIN commitmail json YAML

2010-05-14 01:46:04 UTC MAIN commitmail json YAML