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 (9h)  netbsd-10 (17d)  netbsd-9 (17d)  netbsd-8 (22d) 

2024-06-03 11:50:53 UTC Now

2015-06-03 23:15:22 UTC MAIN commitmail json YAML

Fix expand() to process successive escape sequences correctly.

(enami)

2015-03-03 01:24:39 UTC MAIN commitmail json YAML

Also hijack futimens(2) so that t_sh test passes.

(enami)

2015-03-03 00:20:38 UTC MAIN commitmail json YAML

Fix the name of failed function in warning message.

(enami)

2015-03-03 00:19:07 UTC MAIN commitmail json YAML

Hijack utimensat(2) so that t_vfs test passes after cp(1)/mv(1) are
changed to use the system call.  Linux also has this system call, but
not tested this on linux.

(enami)

2015-03-02 03:17:24 UTC MAIN commitmail json YAML

Don't truncate at sub-microsecond while preserving timestamps.

One of motivation of this change is to make the behavior of test(1)
-nt/ot with preserved copy (like cp -p) closer to the NetBSD 6.
Of course whether full timestamps are kept or not depends also on
underlying file system.

The ifdef added in mv(1) since existing ifdefs was our local change
to compile it on solaris (though I couldn't test it):
http://mail-index.netbsd.org/tech-userlevel/2014/11/28/msg008831.html

(enami)

2015-02-17 23:07:56 UTC MAIN commitmail json YAML

Make this file compiles again with BGE_DEBUG defined.

(enami)

2014-11-26 23:44:21 UTC MAIN commitmail json YAML

Changes done in rsh.c rev. 1.35 was incomplete.  As chuq pointed
in private mail, it broke rcp(1).

To achieve the documented behavior and to fix long standing incorrect
rsh(1) behavior which I've tried to fix in rev. 1.35, rcmd(1) should have
two operation mode; whether it should relay signal information on
auxiliary channel or not, depending on the argument `fd2p' passed to rcmd(3).
So, make rcmd(1) behave differntly depending on the environment variable and
set it when necessary in rcmd(3) according to how auxiliary channel
is set up by rcmd(3).

(enami)

2014-11-12 03:49:26 UTC MAIN commitmail json YAML

List missing compatmodules keyword in the comment.

(enami)

2014-11-12 03:48:30 UTC MAIN commitmail json YAML

Add compatmodules keyword so that build.sh -V MKCOMPATMODULES=no won't fail.

(enami)

2014-10-11 06:25:32 UTC MAIN commitmail json YAML

- Explicitly describe that kvm(3) is used when -M/-N option is used since
  nowadays sysctl(3) is the default information retrieval method.
- Fix description about default value for -N; it is no longer a single value
  these days, so just say see kvm_openfiles(3) rahter than repeating
  several lines description here.

(enami)

2014-10-09 23:52:47 UTC MAIN commitmail json YAML

As described in kvm_openfiles(3), default core file is not /dev/kmem
but /dev/mem.  Actually, passing /dev/kmem to -M doesn't work.

(enami)

2014-10-09 23:45:47 UTC MAIN commitmail json YAML

Fix a bug introduced in rev. 1.62; it fails to negate (a && b).

(enami)

2014-09-03 23:59:58 UTC MAIN commitmail json YAML

2014-06-08 02:44:15 UTC MAIN commitmail json YAML

Fix signal delivery to remote process; As described in rcmd(3), a signal
is delivered to the remote process via the secondary channel.  So,
the backend driver, rcmd(1), is responsible to watch the file descriptor 2
and transfer the data to the remote process, rather than receiving signal
by itself.  Previously, signal generated by tty was sent since rcmd was
incorrectly generated the data, but, for example, signal sent to rsh command
by kill command was ignored.

(enami)

2014-06-08 02:02:41 UTC MAIN commitmail json YAML

Whitespace nits.

(enami)

2014-06-08 01:44:52 UTC MAIN commitmail json YAML

Remove kerberos support code completely.  It no longer compiles anyway.
OK'ed by christos on tech-userlevel.

(enami)

2013-05-24 03:20:18 UTC MAIN commitmail json YAML

Update ERRORS section:
- Remove some system calls from the list of functions which may set errno
  during the execution of realpath(3) since they are no longer used
  to implement it.
- Document some errno set by the realpath(3) itself.

(enami)

2013-03-05 03:11:27 UTC MAIN commitmail json YAML

- Refer the argument with correct name.
- Mark up the function as a function like rest of this paragraph does.

(enami)

2012-10-24 01:12:52 UTC MAIN commitmail json YAML

The id chgrp command is required to change is not uid but gid.

(enami)

2012-06-21 23:29:23 UTC MAIN commitmail json YAML

All error path must go through the free function call after an
allocation of resolved path might succeeded.

(enami)

2012-04-26 00:21:44 UTC MAIN commitmail json YAML

Store allocated lwpctl state in the thread actually forked,
which is the only thread lives in the child process.

The problem originally reported here:
  https://bugs.ruby-lang.org/issues/6341

(enami)

2011-12-02 04:05:20 UTC MAIN commitmail json YAML

Add missing -F flag and -I flag in usage.  Sort the order to match
manpage.

(enami)

2011-11-26 14:04:20 UTC MAIN commitmail json YAML

Use exact 32bit integral type to declare variable to store
32bit random value.  This is necessary since it is overwritten
by four bytes.

(enami)

2011-11-26 13:53:37 UTC MAIN commitmail json YAML

Fix white space usage.

(enami)

2011-11-17 02:41:55 UTC MAIN commitmail json YAML

Replace section number with actual one as we did in see also list.

(enami)

2011-08-29 00:36:20 UTC MAIN commitmail json YAML

No need to print internal state once debug is done.

(enami)

2011-08-22 22:14:46 UTC MAIN commitmail json YAML

Fix the name of syscall which takes timespec as argument.

(enami)

2011-08-22 22:12:34 UTC MAIN commitmail json YAML

Remove return statement which can't be reached.

(enami)

2011-08-22 22:09:07 UTC MAIN commitmail json YAML

When both nanoseconds fields of futimens/utimensat call are set
to UTIMES_NOW, act as if NULL is passed to second argument, i.e.,
do same permission check and set exactly same value to both access
and modification time.

(enami)

2011-08-08 06:30:43 UTC MAIN commitmail json YAML

Bounds process's stack size with max_stack_size so that 32bit
binary works regardless of stack size limit setting.

(enami)

2011-08-03 00:22:05 UTC MAIN commitmail json YAML

Replace the word `NetBSD' with `SuSE' in the rest of comments
for the cpp macro constatnt ELF_NOTE_SUSE_*.

(enami)

2011-07-19 23:13:31 UTC MAIN commitmail json YAML

Build v7fs module on all architecture rather than only on i386.

(enami)

2011-06-30 00:37:08 UTC MAIN commitmail json YAML

Backout previous.  May be I need more coffee.

(enami)

2011-06-30 00:09:27 UTC MAIN commitmail json YAML

- Use << PAGE_SHIFT rather than calling round_page again.
- No need to call uao_dropswap_range() here since uao_dropswap()
  is already called for each pages by uvm_vnp_setsize().

(enami)

2011-06-27 00:45:50 UTC MAIN commitmail json YAML

Don't increment ip_nfragpackets when failed to allocate fragment queue.
No one will decrement it on such case.

(enami)

2011-06-23 02:35:56 UTC MAIN commitmail json YAML

Move inclusion of sys/endian.h from cd9660_eltorito.c to cd9660.h
since actual user is not cd9660_eltorito.c but iso.h and
cd9660_eltorito.h.

Actually, include order/place of sys/endian.h doesn't matter on
netbsd since it is always included by sys/types.h but it's not
true on other system.  This should fix cross build breakage on
freebsd introduced by rev. 1.16 of cd9660_eltorito.c.
Problem reported and fix suggested on twitter.

(enami)

2011-06-20 08:27:15 UTC MAIN commitmail json YAML

Now need to use own buffer for klog read due to previous change.

(enami)

2011-06-20 00:42:12 UTC MAIN commitmail json YAML

Defer the processing of incomplete line at the end of buffer so that
kernel printf messages logged to /var/log/messages become always
easier to read.

(enami)

2011-05-31 02:34:32 UTC MAIN commitmail json YAML

Don't touch before the mmap'ed region.

(enami)

2011-05-17 03:35:39 UTC MAIN commitmail json YAML

Use Pq or Po macro for better output rather than putting raw open paren
at the end of line.

(enami)

2011-05-10 23:33:07 UTC MAIN commitmail json YAML

According to their home page, N of IANA is plural.

(enami)

2011-05-10 04:40:16 UTC MAIN commitmail json YAML

Use ptrdiff_t to hold pointer difference to avoid coredump on LP64 system.

(enami)

2011-04-21 00:24:07 UTC MAIN commitmail json YAML

lwpaddr is a boolean variable and thus doesn't hold an address of lwp.
Compare with correct value so that tr/t works again on current procecss.

(enami)

2011-04-20 23:37:51 UTC MAIN commitmail json YAML

- Put empty line after the local variable definition in the sample code
  to improve readability.
- Remove indirection operator to clarify error condition.

(enami)

2011-04-05 02:52:28 UTC MAIN commitmail json YAML

Unconfigure on shutdown so that component deivces are closed.

(enami)

2011-03-21 23:37:42 UTC MAIN commitmail json YAML

Don't use #endif where #else is expected.

(enami)

2011-03-07 03:29:26 UTC MAIN commitmail json YAML

2011-02-19 08:46:41 UTC MAIN commitmail json YAML

Fix userland build.

(enami)

2011-02-19 07:11:10 UTC MAIN commitmail json YAML

2011-02-14 02:43:37 UTC MAIN commitmail json YAML

A number greater than or equal to 1.0 is a positive number.

(enami)

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

Put space after comma and around binary operator.

(enami)

2011-02-13 06:17:36 UTC MAIN commitmail json YAML

Remove one of trailing whitespace which adds unnecessary difference
against netbsd-5 branch.

(enami)

2011-02-10 05:07:46 UTC MAIN commitmail json YAML

Start new line before issuing IDENTIFY command since messages from
other driver may interfere during waiting for command completion.

(enami)

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

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

(enami)

2011-01-26 08:49:49 UTC MAIN commitmail json YAML

Introducing inner loop prevent us from exiting from the original loop.

(enami)

2011-01-25 03:34:30 UTC MAIN commitmail json YAML

Remove nop code; the code is moved to uao_dropswap_range1() when it is
introduced in rev. 1.75.

(enami)

2011-01-24 10:22:15 UTC MAIN commitmail json YAML

roundup2(x, y) does not assume that x is power of 2, but y is.

(enami)

2011-01-06 05:51:57 UTC MAIN commitmail json YAML

Fix bugs introduced by previous commit; allocated page needs to be bound
with the anon, and uvmfault_anonget may be called with ufi NULL.

(enami)

2011-01-05 21:20:44 UTC MAIN commitmail json YAML

Fix format string; use PRIu64 for uint64_t.

(enami)

2010-12-24 23:39:19 UTC MAIN commitmail json YAML

We still need to update ouvmexp to output the differene from
previous iteration.

(enami)

2010-12-22 09:42:53 UTC MAIN commitmail json YAML

Add iseek and oseek option as aliases for skip and seek respectively.
These options exist in dd of solaris or svr3.  From FreeBSD.

(enami)

2010-12-22 09:39:06 UTC MAIN commitmail json YAML

Copy argument before modifying it so that ps shows entire argument.
From OpenBSD via FreeBSD.

(enami)

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

2010-12-09 10:24:56 UTC MAIN commitmail json YAML

Wrap long line.

(enami)

2010-12-07 09:00:24 UTC MAIN commitmail json YAML

Fix SYNOPSIS; pkill accepts -l options since 3 years ago.  `pattern' is
mandatory for all commands and `priority' is mandatory for prenice.

(enami)

2010-11-16 03:49:54 UTC MAIN commitmail json YAML

Nowadays, comparing priority against PZERO doesn't make any sense.
Instead, see if a process waits uninterruptibly like ps does,
so that the second column (`b') of default vmstat output prints
some useful value (-t is still broken though).

(enami)

2010-11-16 03:02:20 UTC MAIN commitmail json YAML

Fix typos in comment.

(enami)

2010-11-10 02:40:08 UTC MAIN commitmail json YAML

Clear all entries past the NULL while scrubing environ vector.

(enami)

2010-11-10 02:33:49 UTC MAIN commitmail json YAML

Indent using tab rather than four spaces.

(enami)

2010-11-08 09:43:27 UTC MAIN commitmail json YAML

Fix typo in previous commit.

(enami)

2010-11-08 03:20:59 UTC MAIN commitmail json YAML

- Add library section.
- Fix function signatures.
- Describe added member to an ops structure.
- Describe rb_tree_remove_node.

(enami)

2010-11-02 03:44:05 UTC MAIN commitmail json YAML

- Simplify the code
- Reword the comment.

(enami)

2010-11-01 02:41:27 UTC MAIN commitmail json YAML

Double the array only when really necessary.  Otherwise memory will be
exhausted if user modifies the variable envrion itself repeatedly..

(enami)

2010-10-07 00:14:14 UTC MAIN commitmail json YAML

The was is not an argument but simply a part of sentense.

(enami)

2010-10-06 07:39:37 UTC MAIN commitmail json YAML

Don't free memory still in use.  Fixes nfs root problem reported
by Christoph Egger on source-changes-d.

(enami)

2010-10-05 02:23:39 UTC MAIN commitmail json YAML

Avoid unnecessary malloc().  Since __findenv() kindly treats
equal sign as an end of string, we can pass the string of
form "key=value" to lookup "key".

(enami)

2010-09-29 00:44:05 UTC MAIN commitmail json YAML

If new length is exactly equals to the current length,
there is nothing to do.

(enami)

2010-09-29 00:40:17 UTC MAIN commitmail json YAML

Don't put space before close paren.

(enami)

2010-09-28 00:39:56 UTC MAIN commitmail json YAML

Add missing period at the end of sentense.

(enami)

2010-08-31 07:48:23 UTC MAIN commitmail json YAML

Define db_hist_put() only when DDB_HISTORY_SIZE != 0 so that
build successes on ports like hpcarm.

(enami)

2010-08-31 07:12:55 UTC MAIN commitmail json YAML

Fix indent in prevous commit.

(enami)

2010-08-31 05:12:35 UTC MAIN commitmail json YAML

Move prototype of isrmt() to rmt.h.  It is a public interface
described in rmtops(3).

(enami)

2010-08-31 05:07:10 UTC MAIN commitmail json YAML

Backout previous; it was wrong fix.

(enami)

2010-08-31 04:50:07 UTC MAIN commitmail json YAML

Fix build as tools.

(enami)

2010-08-31 03:16:06 UTC MAIN commitmail json YAML

- Raise an error rather than silently creating broken archive
  if user don't specify --force-local but opened file is actually
  a local file.
- Make cpio to accept -F option as described in manpage.
- Make pax to set forcelocal flag if requested to do so.
- Add missing break statement.

(enami)

2010-08-18 02:53:54 UTC MAIN commitmail json YAML

Fix broken indentation.  No functional change.

(enami)

2010-07-26 02:51:57 UTC MAIN commitmail json YAML

cat9/vprint.0 is still there.  Salvage the deleted line by previous commit
to fix build breakage.

(enami)

2010-07-13 01:42:22 UTC MAIN commitmail json YAML

Make this compile again.

(enami)

2010-07-09 07:04:31 UTC MAIN commitmail json YAML

Line up total numbers again.

(enami)

2010-03-15 03:27:49 UTC MAIN commitmail json YAML

The monitor struct member is gone.  Make this compile again.

(enami)

2010-03-15 00:47:38 UTC MAIN commitmail json YAML

Sync SYNOPSIS with the actual configuration file.

(enami)

2010-03-11 21:37:01 UTC MAIN commitmail json YAML

Since we have st_birthtime in struct stat, it is in default display.

(enami)

2010-03-11 10:38:37 UTC MAIN commitmail json YAML

2010-03-11 10:35:59 UTC MAIN commitmail json YAML

2010-03-11 10:35:22 UTC MAIN commitmail json YAML

Add device id of yurex from OpenBSD.

(enami)

2010-03-04 22:48:31 UTC MAIN commitmail json YAML

Fix race condition on reallocation of huge category.

We need to remove the old region before mremap() since if it relesae the
old region, other thread may map it for the same huge category allocation
and insert it to the tree before we acquire a lock after mremap().

Fixes PR/42876.

(enami)

2010-02-05 21:58:42 UTC MAIN commitmail json YAML

Don't touch past the end of allocated region.  It results segmentation
violation.

(enami)

2009-12-15 00:35:36 UTC MAIN commitmail json YAML

Put space after comma in the C code example.

(enami)

2009-12-14 01:48:34 UTC MAIN commitmail json YAML

2009-12-02 09:34:51 UTC MAIN commitmail json YAML

Retain old variables when failed to allocate memory.

(enami)

2009-11-27 12:37:19 UTC MAIN commitmail json YAML

The expression (yyvs != 0) is always true and not a necessary test
in the first place since realloc(NULL, size) is equivalent to
malloc(size).  Write code straightforward while i'm here.

(enami)

2009-11-27 02:51:15 UTC MAIN commitmail json YAML

Lookup lwp0.l_addr instead of proc0paddr to locate PCB.

(enami)

2009-11-19 03:01:06 UTC MAIN commitmail json YAML

Fix indentation, wrap long line and remove unused variable.

(enami)

2009-11-19 02:59:34 UTC MAIN commitmail json YAML

Add missing vfs_unbusy() call in error path of sysctl_kern_vnode().
This allows us to reboot machine successfully even if pstat -v fails once.

(enami)

2009-11-19 02:52:54 UTC MAIN commitmail json YAML

Prevent sign extension when reading device number in ufs1 on disk inode
so that devname(3) correctly converts it to device filename.

(enami)

2009-11-18 00:28:09 UTC MAIN commitmail json YAML

Add an entry for AVlab's low profile PCI 4 port serial card, which is
sold in japan from kuroutoshikou as SERIAL4P-LPPCI2.

(enami)

2009-11-06 22:02:35 UTC MAIN commitmail json YAML

Accept -U num.  Nowadays, diff(1) rejects -u0 etc by default.

(enami)

2009-10-16 00:45:26 UTC MAIN commitmail json YAML

Since the aprint_normal_dev() several lines above prints a space
after the device name, no need to prepend the space here.

(enami)

2009-10-15 03:21:45 UTC MAIN commitmail json YAML

There is no variable called __SRC_TOP_OBJ__.  Use the correct one instead.

(enami)

2009-08-25 09:27:25 UTC MAIN commitmail json YAML

- The value getdbent() returns when no record is found is not -1 but 1.
  Testing if it returns -1 is always false.
- Use the same expression for the size to write and for the size to
  advance a pointer.

(enami)

2009-08-12 23:51:23 UTC MAIN commitmail json YAML

2009-04-02 00:19:03 UTC MAIN commitmail json YAML

So that profile kernel runs again,
- Adjust the size of functions used to patch.
- Fix the jump offset of mcount call when patching functions.

Approved by Andrew Doran.

(enami)

2009-02-19 03:18:19 UTC MAIN commitmail json YAML

Sync ioctl arguments with reality; they are changed 3 years ago.

(enami)

2009-02-15 03:52:49 UTC MAIN commitmail json YAML

Simplify the code; we already have a hint to decide which string to copy.
(And at least gcc generates better code.)

(enami)

2009-02-15 03:45:44 UTC MAIN commitmail json YAML

Fix compiler warning.

(enami)

2009-02-15 00:07:55 UTC MAIN commitmail json YAML

The knote objects attached by peer will still be linked in our list
if we are closed before the peer.  So, remove them.  It didn't matter
when pipe objects are directly returned to pool, but nowadays they
are cached.

(enami)

2009-02-11 00:32:45 UTC MAIN commitmail json YAML

s/NOFOLLOW/FOLLOW/ in NDINIT so that it matches actual behavior
which is controlled by NO_FOLLOW bit passed in 2nd arg of vn_open().

(enami)

2009-02-11 00:20:18 UTC MAIN commitmail json YAML

2009-02-11 00:19:11 UTC MAIN commitmail json YAML

Make module (auto)loading under chroot envrionment actually work:
- NOCHROOT flag must be assigned to different bit from TRYEMULROOT
  since the code expected to be executed is in the else clase of
  if (flags & TRYEMULROOT).
- Necessary variables aren't set.

(enami)

2009-02-06 23:56:26 UTC MAIN commitmail json YAML

Previous code ususally works since compiler won't put gap between
those struct members but there is no reason to rely on that.
While here, I rewrite the loop using an usual idiom.  It shaves
both source and object code.

(enami)

2009-02-06 23:04:57 UTC MAIN commitmail json YAML

Instead of missing NULL check in pipe_create, let the pipe_ctor to wait
on buffer allocation.  The other allocation is simply an optimization,
so leave it as is.

(enami)

2009-02-06 22:58:49 UTC MAIN commitmail json YAML

Use same expression to decide to use pool cache or not in both
kmem_alloc/free.

(enami)

2009-02-05 13:37:24 UTC MAIN commitmail json YAML

Make revoke(2) works as before:
- vfs_syscalls.c rev. 1.342 fails to invert condition correcly when
  then-clause and else-clause is swapped.  Since then, revoke(2) fails
  if it is issued by file owner.
- Probably since rev. 1.160 of genfs_vnops.c, revoke(2) fails if it is
  applied to non-device file and drops kernel into ddb.

(enami)

2009-02-02 11:19:29 UTC MAIN commitmail json YAML

- An errno is missed in rev. 1.11 while converting return statement to
  goto statement.
- A local variable still in use is intercepted in rev. 1.6.  Define and
  use variable of its own.

(enami)

2009-01-30 11:55:04 UTC MAIN commitmail json YAML

Use indent-synopsis instead of iS register.  The latter is a register
used in BSD derived .Nm implementation.

(enami)

2009-01-29 10:41:39 UTC MAIN commitmail json YAML

Put back rev. 1.20 so that nbpwd_mkdb built on 32bit time_t host generates
correct pwd.db.

(enami)

2009-01-29 07:48:39 UTC MAIN commitmail json YAML

Avoid infinite loop.

(enami)

2009-01-21 00:54:05 UTC MAIN commitmail json YAML

Fix a bug introduced by rev. 1.311.  Make the kern.vnode sysctl to expose
correct address of each vnode to userland again.

(enami)