| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
support.
X-MFC after: never
|
|\
| |
| |
| | |
which included commits to RCS files with non-trunk default branches.
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
have such a reference. Add a reference instead to SA_RESTART in
sigaction(2).
|
| |
| |
| |
| | |
MFC after: 1 week
|
| |
| |
| |
| |
| | |
PR: 97485
Submitted by: Mikko Tyolajarvi < mbsd at pacbell dot net >
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
objects with SF_IMMUTABLE, SF_APPEND, or SF_NOUNLINK.
* Document that non-superusers cannot set or clear any SF_* flag
(setting fails with EPERM, clearing is silently ignored).
* Document that superusers cannot change any flag if one of
SF_IMMUTABLE, SF_APPEND, SF_NOUNLINK is set and securelevel is
greater than 0.
* Document SF_SNAPSHOT and note that it is maintained by the
system and is, for this reason, impossible to set to clear by
any user.
PR: docs/33877
Submitted by: harti
Help by: George Marsellis <gam9478@njit.edu>
MFC after: 1 week
|
| |
| |
| |
| | |
Discussed with: ru
|
| |
| |
| |
| |
| |
| |
| |
| | |
the namespace of applications which inadvertantly link in libssh (usually
through pam_ssh)
Suggested by: lukem@netbsd.org
MFC after: 6 weeks
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
http://www.opengroup.org/onlinepubs/009695399/functions/gethostbyaddr.html
gethostbyaddr_r() is changed as well.
It breaks ABI backward compatibility on 64 bit arch. So, we fix it
on 32 bit arch only for now.
Reported by: Rostislav Krasny <rosti.bsd@gmail.com>
|
| |
| |
| |
| | |
may change errno unexpectly.
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| | |
4kB pages), in order to avoid dangerous rounding error when calculating
fullness limits during run promotion/demotion.
Convert a structure bitfield to a normal field in areana_run_t. This should
have been changed along with the other fields in revision 1.120.
|
| |
| |
| |
| |
| |
| | |
movw for segment saving and restoring.
Submitted by: Diego 'Flameeyes' Petteno flameeyes at gentoo dot org
|
| | |
|
| |
| |
| |
| |
| |
| | |
Reported by: Pascal Hofstee <caelian__at__gmail.com>
Submitted by: Michael Bushkov <bushman__at__rsu.ru>
Tested by: Pascal Hofstee <caelian__at__gmail.com>
|
| |
| |
| |
| |
| |
| |
| | |
in part by OpenBSD's not-quite-standard-compliant
standard libraries. (No loss of functionality,
just minor recoding to not rely on certain "standard"
facilities that weren't actually needed.)
|
| | |
|
| |
| |
| |
| | |
Submitted by: "Michael Bushkov" <bushman__at__rsu.ru>
|
| |
| |
| |
| | |
Approved by: scottl (implicit)
|
| |
| |
| |
| |
| |
| |
| | |
the passthru device fails.
Approved by: scottl
MFC after: 1 day
|
| |
| |
| |
| |
| |
| |
| |
| | |
databases.
- Make nsswitch support caching.
Submitted by: Michael Bushkov <bushman__at__rsu.ru>
Sponsored by: Google Summer of Code 2005
|
| | |
|
| |
| |
| |
| |
| | |
and sched_get_priority_max() syscalls.
- Remove unused fields from structure pthread_attr.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
bounds. [1]
Modify logic for utilizing the data segment, such that it is possible to
create huge allocations there.
Shrink the data segment when deallocating a chunk, if it is at the end of
the data segment.
Rename chunk_size to csize in huge_malloc(), in order to avoid masking a
static variable of the same name. [1]
Reported by: Paul Allen <nospam@ugcs.caltech.edu>
|
| |
| |
| |
| |
| |
| | |
PR: bin/96326
Submitted by: Alex Kozlov
MFC after: 2 weeks
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
subject: ranges of uid, ranges of gid, jail id
objects: ranges of uid, ranges of gid, filesystem,
object is suid, object is sgid, object matches subject uid/gid
object type
We can also negate individual conditions. The ruleset language is
a superset of the previous language, so old rules should continue
to work.
These changes require a change to the API between libugidfw and the
mac_bsdextended module. Add a version number, so we can tell if
we're running mismatched versions.
Update man pages to reflect changes, add extra test cases to
test_ugidfw.c and add a shell script that checks that the the
module seems to do what we expect.
Suggestions from: rwatson, trhodes
Reviewed by: trhodes
MFC after: 2 months
|
| | |
|
| |
| |
| |
| | |
Spotted by: Antoine Brodin (antoine _dot_ brodin _at_ laposte _dot_ net)
|
| |
| |
| |
| | |
of FreeBSD private symbols.
|
| |
| |
| |
| |
| |
| | |
Linux also provides an fcloseall() implementation.
Discussed on: arch
|
| |
| |
| |
| | |
Submitted by: fanf
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
far more convenient for libkvm to work with because of the page table
block at the beginning. As a result, the MD code is smaller.
libkvm will automatically detect old vs mini dumps on i386 and amd64.
libkvm will handle i386 PAE and non-PAE modes. There is a PAE flag in
the i386 minidump header to signal the width of the entries in the
page table block.
Other convenient values are also present, such as kernbase and the direct
map addresses on amd64.
|
| |
| |
| |
| |
| | |
Submitted by: markus
MFC after: 3 days
|
| |
| |
| |
| |
| |
| | |
PR: docs/95059
Submitted by: Jos Backus
MFC after: 4 days
|
| |
| |
| |
| |
| |
| | |
PR: docs/80070
Submitted by: Aleksej Saushev
MFC after: 2 weeks
|
| |
| |
| |
| |
| |
| |
| | |
this means they should set the cmpe flag when calling __fpu_compare().
Submitted by: stefanf
MFC after: 2 weeks
|
| |
| |
| |
| |
| |
| |
| | |
expose them to outside of libc.
- make netdb functions NSS friendly.
Reviewed by: arch@ and current@ (no objection)
|
| |
| |
| |
| |
| |
| |
| | |
this or the deprecated POSIX functions {e,g,f}cvt() have
newer versions that do not (rely on them).
Requested by: marius
|
| |
| |
| |
| |
| |
| | |
PR: docs/78479
Submitted by: Mikko Tyolajarvi
MFC after: 2 weeks
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
in /bin or /sbin.
Not objected to by: phk
|
| |
| |
| |
| |
| |
| | |
/sbin/ipf and /sbin/pflogd.
OK'ed by: mlaier
|
| |
| |
| |
| | |
Ok'ed by: davidxu
|