| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
| |
system calls (i.e. 8.0+), then invoke the system calls instead of using
open/fcntl/unlink.
Notes:
svn path=/stable/4/; revision=194744
|
| |
|
|
|
|
|
| |
feature is present by checking the kern.features sysctl MIB.
Notes:
svn path=/stable/4/; revision=193999
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=177307
|
| |
|
|
|
|
|
| |
syscall; it is only relevant for incoming data.
Notes:
svn path=/stable/4/; revision=169244
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=166406
|
| |
|
|
|
|
|
| |
cause readdir() to fail or give duplicate results or other strange things.
Notes:
svn path=/stable/4/; revision=162260
|
| |
|
|
|
|
|
|
|
| |
hostname. follow new recommendation in RFC3493.
PR: standards/94995
Notes:
svn path=/stable/4/; revision=157180
|
| |
|
|
|
|
|
|
|
|
|
|
| |
contains incorrect fractional second values (outside the range
0-999999).
Prior to this change users could create files with values outside
that range. Moreover, on 32-bit machines tv_usec offsets larger than
4.3s would result in an unnormalized AND wrong timestamp value,
due to overflow.
Notes:
svn path=/stable/4/; revision=154680
|
| |
|
|
|
|
|
|
|
| |
MULTI_PTRS_ARE_ALIASES define also, but res_config.h was not
included into libc/net/name6.c. So getipnodebyaddr() ignored
the multiple PTRs.
Notes:
svn path=/stable/4/; revision=152564
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=148531
|
| |
|
|
|
|
|
|
| |
Move initialization above point of first possible reference to
avoid overwriting ty_status values set from the 'type' field.
Notes:
svn path=/stable/4/; revision=148408
|
| |
|
|
|
|
|
|
|
|
|
| |
calls to getnetgrent() doesn't return bogus information.
MFC of 1.34: fix innetgr() returning false positives and negatives when reverse netgroup matching is used.
PR: 35506
Notes:
svn path=/stable/4/; revision=148406
|
| |
|
|
|
|
|
|
|
|
|
|
| |
from getnameinfo(3). This improves API compatibility with other POSIX
complaint operating systems.
PR: standards/80008
Requested by: Xin Liu <lx@knight.6test.edu.cn>
Reviewed by: freebsd-standards (das)
Notes:
svn path=/stable/4/; revision=146026
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
- replace use of a spinlock with a mutex.
- enclose getservby{name,port}(3) call with mutex lock.
- protect _hostconf_init_done and _hostconf_init() call with mutex lock.
lib/libc/net/getaddrinfo.c: 1.41
lib/libc/net/name6.c: 1.33
lib/libc/net/getnameinfo.c: 1.14.6.1, 1.14.6.2
Notes:
svn path=/stable/4/; revision=145897
|
| |
|
|
|
|
|
| |
'key' argument to mpool_open(3).
Notes:
svn path=/stable/4/; revision=142650
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=141177
|
| |
|
|
|
|
|
| |
PR: bin/75656
Notes:
svn path=/stable/4/; revision=140168
|
| |
|
|
|
|
|
| |
Pointy hat: kensmith
Notes:
svn path=/stable/4/; revision=140128
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
became necessary due to the plans for using linux_base-8 for the 4.11
release. Among other things running "/compat/linux/bin/ls -l" dumped
core because it tried to use completely non-existent system calls. We
don't actually implement the system calls it's trying to use but we at
least need to have something in place that returns an error code.
Things being added:
- wrapper for mmap2(2) from
sys/compat/linux/linux_machdep.c v1.31
sys/compat/linux/linux_dummy.c v1.35
- add dummy entries for fadvise64(2) and *xattr(2) family of syscalls from
sys/compat/linux/linux_dummy.c v1.37
- add ENOATTR error code because that is what the *xattr(2) family of
syscalls returns, which in turn required tweaking the error code
translation table in the NFS server code[1].
- add $FreeBSD$ token to lib/libc/gen/errlst.c so it passes pre-commit
check script...
[1] Noticed by rwatson.
Requested by: nectar
Reviewed by: nectar, sobomax, re@
Tested by: nectar, ceri
MFS after: 2 days
Notes:
svn path=/stable/4/; revision=140126
|
| |
|
|
|
|
|
|
|
|
|
|
| |
date: 2004/12/30 13:09:34; author: krion; state: Exp; lines: +3 -1
Add LOG_NTP facility.
Submitted by: Kurt Jaeger <pi at complx dot LF dot net>
Approved by: ru
MFC after: 3 days
Notes:
svn path=/stable/4/; revision=139571
|
| |
|
|
|
|
|
| |
sigismember(3) could return -1.
Notes:
svn path=/stable/4/; revision=139355
|
| |
|
|
|
|
|
| |
Requested by: roam
Notes:
svn path=/stable/4/; revision=139180
|
| |
|
|
|
|
|
|
| |
Submitted by: marck
Approved by: re (kensmith)
Notes:
svn path=/stable/4/; revision=138890
|
| |
|
|
|
|
|
|
| |
strerror_r() and the contents of the returned buffer for unknown
error codes.
Notes:
svn path=/stable/4/; revision=137900
|
| |
|
|
|
|
|
| |
Add support for eui64(5) to libc.
Notes:
svn path=/stable/4/; revision=136813
|
| |
|
|
|
|
|
|
|
| |
place during a split.
Obtained from: NetBSD
Notes:
svn path=/stable/4/; revision=135464
|
| |
|
|
|
|
|
| |
PR: bin/60524
Notes:
svn path=/stable/4/; revision=135361
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=134205
|
| |
|
|
|
|
|
| |
cross-reference these three pages. Also, bump the document date.
Notes:
svn path=/stable/4/; revision=134204
|
| |
|
|
|
|
|
| |
Obtained from: KAME
Notes:
svn path=/stable/4/; revision=134105
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=133339
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Prevent abnormal termination of a child daemon process when created
by a parent that is a session leader (e.g., login shell) by ignoring
SIGHUP before calling fork(2) and then restoring SIGHUP's action
after setsid(3). Based on the patch by Martin Kammerhofer
<mkamm@gmx.net>.
This has been in -current for 8 months with no reports of adverse
affects.
PR: bin/25462
Prompted-by: dada@sbox.tugraz.at
Notes:
svn path=/stable/4/; revision=132500
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=130790
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
sendfile(2)-related statistics that can be viewed through netstat -m:
- The number of times sendfile() had to do disk I/O
- The number of times sfbuf allocation failed
- The number of times sfbuf allocation had to wait
and three sysctl's: kern.ipc.nsfbufs, kern.ipc.nsfbufspeak,
kern.ipc.nsfbufsused that also can be viewed through netstat -m.
Submitted by: Igor Sysoev <is (at) rambler-co.ru>
Notes:
svn path=/stable/4/; revision=130618
|
| |
|
|
|
|
|
|
|
|
|
| |
the res_target structure. It was not a problem for now. But,
It should be fixed for a future.
PR: bin/67994
Submitted by: JINMEI Tatuya <jinmei@ocean.jinmei.org>
Notes:
svn path=/stable/4/; revision=130602
|
| |
|
|
|
|
|
|
|
| |
Fix the ordering in the description of the dlsym() lookup procedure to
reflect src/libexec/rtld-elf/rtld.c rev. 1.68 - the globally-loaded
objects (RTLD_GLOBAL) are searched before the local object's DAG's.
Notes:
svn path=/stable/4/; revision=130595
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=130279
|
| |
|
|
|
|
|
|
| |
Reviewed by: Daniel Eischen <deischen at freebsd.org>,
Robert Watson <rwatson at freebsd.org>
Notes:
svn path=/stable/4/; revision=130247
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=130058
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=130005
|
| |
|
|
|
|
|
|
| |
Clarify the issue of compatibility of different interfaces
to advisory locking.
Notes:
svn path=/stable/4/; revision=129900
|
| |
|
|
|
|
|
|
| |
Remove a trailing newline, to behave as documented in syslog(3):
"A trailing newline is added if none is present."
Notes:
svn path=/stable/4/; revision=129662
|
| |
|
|
|
|
|
|
|
|
| |
* Remove a long obsolete paragraph from the BUGS section.
* Bump the date.
Requested by: alc
Notes:
svn path=/stable/4/; revision=129520
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=129169
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=128858
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
revision 1.74
date: 2003/01/30 15:00:17; author: phk; state: Exp; lines: +4 -0
Catch some cases where asking for ridiculously large allocations could
result in a segfault. Instead just return NULL.
Requested by: JINMEI Tatuya <jinmei (at) isl.rdc.toshiba.co.jp> and so@
Reviewed by: phk (but he's not responsible if this makes 4.10 go boom :-)
Approved by: re (scottl)
Notes:
svn path=/stable/4/; revision=128477
|
| |
|
|
|
|
|
|
|
|
|
| |
o List some sysctl variables that influence accounting
o Add reference to accton.8
o Bump document date
Approved by: re (kensmith)
Notes:
svn path=/stable/4/; revision=128351
|
| |
|
|
|
|
|
|
|
|
| |
of NS_NOTFOUND. This gets getipnodebyname(3) to correctly return
h_errno=TRY_AGAIN instead of HOST_NOT_FOUND.
Approved by: re (scottl)
Notes:
svn path=/stable/4/; revision=128173
|
| |
|
|
|
|
|
|
|
| |
Shave-off troff cycles by invoking .Fa only once.
Submitted by: ru
Notes:
svn path=/stable/4/; revision=127446
|
| |
|
|
|
|
|
| |
Document missing EFAULT errno value.
Notes:
svn path=/stable/4/; revision=127200
|