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 (1h)  netbsd-8 (5d)  netbsd-10 (6d)  netbsd-9 (12d)  thorpej-ifq (176d)  thorpej-altq-separation (178d) 

2024-05-10 16:32:17 UTC Now

2010-12-19 09:33:52 UTC MAIN commitmail json YAML

Xref __builtin_return_address(3).

(jruoho)

2010-12-19 09:30:50 UTC MAIN commitmail json YAML

Document the __builtin_return_address() GNU extension. Again this is well
justified due to the wide use of these non-standard extensions in the tree.

(jruoho)

2010-12-19 08:56:17 UTC MAIN commitmail json YAML

Uppercase Dt argument, use \e for backslashes.

(wiz)

2010-12-19 08:32:33 UTC MAIN commitmail json YAML

Identify another type of BPPC correctly

(jandberg)

2010-12-19 08:31:39 UTC MAIN commitmail json YAML

Xref ssp(3) and clean SEE ALSO.

(jruoho)

2010-12-19 08:28:40 UTC MAIN commitmail json YAML

Small modifications to wording, tidy up SEE ALSO.

(jruoho)

2010-12-19 08:21:36 UTC MAIN commitmail json YAML

Fix SYNOPSIS, add CAVEATS.

(jruoho)

2010-12-19 08:14:03 UTC MAIN commitmail json YAML

2010-12-19 08:10:09 UTC MAIN commitmail json YAML

2010-12-18 23:36:23 UTC MAIN commitmail json YAML

Sort sections.

(wiz)

2010-12-18 23:09:48 UTC MAIN commitmail json YAML

2010-12-18 20:57:41 UTC MAIN commitmail json YAML

PR/44235: Martin Husemann: Fix core dump due to memory corruption.
Found by Henning Petersen

(christos)

2010-12-18 18:22:24 UTC MAIN commitmail json YAML

2010-12-18 15:54:27 UTC MAIN commitmail json YAML

I've had this patch in my tree for a while and since it only improves
the situation, I decided to commit it. There is an inherent problem
with ASLR and the way the pthread library is using the thread stack.

Our pthread library chooses that stack for each thread strategically
so that it can locate the location of the pthread struct for each
thread by masking the stack pointer and looking just below the red
zone it creates. Unfortunately with ASLR you get many random values
for the initial stack, and there are situations where the masked
stack base ends up below the base of the stack. (this happens on
x86 when the stack base happens to be 0x???02000 for example and
your mask is stackmask is 0xffe00000). To fix this, we detect the
pathological cases (this happens only in the main thread), allocate
more stack, and mprotect it appropriately. Then we stash the main
base and the main struct, so that when we look for the pthread
struct in pthread__id, we can special case the main thread.

Another way to work around the problem is unlimiting stacksize,
but the proper way is to use TLS to find the thread structure and
not to play games with the thread stacks.

(christos)

2010-12-18 15:02:06 UTC MAIN commitmail json YAML

remove NOGCCERROR, WARNS?=5

(christos)

2010-12-18 14:22:42 UTC MAIN commitmail json YAML

Replace "\t" with Ta in table.
Fixes output with mandoc. Noted by njoly.

(wiz)

2010-12-18 14:01:43 UTC MAIN commitmail json YAML

Pull in sys/atomic.h so that hp700 can build - needed for membar_exit.

(skrll)

2010-12-18 13:53:34 UTC MAIN commitmail json YAML

Free tables are already zeroed in xen_pmap_bootstrap. No need to
do it a second time in assembly code.

(jym)

2010-12-18 13:06:51 UTC MAIN commitmail json YAML

2010-12-18 12:47:21 UTC MAIN commitmail json YAML

fix the kflag_limits test case and enable it

(pooka)

2010-12-18 11:45:09 UTC MAIN commitmail json YAML

Don't loop eternally if uiomove() fails eternally (e.g. because
the connection to the client has been severed).

(pooka)

2010-12-18 09:44:41 UTC MAIN commitmail json YAML

2010-12-18 09:37:05 UTC MAIN commitmail json YAML

Xref module(7).

(tsutsui)

2010-12-18 09:26:57 UTC MAIN commitmail json YAML

Check that raid1 and raid5 can serve data after a component has
been nuked.

(pooka)

2010-12-18 08:35:54 UTC MAIN commitmail json YAML

atf-check => atf_check

(pooka)

2010-12-18 08:34:56 UTC MAIN commitmail json YAML

Fix test to use atf_check.  My development machine still had
/usr/bin/atf-check installed ....

(pooka)

2010-12-18 08:20:12 UTC MAIN commitmail json YAML

Use correct spec_islocked method.

(pooka)

2010-12-18 05:45:44 UTC MAIN commitmail json YAML

add a bit for MCCR_RAW_EN -- enable read-after-write.

(mrg)

2010-12-18 05:14:13 UTC MAIN commitmail json YAML

allow sparc64 spc_find_ino() to be NULL; schizo doesn't need it.

(mrg)

2010-12-18 04:31:41 UTC MAIN commitmail json YAML

Don't force debug build.

(joerg)

2010-12-18 04:31:22 UTC MAIN commitmail json YAML

Don't force debug build. XXX Why does this have NOGCCERROR=1 set?

(joerg)

2010-12-18 04:27:17 UTC MAIN commitmail json YAML

2010-12-18 04:25:37 UTC MAIN commitmail json YAML

Don't assign CFLAGS. Use default WARNS from usr.sbin/Makefile.inc.

(joerg)

2010-12-18 04:23:27 UTC MAIN commitmail json YAML

2010-12-18 01:36:20 UTC MAIN commitmail json YAML

- Fix a few possible locking issues in execve1() and exit1().  Add a note
  that scheduler locks are special in this regard - adaptive locks cannot
  be in the path due to turnstiles.  Randomly spotted/reported by uebayasi@.
- Remove unused lwp_relock() and replace lwp_lock_retry() by simplifying
  lwp_lock() and sleepq_enter() a little.
- Give alllwp its own cache-line and mark lwp_cache pointer as read-mostly.

OK ad@

(rmind)

2010-12-18 01:18:48 UTC MAIN commitmail json YAML

do_posix_fadvise: fix and improve previous change - add a comment with
some rationale and handle few range overflows.

Per report/discussion with yamt@.

(rmind)

2010-12-18 01:13:37 UTC MAIN commitmail json YAML

mi_switch: remove invalid assert and add a note that preemption/interrupt
may happen while migrating LWP is set.

Reported by Manuel Bouyer.

(rmind)

2010-12-18 01:07:26 UTC MAIN commitmail json YAML

NPF checkpoint:
- Add support for session saving/restoring.
- Add packet logging support (can tcpdump a pseudo-interface).
- Support reload without flushing of sessions; rework some locking.
- Revisit session mangement, replace linking with npf_sentry_t entries.
- Add some counters for statistics, using percpu(9).
- Add IP_DF flag cleansing.
- Fix various bugs; misc clean-up.

(rmind)

2010-12-18 00:01:46 UTC MAIN commitmail json YAML

2010-12-17 23:57:07 UTC MAIN commitmail json YAML

Fix typo in cross-refernce.

(njoly)

2010-12-17 23:11:57 UTC MAIN commitmail json YAML

PR/44248: Antti Kantee: Fix multi-threaded localtime hang.

(christos)

2010-12-17 22:56:22 UTC MAIN commitmail json YAML

Add _tcpdump uid/gid checks.

(njoly)

2010-12-17 22:35:08 UTC MAIN commitmail json YAML

new_vmcmd: assertions

(yamt)

2010-12-17 22:34:04 UTC MAIN commitmail json YAML

- lookup_once: when crossing a mount point, don't keep the parent vnode locked.
  ie. don't lock a vnode while holding another vnode which belongs to a
  different filesystem.  otherwise we propagate slowness (or deadness) of a
  filesystem to another via vnode lock chain.
- lookup_parsepath: don't alter vnode states.  let the caller do it instead.
- add comments and assertions.

(yamt)

2010-12-17 22:24:11 UTC MAIN commitmail json YAML

wrap a long line.

(yamt)

2010-12-17 22:22:00 UTC MAIN commitmail json YAML

nfs_rcvunlock: don't wake up all waiters.

(yamt)

2010-12-17 22:08:19 UTC MAIN commitmail json YAML

realtimerexpire: rename a confusing variable.  no functional change.
(now_ms -> now_ns as it hold a nano second value)

(yamt)

2010-12-17 22:06:31 UTC MAIN commitmail json YAML

update some comments

(yamt)

2010-12-17 22:05:36 UTC MAIN commitmail json YAML

aio_worker: add an assertion

(yamt)

2010-12-17 22:04:42 UTC MAIN commitmail json YAML

0 -> NULL for a pointer

(yamt)

2010-12-17 22:03:00 UTC MAIN commitmail json YAML

do minimal locking to make assertions like KASSERT(VOP_ISLOCKED(vp)) happy.

(yamt)

2010-12-17 22:00:44 UTC MAIN commitmail json YAML

cosmetics.  no functional changes.
- constify
- wrap long lines
- assertions
- comments

(yamt)

2010-12-17 19:20:42 UTC MAIN commitmail json YAML

2010-12-17 19:18:49 UTC MAIN commitmail json YAML

Set the GPIO to enable AGP configuration space access when attaching gtpci0
and do not reset it again. This keeps AGP devices visible after configure().
Improved the match-function to look for a Discovery controller on the PCI
bus.

(phx)

2010-12-17 19:13:48 UTC MAIN commitmail json YAML

the setlist joy for a new tp

(pooka)

2010-12-17 19:12:30 UTC MAIN commitmail json YAML

2010-12-17 14:51:27 UTC MAIN commitmail json YAML

fix editing artifact

(pooka)

2010-12-17 14:27:34 UTC MAIN commitmail json YAML

* remove #ifdef nonsense (which caused the lossage in the first place)
* make it a DRIVER so that it autoloads when /dev/nsmb is opened

(pooka)

2010-12-17 13:37:38 UTC MAIN commitmail json YAML

2010-12-17 13:24:45 UTC MAIN commitmail json YAML

Try to unbreak module a little.  It would be really nice to not
utterly break things in the name of modularization, especially if
avoiding breakage takes 2min.

(pooka)

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

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

There is no harm to add a manual page for the GNU typeof()-construct, given
that it has already crawled into the source tree.

(jruoho)

2010-12-17 11:32:57 UTC MAIN commitmail json YAML

correct the error message (wait3->waitpid)

(plunky)

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

Bump date for chroot default.

(wiz)

2010-12-17 09:54:28 UTC MAIN commitmail json YAML

2010-12-17 08:50:26 UTC MAIN commitmail json YAML

Remove superfluous Pp.

(wiz)

2010-12-17 08:23:04 UTC MAIN commitmail json YAML

Note that the previous are available only for the kernel.

(jruoho)

2010-12-17 08:13:10 UTC MAIN commitmail json YAML

2010-12-17 07:25:34 UTC MAIN commitmail json YAML

Note __func__ and restrict.

(jruoho)

2010-12-17 07:10:38 UTC MAIN commitmail json YAML

2010-12-17 07:04:52 UTC MAIN commitmail json YAML

Remove implementation detail.

Bump date.

(skrll)

2010-12-17 04:49:25 UTC matt-nb5-mips64 commitmail json YAML

When doing MP, make sure the TLB is global mode (shared among all threads).

(matt)

2010-12-17 04:19:50 UTC MAIN commitmail json YAML

apply some #if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 6 around the code
that uses features no longer part of xorg-server 1.9.

seems to fix sgimips builds.

(mrg)

2010-12-17 02:36:36 UTC MAIN commitmail json YAML

2010-12-17 01:30:50 UTC MAIN commitmail json YAML

Sort ERRORS. Fix a typo. Readd macro usage lost in previous.
Remove trailing whitespace.

(wiz)

2010-12-17 01:30:14 UTC MAIN commitmail json YAML

Sort SEE ALSO, add a serial comma.

(wiz)

2010-12-17 01:29:45 UTC MAIN commitmail json YAML

Use more markup.

(wiz)

2010-12-17 00:53:17 UTC MAIN commitmail json YAML

2010-12-17 00:23:58 UTC MAIN commitmail json YAML

2010-12-16 23:01:57 UTC MAIN commitmail json YAML

Fix up mktime_z.3 entries

(joerg)

2010-12-16 22:54:23 UTC MAIN commitmail json YAML

2010-12-16 22:52:32 UTC MAIN commitmail json YAML

Replace use of errlist with a single concatenated version and an offset
array. This requires less storage and avoids one runtime relocation per
errno value.

(joerg)

2010-12-16 22:47:28 UTC MAIN commitmail json YAML

Don't use normal environment handling functions from libc, but iterate
once over the array and clean out entries as needed.

(joerg)

2010-12-16 22:19:38 UTC MAIN commitmail json YAML

2010-12-16 22:18:37 UTC MAIN commitmail json YAML

it is getname not time.

(christos)

2010-12-16 21:53:56 UTC MAIN commitmail json YAML

add the 3 missing man pages.

(christos)

2010-12-16 19:59:40 UTC MAIN commitmail json YAML

2010-12-16 19:35:38 UTC MAIN commitmail json YAML

Remove incorrect comment.

(skrll)

2010-12-16 19:31:47 UTC MAIN commitmail json YAML

Darn - can't tytpe today!

(pgoyette)

2010-12-16 19:30:44 UTC MAIN commitmail json YAML

Get this right (don't need to \ escape the [Ba]) and update the date

(pgoyette)

2010-12-16 19:25:41 UTC MAIN commitmail json YAML

Note that $ORIGIN kernel support (in kern/kern_exec.c) is currently disabled.
Info from skrll@.
Bump date.

(wiz)

2010-12-16 19:13:27 UTC MAIN commitmail json YAML

2010-12-16 18:51:39 UTC MAIN commitmail json YAML

Fix typo - or_eq is "|=" and not "!="

(pgoyette)

2010-12-16 18:45:38 UTC MAIN commitmail json YAML

2010-12-16 18:44:29 UTC MAIN commitmail json YAML

mention new tzcode

(christos)

2010-12-16 18:42:51 UTC MAIN commitmail json YAML

2010-12-16 18:38:07 UTC MAIN commitmail json YAML

Provide a re-entrant and thread-safe set of timezone API's that
don't require locking and can operate on user-specified timezones
as opposed to having to alter the environment to change a timezone.
This work was presented to the tzcode folks and it was generally
accepted, but there seems to be a lot of inertia.

(christos)

2010-12-16 18:36:48 UTC MAIN commitmail json YAML

Provide a re-entrant and thread-safe set of timezone API's that
don't require locking and can operate on user-specified timezones
as opposed to having to alter the environment to change a timezone.
This work was presented to the tzcode folks and it was generally
accepted, but there seems to be a lot of inertia.

(christos)

2010-12-16 18:29:47 UTC MAIN commitmail json YAML

Mention vlan(4) support in vr(4).

(wiz)

2010-12-16 17:50:39 UTC MAIN commitmail json YAML

Reference __builtin_object_size(3) and attribute(3) with each other.

(jruoho)

2010-12-16 17:50:13 UTC MAIN commitmail json YAML

Reduce the number of tests run automatically, as they apparently go
quite slowly when run under qemu.

Also, change the switch variable from "RESIZE_FFS_BIG_TESTS" to
"RESIZE_FFS_ALL_TESTS", and only check if it's set or not.

(riz)

2010-12-16 17:47:54 UTC MAIN commitmail json YAML

Document __dead, __pure, __constfunc, __noinline, __unused, and __used.

(jruoho)

2010-12-16 17:42:29 UTC MAIN commitmail json YAML

2010-12-16 17:17:07 UTC MAIN commitmail json YAML

Add missing word.

(wiz)

2010-12-16 17:16:07 UTC MAIN commitmail json YAML

2010-12-16 17:07:44 UTC MAIN commitmail json YAML

Enable ETHERCAP_VLAN_MTU in vr(4).  Tested on VT6105M and VT8237R+.
May or may not work on earlier chips, for now just assume it will.
Provoked by PR#44243.

(jakllsch)

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

Have the client and server perform some sort of handshake first.
It's pretty much a placeholder for now.  One plan for the future
is to require some sort of authentication for superuser clients.
The code will need a little massage then, though, to prevent DoS
attacks.

(pooka)

2010-12-16 16:59:05 UTC MAIN commitmail json YAML

When encountering a certificate where "ID mismatched with ASN1
SubjectName", and verify_identifier is off, don't raise an error.
This makes the behavior match the man page.

Patch sent for review long ago:
  http://mail-index.netbsd.org/tech-security/2006/03/24/0000.html
with no negative feedback received to date.

(gdt)

2010-12-16 16:08:57 UTC MAIN commitmail json YAML

Be sure to always initialize props variable to a sensible value.
Fix a problem with envstat -S call which was installing bogus/random
limits.

ok pgoyette.

(njoly)

2010-12-16 15:55:41 UTC MAIN commitmail json YAML

Paraphrase slightly.

(jruoho)

2010-12-16 15:30:57 UTC MAIN commitmail json YAML

2010-12-16 15:29:28 UTC MAIN commitmail json YAML

Describe the rump_sp facility a bit.

(pooka)

2010-12-16 14:37:23 UTC MAIN commitmail json YAML

When skipping output for a temperature of absolute zero, don't forget to
skip past the display columns that the value would otherwise occupy.

Fixes display issue when swsensor(4) is used and it has a value of 0K,
as reported by njoly@

(pgoyette)

2010-12-16 14:33:31 UTC MAIN commitmail json YAML

Also allow specification of sensor's initial value when it is loaded,
using "-i value=<value>".

Suggested by njoly@

(pgoyette)

2010-12-16 13:02:51 UTC MAIN commitmail json YAML

2010-12-16 12:49:20 UTC MAIN commitmail json YAML

2010-12-16 12:39:39 UTC MAIN commitmail json YAML

xfer rump_etfs

(pooka)

2010-12-16 12:38:21 UTC MAIN commitmail json YAML

2010-12-16 12:08:16 UTC MAIN commitmail json YAML

.Fn, offset indent, complete reference.

(jruoho)

2010-12-16 11:57:20 UTC MAIN commitmail json YAML

Fix the references and -offset indent.

(jruoho)

2010-12-16 11:49:35 UTC MAIN commitmail json YAML

2010-12-16 10:40:44 UTC MAIN commitmail json YAML

2010-12-16 10:40:04 UTC MAIN commitmail json YAML

2010-12-16 10:19:14 UTC MAIN commitmail json YAML

Now that <sys/cdefs.h> is mostly documented, include a small summary page
for it, cdefs(3).

(jruoho)

2010-12-16 10:10:53 UTC MAIN commitmail json YAML

2010-12-16 10:08:43 UTC MAIN commitmail json YAML

_KERNEL_OPT

XXX: should figure out how to make defopt compatible with a modular
world (e.g. "kill it" or define it a little better).

(pooka)

2010-12-16 10:08:27 UTC MAIN commitmail json YAML

Use full month name in dates.

(wiz)

2010-12-16 09:35:31 UTC MAIN commitmail json YAML

Ooops, backout intended part of previous change, pointed out by
Masao Uebayashi.

(martin)

2010-12-16 08:45:32 UTC MAIN commitmail json YAML

bump date for previous

(plunky)

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

Remove extra .Pp before wizd(8) beats me.

(jruoho)

2010-12-16 08:44:23 UTC MAIN commitmail json YAML

remove unnecessary step in example code
(sdp_service_attribute() did that already)
while here, start new paragraph for next example

(plunky)

2010-12-16 08:43:01 UTC MAIN commitmail json YAML

Mention attribute(3) in passing.

(jruoho)

2010-12-16 08:35:36 UTC MAIN commitmail json YAML

Start to document the GNU C attributes. For now, only __packed, __aligned,
and __section are documented, but I will keep extending this.

(jruoho)

2010-12-16 07:59:10 UTC MAIN commitmail json YAML

ioctl: KNF switch-case

(cegger)

2010-12-16 07:51:22 UTC MAIN commitmail json YAML

add PCI VGA drivers

(cegger)

2010-12-16 07:02:07 UTC MAIN commitmail json YAML

2010-12-16 06:45:51 UTC MAIN commitmail json YAML

2010-12-16 06:19:01 UTC MAIN commitmail json YAML

ioctl: KNF switch-case

(cegger)

2010-12-16 05:42:15 UTC MAIN commitmail json YAML

Don't pass unused argument. From Doug Barton.

(dholland)

2010-12-16 05:30:16 UTC MAIN commitmail json YAML

Use strlcpy, not strncpy, when the desired semantics are strlcpy's
rather than strncpy's.

(dholland)

2010-12-16 02:01:37 UTC MAIN commitmail json YAML

uebayasi-xip: Add a few files.

(uebayasi)

2010-12-16 01:56:21 UTC MAIN commitmail json YAML

finish device_t-ification, now it works again

(macallan)

2010-12-16 00:42:22 UTC MAIN commitmail json YAML

ubc_init needs to run while we're still cold or uvmhist breaks.

(eeh)

2010-12-15 23:48:15 UTC MAIN commitmail json YAML

Slighty tweak the interrupt debug printfs.

(matt)

2010-12-15 23:43:02 UTC MAIN commitmail json YAML

Fix typo (damn :q! in vi allow the commit to proceed).

(matt)

2010-12-15 23:38:15 UTC MAIN commitmail json YAML

Add a workaround (hopefully temporary) for corrupted usb fragments on powerpc.
With this in effect, USB is now usable on some powerpc platforms again.
Basically this prevents the DMA portion of the fragment ever overlapping the
usb_frag_hdr which is enough to solve the problem.  To enable this, add

options USB_FRAG_DMA_WORKAROUND

to your config file.
Switch from malloc to kmem.

(matt)

2010-12-15 23:03:36 UTC MAIN commitmail json YAML

Invalidate meta_fname when we finish a job, so that in compat
mode, we do not report a previous .meta file as being involved
in an error.

(sjg)

2010-12-15 22:49:42 UTC MAIN commitmail json YAML

2010-12-15 22:09:14 UTC MAIN commitmail json YAML

Only KM_SLEEP | KM_NOSLEEP can be passed down to kmem layer, clean up
tqflags from internal taskq flags (TQ_FRONT) before calling kmem_alloc.

(haad)

2010-12-15 21:33:10 UTC MAIN commitmail json YAML

fix post-move testsdir.  duh

(pooka)

2010-12-15 20:42:24 UTC MAIN commitmail json YAML

2010-12-15 20:40:18 UTC MAIN commitmail json YAML

"A few seconds later" I realized the kernel directory is dev/raidframe,
not dev/raid, so reflect this in the test dir.  Affects location
for test of PR kern/44239.

(pooka)

2010-12-15 20:37:52 UTC MAIN commitmail json YAML

Add first raidframe tests.  This is the test for the kernel fault
described in PR kern/44239

(pooka)

2010-12-15 19:14:37 UTC MAIN commitmail json YAML

Use proper cleanup.

XXX: the atf sh "compiler" should check for errors.

(pooka)

2010-12-15 19:07:44 UTC MAIN commitmail json YAML

Guard against supplying the same parameter multiple times in one -d argument.

(pooka)

2010-12-15 18:42:59 UTC MAIN commitmail json YAML

language fix.  sniped by wizd

(pooka)

2010-12-15 18:39:28 UTC MAIN commitmail json YAML

2010-12-15 18:37:55 UTC MAIN commitmail json YAML

2010-12-15 18:11:01 UTC MAIN commitmail json YAML

Merge single-letter options in SYNOPSIS.

(wiz)

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

Extract searching of description tables into a single function, rather
than duplicating the code every time.  Minor reduction in code size
(about 1200 bytes on amd64), no change in functionality.

(pgoyette)

2010-12-15 17:12:40 UTC MAIN commitmail json YAML

Add an option to not actually run the power management scripts, and
when in debug mode send all error messages to stderr rather than to
syslog(8).

(pgoyette)

2010-12-15 17:09:07 UTC MAIN commitmail json YAML

beautify printing of SVM features across multiple lines

(cegger)

2010-12-15 16:23:56 UTC MAIN commitmail json YAML

document the current syscall bug with rump_server and -l

(pooka)

2010-12-15 15:43:13 UTC MAIN commitmail json YAML

fix XP bit and U bit definitions of CP15 control register.
These constants are not used in our source tree for now,
so this won't change any kernel bianries.

(bsh)

2010-12-15 15:36:16 UTC MAIN commitmail json YAML

RLIMIT_NOFILE stabilized in NetBSD 17 years ago, so it's safe now
to remove the #ifdef's from around code which uses it.

(pooka)

2010-12-15 15:07:54 UTC MAIN commitmail json YAML

Don't need prog_ioctl here, it's a leftover of the previous approach.

pointed out by Paul Goyette

(pooka)

2010-12-15 14:45:47 UTC MAIN commitmail json YAML

add privcmd ioctl that got introduced with Xen 4

(cegger)

2010-12-15 14:28:22 UTC MAIN commitmail json YAML

add gnttab ioctl definitions to implement

(cegger)

2010-12-15 13:44:17 UTC MAIN commitmail json YAML

Remove duplicate asserts from when uvm_fault_lower1() was merged
into uvm_fault_lower() (the duplicates were there already before,
just in different functions).

reported by Alexander Nasonov on tech-kern

(pooka)

2010-12-15 13:13:28 UTC MAIN commitmail json YAML

Nuke conditionally compiled MULOG stuff.  Itojun wanted to do it
already 8 years ago when he fixed the compilation last time, and
again it hasn't been buildable in years.

(pooka)

2010-12-15 12:58:13 UTC MAIN commitmail json YAML

take two on module support
XXX this wont work as a builtin module

(ahoka)

2010-12-15 11:22:42 UTC MAIN commitmail json YAML

2010-12-15 10:42:57 UTC MAIN commitmail json YAML

Add usr.sbin/Attfile to test list.

(haad)

2010-12-15 10:36:50 UTC MAIN commitmail json YAML

Hook traceroute test case to build. it was added to lists so unbreak build now.

(haad)

2010-12-15 09:40:22 UTC MAIN commitmail json YAML

Sort options in usage same as in man page.
While here, replace \xa0 with ' '. Where do you get these from?

(wiz)

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

Make this build with CRUNCHEDPROG defined, and default to the sysctl()
method of fetching information.  Apparently we can't simply not define
the prog_ops struct in this program.

(he)

2010-12-15 08:09:23 UTC MAIN commitmail json YAML

Make this build as part of the dist/miniroot build, where it's still
referenced.  Adjust for the move from dist/ to external/.

(he)

2010-12-15 08:09:02 UTC MAIN commitmail json YAML

Enable device-mapper driver in MONOLITHIC kernels.

(haad)

2010-12-15 07:36:52 UTC MAIN commitmail json YAML

2010-12-15 02:59:05 UTC MAIN commitmail json YAML

put real openssl version.

(christos)

2010-12-15 02:08:16 UTC MAIN commitmail json YAML

Use the source dir atomic.h

(christos)

2010-12-15 01:33:37 UTC MAIN commitmail json YAML

Remove unneeded <uvm/uvm.h> include

(matt)

2010-12-15 01:32:31 UTC MAIN commitmail json YAML

2010-12-15 01:29:38 UTC MAIN commitmail json YAML

2010-12-15 01:28:24 UTC MAIN commitmail json YAML

include <uvm/uvm_extern.h> here instead

(matt)

2010-12-15 01:27:19 UTC MAIN commitmail json YAML

2010-12-15 00:58:58 UTC MAIN commitmail json YAML

Revert last commit it's not needed anymore.

(haad)

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

usr.sbin/traceroute

(pooka)

2010-12-15 00:18:37 UTC MAIN commitmail json YAML

don't create h_img2cgd dirs anymore since they'll just be harvested by obsolete

(pooka)

2010-12-15 00:17:34 UTC MAIN commitmail json YAML

2010-12-15 00:13:52 UTC MAIN commitmail json YAML

Add simple tests for traceroute.  The test bootstraps a three-node
network with one router in the middle and checks traceroute from
one endpoint to another with both UDP and ICMP.

(i guess these test networking at least as much as traceroute
itself, but then again that's not a bad thing)

(pooka)

2010-12-15 00:12:01 UTC MAIN commitmail json YAML

2010-12-15 00:09:42 UTC MAIN commitmail json YAML

Use RUMPPRG.  I think it's safe to say there's not going to be a
new upstream version of traceroute to import.

AS# lookup is still done using host networking.  Rationale: the
relevance to where that data comes from with respect to network
tracing is zero (be it socket, local file, db, whatever).

(pooka)

2010-12-15 00:08:44 UTC MAIN commitmail json YAML

Need to include <sys/device.h> since vax's <sys/cpu.h> doesn't.

(matt)

2010-12-15 00:06:47 UTC MAIN commitmail json YAML

make this compile again.

(matt)

2010-12-15 00:05:47 UTC MAIN commitmail json YAML

2010-12-15 00:04:51 UTC MAIN commitmail json YAML

Make this compile again.

(matt)

2010-12-15 00:04:28 UTC MAIN commitmail json YAML

Make this compilee again.

(matt)

2010-12-14 23:44:50 UTC MAIN commitmail json YAML

2010-12-14 23:43:32 UTC MAIN commitmail json YAML