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

2024-05-10 18:50:14 UTC Now

2011-02-05 03:09:46 UTC MAIN commitmail json YAML

2011-02-05 01:22:13 UTC MAIN commitmail json YAML

avoid code duplication.

(christos)

2011-02-05 00:37:40 UTC MAIN commitmail json YAML

Explicitly use template to allow building with the more strict
template lookup in clang. From FreeBSD.

(joerg)

2011-02-05 00:24:08 UTC MAIN commitmail json YAML

Remove trailing whitespace.

(wiz)

2011-02-04 23:32:44 UTC MAIN commitmail json YAML

2011-02-04 23:31:23 UTC MAIN commitmail json YAML

2011-02-04 22:11:09 UTC MAIN commitmail json YAML

Fix CVE-2011-0539:
Legacy certificates generated by OpenSSH might contain data
from the stack thus leaking confidential information.

(christos)

2011-02-04 22:09:18 UTC MAIN commitmail json YAML

2011-02-04 22:07:42 UTC MAIN commitmail json YAML

bump for arc4random_{buf,uniform}

(christos)

2011-02-04 22:07:08 UTC MAIN commitmail json YAML

2011-02-04 20:06:23 UTC MAIN commitmail json YAML

2011-02-04 19:58:10 UTC MAIN commitmail json YAML

2011-02-04 19:44:00 UTC MAIN commitmail json YAML

2011-02-04 19:42:13 UTC MAIN commitmail json YAML

Remove the rif/rof options and add rump.dd.  This makes usage
consistent with other rump clients.  Copying between kernels is
done using the host pipe, e.g.:

  dd if=foo rof=bar skip=1 seek=1 => dd if=foo skip=1 | rump.dd of=bar seek=1

Also, the pipe idiom extends to copying between different rump
kernels, e.g.:

  env RUMP_SERVER=unix://srv1 rump.dd if=thefile \
      | env RUMP_SERVER=unix://srv2 rump.dd of=thefile

Pipe approach suggested by yamt (thanks!)

(pooka)

2011-02-04 17:38:15 UTC MAIN commitmail json YAML

PR/44514: Andrey Simonenko: Buffer underflow in RPC library for non-blocking
TCP sockets

(christos)

2011-02-04 17:36:55 UTC MAIN commitmail json YAML

knf - no functional changes

(christos)

2011-02-04 16:30:32 UTC MAIN commitmail json YAML

Fix typo, already reported to roy@

(wiz)

2011-02-04 15:11:12 UTC MAIN commitmail json YAML

Note import of dhcpcd-5.2.11

(roy)

2011-02-04 15:09:22 UTC MAIN commitmail json YAML

Work with the new routing.

(roy)

2011-02-04 15:03:14 UTC MAIN commitmail json YAML

2011-02-04 15:00:25 UTC MAIN commitmail json YAML

2011-02-04 14:51:03 UTC MAIN commitmail json YAML

mask should really be unsigned. it doesn't actually matter.

(skrll)

2011-02-04 14:35:30 UTC MAIN commitmail json YAML

Another change to suit my eye.

(skrll)

2011-02-04 14:31:23 UTC MAIN commitmail json YAML

2011-02-04 12:23:08 UTC MAIN commitmail json YAML

Supported installation medium: FTP and NFS.

(phx)

2011-02-04 11:00:31 UTC MAIN commitmail json YAML

A better workaround hack for PR 41448

Bound the wait loop

(skrll)

2011-02-04 10:56:03 UTC MAIN commitmail json YAML

Replace multiple spaces with <tab>

(skrll)

2011-02-04 09:57:54 UTC MAIN commitmail json YAML

attach the compat_50_routedomain to make it actually work

(pooka)

2011-02-04 09:23:00 UTC MAIN commitmail json YAML

in xcall(), use a (static) errbuf if we timeout, so we can build the whole
message up for a single call to printf_nolog().  this should get rid of
these messages that report no cpus answered.  eg:

xcall(cpu0,0xf000868c): couldn't ping cpus:
vs
xcall(cpu0,0xf000868c): couldn't ping cpus: cpu1

(mrg)

2011-02-04 07:44:53 UTC MAIN commitmail json YAML

Commit a hack workaround for PR 41448.

Not sure if this has any negative effects, but I'd rather have a system
that reboots than has working audio.

(skrll)

2011-02-04 07:32:38 UTC MAIN commitmail json YAML

add:
./usr/lib/librumpfs_zfs_g.a
./usr/lib/librumpkern_solaris_g.a

(yamt)

2011-02-04 07:26:17 UTC MAIN commitmail json YAML

Fix typo, from Henning Petersen in PR 44510.

(wiz)

2011-02-04 04:14:25 UTC MAIN commitmail json YAML

Use __INTR_MASK_EXCEPTION_UNBLOCK combo.

(uwe)

2011-02-04 04:13:52 UTC MAIN commitmail json YAML

Since __INTR_MASK + __EXCEPTION_UNBLOCK is common sequence, provide
__INTR_MASK_EXCEPTION_UNBLOCK combo version that does stc/ldc just once.

(uwe)

2011-02-04 03:23:33 UTC MAIN commitmail json YAML

__EXCEPTION_ENTRY - "tst" already does logical AND, so shave off extra
"mov" and "and" and just test PSL_MD bit directly.

While here - shuffle around instructions to construct PSL_MD to break
dependencies.

While still here - only interrupt vector uses SSR and SPC as function
args, so don't bother saving them here in r4 and r5.  Other vectors
don't need them and interrupt vector can just as well "stc" them
directly before exceptions are enabled.

(uwe)

2011-02-04 02:01:13 UTC MAIN commitmail json YAML

Use RT_ROUNDUP instead of a private copy since that's what the kernel uses.
(t_getaddrinfo passes for both i386 (compat_netbsd32) and amd64 with this
change).

(matt)

2011-02-04 00:19:52 UTC MAIN commitmail json YAML

2011-02-04 00:05:29 UTC MAIN commitmail json YAML

Branch with delay slot executes delay slot even if branch is not
taken, so adjust next_pc logic accordingly.  Fixes SIGILL
(breakpoint's "trapa" causes an illegal slot instruction exception)
when stepping through such branches.

(uwe)

2011-02-03 22:16:11 UTC MAIN commitmail json YAML

fix KASSERT snafu.  spotted by tests, as usual.

(pooka)

2011-02-03 22:04:10 UTC MAIN commitmail json YAML

2011-02-03 22:03:09 UTC MAIN commitmail json YAML

Add a few Nvidia devices.

(njoly)

2011-02-03 21:45:32 UTC MAIN commitmail json YAML

2011-02-03 21:04:52 UTC MAIN commitmail json YAML

2011-02-03 20:37:09 UTC MAIN commitmail json YAML

Replace -1 with HP700CF_IRQ_UNDEF

(skrll)

2011-02-03 19:44:05 UTC MAIN commitmail json YAML

fix some merge botch and enable cryptodev support on NetBSD again

(drochner)

2011-02-03 17:36:31 UTC bouyer-quota2 commitmail json YAML

Change semantic of limits to allow up to the limit inclued (instead of
up to one less than the limit: I feel that if my limit is 1000 inodes
I should be able to create 1000 files, not 999).
Keep the previous semantic for quota1 dquot, the conversion functions
will add or remove 1 when converting limits from/to the new format.

Adjust test for this change.

(bouyer)

2011-02-03 17:21:18 UTC MAIN commitmail json YAML

commit works better when you cvs add first

(pooka)

2011-02-03 15:56:16 UTC bouyer-quota2 commitmail json YAML

2011-02-03 15:53:26 UTC bouyer-quota2 commitmail json YAML

Avoid core dump when a filesystem is specified and not found in
mounted filesystems.

(bouyer)

2011-02-03 15:39:50 UTC MAIN commitmail json YAML

2011-02-03 15:38:19 UTC MAIN commitmail json YAML

2011-02-03 15:36:30 UTC MAIN commitmail json YAML

* open backend device once when the rumpblk is registered instead of
  every time the virtual device is opened.  this takes care of e.g.
  a midlife chmod crisis
* when mapping initial windows, consistently look at host size and
  host offset.  otherwise we might end up in a situation with 0
  initial windows mapped, and that will cause a crash later.

(pooka)

2011-02-03 11:25:27 UTC MAIN commitmail json YAML

Create backing image with mode 0644 instead of 0755 & document this.

(pooka)

2011-02-03 11:21:43 UTC MAIN commitmail json YAML

2011-02-03 11:21:16 UTC MAIN commitmail json YAML

* make it possible to specify an offset in -d
* truncate -d hostpath only if it's a regular file and smaller
  than offset+size

(pooka)

2011-02-03 11:01:52 UTC MAIN commitmail json YAML

weakalias the "withsize" variant of rump_pub_etfs_register too

(pooka)

2011-02-03 10:21:58 UTC MAIN commitmail json YAML

fix prototype, document RUMP_ETFS_SIZE_ENDOFF

(pooka)

2011-02-03 10:06:07 UTC MAIN commitmail json YAML

* fix blkno->offset calculation for simulated non-512 devices
* allows transfers only in multiples of block size
* g/c unused struct member

(pooka)

2011-02-03 04:24:23 UTC MAIN commitmail json YAML

Note that our installed sshd_config overwrite the LoginGraceTime to 600s.

(enami)

2011-02-03 02:39:47 UTC matt-nb5-mips64 commitmail json YAML

2011-02-03 02:36:42 UTC matt-nb5-mips64 commitmail json YAML

2011-02-03 02:24:21 UTC matt-nb5-mips64 commitmail json YAML

2011-02-03 02:06:00 UTC MAIN commitmail json YAML

PR/44505: Mark Davies: pam_exec fails to realloc enough space, while
there add a volatile variable (From FreeBSD)

(christos)

2011-02-02 23:27:12 UTC MAIN commitmail json YAML

2011-02-02 23:01:34 UTC MAIN commitmail json YAML

Bump NPF_VERSION.

(rmind)

2011-02-02 21:01:09 UTC bouyer-quota2 commitmail json YAML

Check that a new id properly get limits from the defaults.

(bouyer)

2011-02-02 20:10:09 UTC MAIN commitmail json YAML

udpate license clauses on my code to match the new-style BSD licenses.
verified with Mike Hibler it is ok to remove clause 3 on utah copyright,
as per UCB.
based on diff that rmind@ sent me.

no functional change with this commit.

(chuck)

2011-02-02 20:07:25 UTC MAIN commitmail json YAML

udpate license clauses on my code to match the new-style BSD licenses.
verified with Mike Hibler it is ok to remove clause 3 on utah copyright,
as per UCB.
based on diff that rmind@ sent me.

no functional change with this commit.

(chuck)

2011-02-02 19:17:09 UTC bouyer-quota2 commitmail json YAML

2011-02-02 17:53:42 UTC MAIN commitmail json YAML

2011-02-02 16:37:27 UTC MAIN commitmail json YAML

prop_dictionary_internalize_from_file_returns_a_dictionary_not_an_array

(plunky)

2011-02-02 15:58:09 UTC MAIN commitmail json YAML

Allow etfs for CREATE lookups too.  This takes care of O_CREAT calls
to open(), which act just like lookups if the node exists (found
from etfs).  If the node doesn't exist in etfs, nothing changes
from the previous situation.

(pooka)

2011-02-02 15:55:22 UTC MAIN commitmail json YAML

never open rumpblk backend with O_TRUNC
XXX: the rumpuser_open interface needs a beating

(pooka)

2011-02-02 15:28:38 UTC MAIN commitmail json YAML

udpate license clauses on chuck^2 code to match the new-style BSD licenses.
based on diff that rmind@ sent me (and confirmed with chs@ via email).

no functional change with this commit.

(chuck)

2011-02-02 15:25:28 UTC MAIN commitmail json YAML

2011-02-02 15:21:34 UTC MAIN commitmail json YAML

2011-02-02 15:17:38 UTC MAIN commitmail json YAML

npf_nat_create: fix attributes.

(rmind)

2011-02-02 15:13:34 UTC MAIN commitmail json YAML

2011-02-02 14:42:15 UTC MAIN commitmail json YAML

add a few overwrite-related tests

(pooka)

2011-02-02 14:41:56 UTC MAIN commitmail json YAML

adjust inode size too if VOP_SETATTR changes size

(pooka)

2011-02-02 12:26:43 UTC MAIN commitmail json YAML

Some CPU have cpu counter (CPUID_TSC is there) but don't handle the
rdmsr instruction (CPUID_MSR is not there).
Introduce a cpu_counter_serializing() function to remplace rdmsr(MSR_TSC)
calls, which does a rdmsr(MSR_TSC) if available and cpu_counter() otherwise.
This makes the cpu counter useable on vortex86 CPUs.
OK ad@

(bouyer)

2011-02-02 09:07:33 UTC MAIN commitmail json YAML

Remove trailing whitespace.

(wiz)

2011-02-02 09:05:01 UTC MAIN commitmail json YAML

New sentence, new line. Mark up NULL.

(wiz)

2011-02-02 09:02:40 UTC MAIN commitmail json YAML

Always call cpu_lwp_bootstrap even in cpu_setfunc.  Let cpu_lwp_fork use
cpu_setfunc instead of duplicating code.  Simplify stack setup.
PR 44500

(matt)

2011-02-02 05:10:55 UTC MAIN commitmail json YAML

2011-02-02 05:06:31 UTC MAIN commitmail json YAML

Add socket_settype of struct pcmcia_chip_functions.  Always need it.

(kiyohara)

2011-02-02 05:00:57 UTC MAIN commitmail json YAML

Change to static functions.

(kiyohara)

2011-02-02 04:46:25 UTC MAIN commitmail json YAML

Use cf_name to match instead of cd_name.
Call com_is_console().
Using bus_space_tag_t and bus_space_handle_t is manners for more machines.

(kiyohara)

2011-02-02 04:29:59 UTC MAIN commitmail json YAML

2011-02-02 04:23:53 UTC MAIN commitmail json YAML

Assign mojor number to sci and scif.

(kiyohara)

2011-02-02 04:21:07 UTC MAIN commitmail json YAML

Add scif console to constab.
Also include "sci.h".

(kiyohara)

2011-02-02 04:18:14 UTC MAIN commitmail json YAML

Like some other TI SDHCI parts, PCI_PRODUCT_TI_PCIXX12SD also needs the SD
card moved to the SDHCI controller.

(jakllsch)

2011-02-02 03:00:45 UTC MAIN commitmail json YAML

fix locking and remove duplicate code.

(christos)

2011-02-02 02:20:28 UTC MAIN commitmail json YAML

NPF checkpoint:
- Add libnpf(3) - a library to control NPF (configuration, ruleset, etc).
- Add NPF support for ftp-proxy(8).
- Add rc.d script for NPF.
- Convert npfctl(8) to use libnpf(3) and thus make it less depressive.
  Note: next clean-up step should be a parser, once dholland@ will finish it.
- Add more documentation.
- Various fixes.

(rmind)

2011-02-01 23:40:13 UTC MAIN commitmail json YAML

Various improvements to mvgbe(4).  Notable is improved multicast filtering.

(jakllsch)

2011-02-01 23:23:52 UTC MAIN commitmail json YAML

Use the command line U-Boot gave us for boothowto.  From evbarm/gumstix.

(jakllsch)

2011-02-01 22:54:24 UTC MAIN commitmail json YAML

Address 3rd issue in PR#43990.
Different implementation but same method as suggested.

(jakllsch)

2011-02-01 22:53:03 UTC MAIN commitmail json YAML

tell the Xserver that we need PIO access ( even though it's only for probing )

(macallan)

2011-02-01 22:36:42 UTC MAIN commitmail json YAML

ksyms_init() happens in main() now.

(jakllsch)

2011-02-01 21:44:27 UTC MAIN commitmail json YAML

Increment ci->ci_intr_depth for the duration of pic_do_pending_ints().
Fixes locking catastrophy commonly noticed with mvsata(4) on evbarm.

(jakllsch)

2011-02-01 21:28:43 UTC MAIN commitmail json YAML

2011-02-01 21:21:34 UTC MAIN commitmail json YAML

2011-02-01 21:18:57 UTC MAIN commitmail json YAML

udpate license clauses on my code to match the new-style BSD licenses.
based on diff that rmind@ sent me.

no functional change with this commit.

(chuck)

2011-02-01 21:06:13 UTC MAIN commitmail json YAML

2011-02-01 21:03:53 UTC MAIN commitmail json YAML

2011-02-01 21:00:25 UTC MAIN commitmail json YAML

remove no-longer-valid wustl email address for me.

no functional change with this commit.

(chuck)

2011-02-01 20:59:42 UTC MAIN commitmail json YAML

udpate license clauses on my code to match the new-style BSD licenses.
remove no-longer-valid wustl email address for me.

no functional change with this commit.

(chuck)

2011-02-01 20:58:15 UTC MAIN commitmail json YAML

udpate license clauses on my code to match the new-style BSD licenses.
remove no-longer-valid wustl email address for me.

no functional change with this commit.

(chuck)

2011-02-01 20:43:49 UTC MAIN commitmail json YAML

Document the remaining vfs.generic sysctls.

(christos)

2011-02-01 20:28:11 UTC MAIN commitmail json YAML

pcc-current provides a DATESTAMP file, handle that rather than guessing

(plunky)

2011-02-01 20:20:19 UTC MAIN commitmail json YAML

remove no-longer-valid wustl email address for me.
no functional change with this commit.

(chuck)

2011-02-01 20:19:32 UTC MAIN commitmail json YAML

2011-02-01 20:09:08 UTC MAIN commitmail json YAML

udpate license clauses on my code to match the new-style BSD licenses.
based on diff that rmind@ sent me.

no functional change with this commit.

(chuck)

2011-02-01 20:06:06 UTC MAIN commitmail json YAML

Since sparc64 got fenv.h, we need an entry for include/sparc64/ here as well.

(he)

2011-02-01 19:50:04 UTC MAIN commitmail json YAML

udpate license clauses on my code to match the new-style BSD licenses.
remove no-longer-valid wustl email address for me.
based on diff that rmind@ sent me.

no functional change with this commit.

(chuck)

2011-02-01 19:46:28 UTC MAIN commitmail json YAML

udpate license clauses on my code to match the new-style BSD licenses.
based on diff that rmind@ sent me.

no functional change with this commit.

(chuck)

2011-02-01 19:43:12 UTC MAIN commitmail json YAML

udpate license clauses on my code to match the new-style BSD licenses.
based on diff that rmind@ sent me.

no functional change with this commit.

(chuck)

2011-02-01 19:40:25 UTC MAIN commitmail json YAML

udpate license clauses on my code to match the new-style BSD licenses.
based on diff that rmind@ sent me.

no functional change with this commit.

(chuck)

2011-02-01 19:37:37 UTC MAIN commitmail json YAML

During shutdown, restore the each PCI device's bus-mastering enable to
the state that we found it in before attaching a driver to it.

(dyoung)

2011-02-01 19:36:24 UTC MAIN commitmail json YAML

udpate license clauses on my code to match the new-style BSD licenses.
remove no-longer-valid wustl email address for me.
based on diff that rmind@ sent me.

no functional change with this commit.

(chuck)

2011-02-01 18:33:25 UTC MAIN commitmail json YAML

2011-02-01 18:12:10 UTC MAIN commitmail json YAML

Remove trailing whitespace.

(skrll)

2011-02-01 18:08:38 UTC MAIN commitmail json YAML

expand one sentence a bit

(pooka)

2011-02-01 18:01:06 UTC MAIN commitmail json YAML

New sentence, new line; remove trailing whitespace.

(wiz)

2011-02-01 15:53:31 UTC MAIN commitmail json YAML

Describe TIOCEXT.  Improve description of TIOCPKT_IOCTL.  Tell the
width of some TIOCxxx parameters.

(dyoung)

2011-02-01 15:26:47 UTC MAIN commitmail json YAML

update todo from my private collection (which is now empty)

(pooka)

2011-02-01 06:46:47 UTC MAIN commitmail json YAML

2011-02-01 06:18:40 UTC MAIN commitmail json YAML

Use elf32-ntrad{little,big}mips

(matt)

2011-02-01 06:13:08 UTC MAIN commitmail json YAML

2011-02-01 03:16:54 UTC MAIN commitmail json YAML

2011-02-01 03:12:06 UTC MAIN commitmail json YAML

add FFBDriverFunc() so we can tell the Xserver that we do not need PIO access
enabled, now this works again. We'll probably need this on all non-PCI drivers.

(macallan)

2011-02-01 02:09:27 UTC MAIN commitmail json YAML

Note routing changes.

(matt)

2011-02-01 01:54:14 UTC MAIN commitmail json YAML

cpu_setfunc() must use lwp_trampoline to arrange for the recycled lwp
to go through lwp_startup() the first time it's switched to.

This makes NetBSD-4.x SA binaries work on current.  Tested with dig(1)
in NetBSD-4.x chroot on landisk.

Looks like this mistake of mine was picked up and replicated in
several other ports, sorry.

Reported by chuck@ in PR kern/44500

(uwe)

2011-02-01 01:43:15 UTC MAIN commitmail json YAML

Update Spanish translation. From Riastradh on IRC

(joerg)

2011-02-01 01:42:15 UTC MAIN commitmail json YAML

2011-02-01 01:40:00 UTC MAIN commitmail json YAML

Welcome to NetBSD 5.99.45 (Routing socket changes)

(matt)

2011-02-01 01:39:22 UTC MAIN commitmail json YAML

2011-02-01 01:24:05 UTC MAIN commitmail json YAML

Add a call to cpu_model_init to set oeacpufeat before calling initppc

(matt)

2011-02-01 01:21:29 UTC MAIN commitmail json YAML

Fix XER comment.
Add spe variants for vectors.

(matt)

2011-02-01 01:20:14 UTC MAIN commitmail json YAML

include "assym.h" instead of pte.h

(matt)

2011-02-01 01:15:51 UTC MAIN commitmail json YAML

Define COMPAT_50 to be 1 just like config(8) would be opt_compat_netbsd.h

(matt)

2011-02-01 00:53:23 UTC MAIN commitmail json YAML

Define 32bit version of SIOC[GS]IFADDRPREF32.  We wouldn't need this to
if i386 actually aligned a uint64_t on a 64bit boundary but it doesn't.
So all that work in sockaddr_storage goes for naught.

(matt)

2011-01-31 23:56:14 UTC MAIN commitmail json YAML

Correct __HAVE_FAST_SOFTINTRS typos, use only __HAVE_FAST_SOFTINTS.

(jakllsch)

2011-01-31 23:07:17 UTC MAIN commitmail json YAML

Let the linker instead of the C preprocessor configure the kernel: make
weak aliases device_register(9) and device_register_post_config(9)
for the stub routine voidop().  Get rid of __HAVE_DEVICE_REGISTER and
__HAVE_DEVICE_REGISTER_POST_CONFIG.

(dyoung)

2011-01-31 23:00:34 UTC MAIN commitmail json YAML

If there are readers or writers in the alldevs list, don't remove a
device_t out from under them, but tag it for deletion, later.

(dyoung)

2011-01-31 22:51:40 UTC MAIN commitmail json YAML

Fix emulation issue of SETVAL, and make the code look the same between the
two different versions.

(christos)

2011-01-31 22:04:26 UTC bouyer-quota2 commitmail json YAML

Extract code to shut down the rump server and check the filesystem image
to a function.

(bouyer)

2011-01-31 21:14:06 UTC bouyer-quota2 commitmail json YAML

2011-01-31 21:09:54 UTC bouyer-quota2 commitmail json YAML

On command with multiple data, make sure to reset 'defaultq' to 0.

(bouyer)

2011-01-31 19:41:19 UTC MAIN commitmail json YAML

deal with detecting the first and last cpu differently.

(christos)

2011-01-31 19:10:18 UTC MAIN commitmail json YAML

add braces, per joerg.

(christos)

2011-01-31 18:56:04 UTC MAIN commitmail json YAML

Make sure to getnlist in dovmstat

(matt)

2011-01-31 18:53:29 UTC MAIN commitmail json YAML

Now that PR/44302 is fixed, fs/vfs/t_ro:sysvbfs_rmfile should not fail
anymore.

(njoly)

2011-01-31 18:49:44 UTC MAIN commitmail json YAML

Add entry for usr/libdata/debug/usr/lib/sparc/libisns.so.0.0.debug

(matt)

2011-01-31 18:48:50 UTC MAIN commitmail json YAML

In sysvbfs_lookup(), deny last component write operation on a
read-only mount.
Fix PR/44302: sysvbfs allows unlink on fs mounted MNT_RDONLY.

Reviewed by pooka.

(njoly)

2011-01-31 18:28:05 UTC MAIN commitmail json YAML

2011-01-31 18:27:53 UTC MAIN commitmail json YAML

2011-01-31 18:21:33 UTC MAIN commitmail json YAML

Fix CPU_INFO_FOREACH.

(skrll)

2011-01-31 17:54:20 UTC MAIN commitmail json YAML

use of .PARSEDIR just doesn't work with .OBJDIR, replace with .CURDIR

(drochner)

2011-01-31 16:30:49 UTC MAIN commitmail json YAML

Make the Adaptec 1420SA entry match the Marvell 88SX6041 entry.

According to
http://lists.freebsd.org/pipermail/freebsd-current/2010-April/016973.html
the Adaptec 1420SA is a 88SX6041 (and the 1430SA is a 88SX7042).

This should fix the problem described in
http://mail-index.netbsd.org/current-users/2010/10/14/msg014526.html

(jakllsch)

2011-01-31 15:26:32 UTC bouyer-quota2 commitmail json YAML

2011-01-31 15:24:11 UTC bouyer-quota2 commitmail json YAML

Catch up with Q2V -> QL renaming
Enforce limits for quota2.
pass quota type (*QUOTA) and limit type (QL_*) to
KAUTH_REQ_SYSTEM_FS_QUOTA_NOLIMIT, to make it possible to skip
limit checks for some quota type only if a listener wants to.

(bouyer)

2011-01-31 15:19:21 UTC bouyer-quota2 commitmail json YAML

Rename defininition for limits Q2V_* to QL_* and move from quota2.h to quota.h.

(bouyer)

2011-01-31 15:07:29 UTC MAIN commitmail json YAML

bump down the recursion limit to 64.

(christos)

2011-01-31 15:06:02 UTC MAIN commitmail json YAML

not everyone has fenv.c, pointed by Havard Eidnes

(christos)

2011-01-31 14:11:02 UTC MAIN commitmail json YAML

Rename hppa_ncpus hppa_ncpu.

Increment for primary CPU only for now.

(skrll)

2011-01-31 12:10:59 UTC MAIN commitmail json YAML

This file needs opt_multiprocessor.h early so we pick up the right
definition from cpu.h, etc.

XXX should revisit the _STANDALONE vs _KERNEL split

(skrll)

2011-01-31 10:58:15 UTC MAIN commitmail json YAML

if using MAKEOBJDIRPREFIX, make sure to unset it since it would override
the use of MAKEOBJDIR.

(matt)

2011-01-31 10:01:26 UTC MAIN commitmail json YAML

Add test case for F_GETLK pid-oddness from PR kern/44494.

I found the test case a little difficult to understand (because of
many indices), so I added a few more comments after I think I
figured out what was going on.

(pooka)

2011-01-31 09:57:30 UTC MAIN commitmail json YAML

fix grammar in the same sentence as the previous patch, noted by jdc

(dholland)

2011-01-31 09:19:53 UTC MAIN commitmail json YAML

Add libarm and libpmc debug

(matt)

2011-01-31 08:25:32 UTC MAIN commitmail json YAML

Fix build with LOCKF_DEBUG on LP64 platforms; from Alexander Nasonov
in PR 44490.

(dholland)

2011-01-31 06:33:05 UTC MAIN commitmail json YAML

2011-01-31 06:28:06 UTC MAIN commitmail json YAML

2011-01-31 06:26:55 UTC MAIN commitmail json YAML

Define the L1* pte values.  Now pmap.h and pte.h no longer needed in .S files.

(matt)

2011-01-31 06:10:25 UTC MAIN commitmail json YAML

Generate addresses from this instead of including gemini.h

(matt)

2011-01-31 06:09:32 UTC MAIN commitmail json YAML

2011-01-31 06:05:54 UTC MAIN commitmail json YAML

2011-01-31 04:49:46 UTC MAIN commitmail json YAML

2011-01-31 04:20:50 UTC MAIN commitmail json YAML

Limit recursions to avoid DoS attacks from Maksymilian Arciemowicz

(christos)

2011-01-31 03:42:01 UTC MAIN commitmail json YAML

Add TOOL_MKUBOOTIMAGE

(matt)

2011-01-31 03:41:10 UTC MAIN commitmail json YAML

Make mkubootimage for evbmips and evbppc too.

(matt)

2011-01-31 03:37:29 UTC MAIN commitmail json YAML

2011-01-31 00:19:34 UTC MAIN commitmail json YAML

2011-01-31 00:10:06 UTC MAIN commitmail json YAML

enable this for amd64 too.

(christos)

2011-01-31 00:06:57 UTC MAIN commitmail json YAML

2011-01-31 00:05:29 UTC MAIN commitmail json YAML

make syscalls match documentation as far as pid_t goes.

(christos)

2011-01-31 00:01:07 UTC MAIN commitmail json YAML

clear register 0x41 as FreeBSD and OpenBSD do. Update copyright to the latest.

(christos)

2011-01-30 23:43:09 UTC MAIN commitmail json YAML

Enable 36-bit addressing for chipsets that support it.  While there,
factorize offset computation.  Inspired from OpenBSD and Intel docs.

Note: agp_i810_bind/unbind_page will now fail with EINVAL if the
physical address is too large for the chipset (instead of silently
truncating it).

ok jmcneill@

(gsutre)

2011-01-30 23:29:25 UTC MAIN commitmail json YAML

Move -offset option before column width arguments.

(njoly)

2011-01-30 23:04:52 UTC bouyer-quota2 commitmail json YAML

Also set and check the grace time in edquota tests.

(bouyer)

2011-01-30 22:49:32 UTC bouyer-quota2 commitmail json YAML

Allow edquota to edit per-user grace times on quota2 (or the default, global
grace times on quota1). Use re-use -t to specify the grace time on command
line; editing the grace time on quota1 is done with -d now.

(bouyer)

2011-01-30 22:36:38 UTC MAIN commitmail json YAML

2011-01-30 22:36:12 UTC MAIN commitmail json YAML

Tweak a comment.  Suggestion from rmind@.

(skrll)

2011-01-30 21:48:48 UTC MAIN commitmail json YAML

Add missing Ta macro.

(njoly)

2011-01-30 21:37:39 UTC bouyer-quota2 commitmail json YAML

Revert to previous format for timeprt, which is less precise but more
user-friendly. Introduce timepprt for cases where we want human-readable but
precise time display.

(bouyer)

2011-01-30 21:18:51 UTC MAIN commitmail json YAML

2011-01-30 20:54:23 UTC bouyer-quota2 commitmail json YAML

Change timeprt to print in weeks, days, hours, minutes, seconds
Change timeprt and intprt to take the number of acceptable char as argument
Drop HN_PRIV_UNLIMITED, the printable space will decide how to print
"unlimited"

(bouyer)

2011-01-30 19:49:48 UTC bouyer-quota2 commitmail json YAML

Remove rump.halt race workaround now that it's fixed in rump
Ajust for new quota tools output

(bouyer)

2011-01-30 19:38:46 UTC bouyer-quota2 commitmail json YAML

Implement "get version" quotactl command, which return the filesystem's
enabled quota versiob (1 for legacy, 2 for new).
For quota2, make quota and repquota print the user's allowed grace period
if -v is given and not overquota (if overquota, the remaining time is
printed instead, as usual).

(bouyer)