Aleksandr Rybalko
45dc370059
Allow to disable some special key combinations handled by vt(4), like debug
...
request, reboot request.
Requested by: Claude Buisson
Sponsored by: The FreeBSD Foundation
2014-08-03 13:07:25 +00:00
Hiren Panchasara
8aeed43915
Add myself to committers-src.dot.
...
Better late than never :-)
2014-08-03 00:29:03 +00:00
Hans Petter Selasky
aa88ccab1b
- Spelling corrections
...
Suggested by: Garrett Cooper <yaneurabeya@gmail.com>
PR: 192101
2014-08-02 18:37:08 +00:00
Enji Cooper
04cadbc959
Add myself to calendar.freebsd and committers-src.dot
...
Phabric: D522
Reviewed by: jmmv
Approved by: jmmv (co-mentor)
2014-08-02 16:45:55 +00:00
George V. Neville-Neil
46b315b29a
Various style(9) and related fixes.
...
Update the copyright to be more in line with the current version in
our tree.
Remove the ancient rcsid.
Add a proper return from the main function
Pointed out by: bz
2014-07-31 18:02:38 +00:00
Hans Petter Selasky
5eb1caa8c8
- Updated SYSCTL manual pages after recent changes to the kernel
...
SYSCTL code. Added description of new macros and functions.
- Merged dynamic and static SYSCTL related content into a single
manual page, hence parameters and functionality is very much the same.
- Uppercased all occurrences of "OID".
- Updated all SYSCTL examples.
PR: 192101
2014-07-31 17:18:40 +00:00
George V. Neville-Neil
ea43014585
Add an example program to show how to use libpmc from a program.
...
This particular program attempts to use the TSC to measure how long
certainly libpmc operations take. Depending on the quality of
the rdtsc() macro on a particular architecture this may work
more or less well.
2014-07-31 09:18:15 +00:00
Glen Barber
27c095f49e
Remove trailing comma from ending Xref
...
MFC after: 3 days
Sponsored by: The FreeBSD Foundation
2014-07-30 04:48:56 +00:00
Glen Barber
a5e1109a6e
Remove trailing comma from ending Xref
...
MFC after: 3 days
Sponsored by: The FreeBSD Foundation
2014-07-30 04:48:20 +00:00
Glen Barber
f7a4bc621b
Remove trailing comma from ending Xref.
...
MFC after: 3 days
Sponsored by: The FreeBSD Foundation
2014-07-30 04:47:39 +00:00
Glen Barber
e550cb2f38
Remove trailing comma from standalone Xref.
...
MFC after: 3 days
Sponsored by: The FreeBSD Foundation
2014-07-30 04:46:53 +00:00
Joel Dahl
ff275dea7e
mdoc: remove superfluous paragraph macro.
2014-07-29 19:43:00 +00:00
Joel Dahl
534ade2c95
Silence mandoc lint.
2014-07-29 19:41:00 +00:00
Gleb Smirnoff
9753faf553
Garbage collect couple of unused fields from struct ifaddr:
...
- ifa_claim_addr() unused since removal of NetAtalk
- ifa_metric seems to be never utilized, always a copy of if_metric
2014-07-29 15:01:29 +00:00
Sergey Kandaurov
c07f78a0b1
Add VOP_GETVOBJECT.9 to obsolete files, un-xref.
...
X-MFC with: r269160
2014-07-29 13:40:33 +00:00
Simon J. Gerraty
faa8fa9077
We do not ever want _srcconf_included_ as MAIN target.
2014-07-28 23:36:21 +00:00
Konstantin Belousov
c448f58f45
Explicitely mention that inactivated or reclaimed vnode is locked
...
exclusively.
Sponsored by: The FreeBSD Foundation
MFC after: 3 days
2014-07-27 20:55:47 +00:00
Konstantin Belousov
169b6a554f
Remove man page for non-existent VOPs.
...
Sponsored by: The FreeBSD Foundation
MFC after: 3 days
2014-07-27 20:48:56 +00:00
Konstantin Belousov
e4bf26280f
Correct the locking statement.
...
Sponsored by: The FreeBSD Foundation
MFC after: 3 days
2014-07-27 20:47:06 +00:00
Simon J. Gerraty
5b6dc2efc9
Reviewed by: imp
...
LDFLAGS is supposed to be given to CC not LD.
Define _LDFLAGS as a filtered version of LDFLAGS safe to give to LD
2014-07-26 04:38:09 +00:00
Warner Losh
8ca0d5ad1d
Document an important, but easy to overlook without grepping the
...
entire tree, detail about LDFLAGS.
2014-07-25 21:10:30 +00:00
Kevin Lo
6cf8764e75
Add net80211 and minor cleanup.
2014-07-25 10:27:36 +00:00
Sergey Kandaurov
b679017609
- Use Rs/Re mdoc macros.
...
- Remove duplicate and/or redundant content.
2014-07-23 18:54:18 +00:00
Sergey Kandaurov
d0999e70b6
Re-sort synopsis, add includes.
2014-07-22 22:39:59 +00:00
Sergey Kandaurov
814de63043
s/PCBGROUPS/PCBGROUP/ manpage to match "options PCBGROUP".
2014-07-22 22:16:23 +00:00
Sergey Kandaurov
0d93965f43
Grammar and spelling fixes.
2014-07-22 19:37:38 +00:00
Simon J. Gerraty
49217bc51e
bsd.lib.mk does not add OBJS etc to CLEANFILES so does not automatically
...
get them flagged as .NOPATH. This hurts people who don't use obj dirs.
Since its clean target seprate rm's for things, use NOPATH_FILES as list
to collect things that need .NOPATH.
bsd.obj.mk will add CLEANFILES to NOPATH_FILES and do the deed if needed.
Reviewed by: sbruno
2014-07-22 00:42:55 +00:00
Sergey Kandaurov
b2cd178ea2
Fixed fallout from previous change.
2014-07-21 08:47:54 +00:00
Sergey Kandaurov
37d1fbc39f
[mdoc] cleanup
2014-07-21 08:42:35 +00:00
Adrian Chadd
803b5af467
Add the PCBGROUPS manpage.
...
Thanks to wblock for helping me with this manpage.
2014-07-21 04:48:02 +00:00
Dag-Erling Smørgrav
48b0feca16
Older versions of flex (like the one used in FreeBSD <= 9) expect the
...
output file name to follow the -o flag immediately, with no intervening
whitespace.
Reported by: ian@
MFC after: 1 week
2014-07-20 14:49:24 +00:00
Dag-Erling Smørgrav
8f812fec9f
Use -o (output to file) instead of -t (print to stdout) and a redirect.
...
MFC after: 1 week
2014-07-19 14:26:04 +00:00
Alan Cox
ea40a6a62c
Remove obsolete man pages. The corresponding code was removed in r255608.
2014-07-18 15:39:07 +00:00
Alan Cox
311cacb496
Remove an obsolete man page.
2014-07-18 06:56:24 +00:00
Xin LI
61c320f033
Fix markups.
2014-07-17 23:23:01 +00:00
Xin LI
1afc6e14b2
Fix markup regression introduced in r268369.
2014-07-17 23:14:47 +00:00
Alan Cox
ce5bed4b2c
Add a man page for the new function pmap_unwire().
2014-07-17 20:03:52 +00:00
Alan Cox
53cc33f6f6
Remove the man page for a pmap function that no longer exists.
2014-07-17 17:41:32 +00:00
Alan Cox
cd81b88d5c
Correct the name of the man page for pmap_ts_referenced().
...
Sponsored by: EMC / Isilon Storage Division
2014-07-16 23:17:57 +00:00
Don Lewis
d3a6879421
Nuke the never-used RF_TIMESHARE feature, reducing the complexity of the
...
code. The consensus on arch@ is that this feature might have been useful
in the distant past, but is now just unnecessary bloat.
The int_rman_activate_resource() and int_rman_deactivate_resource()
functions become trivial, so manually inline them.
The special deferred handling of RF_ACTIVE is no longer needed in
reserve_resource_bound(), so eliminate the associated code at the
end of the function.
These changes reduce the object file size by more than 500 bytes on i386.
Update the rman.9 man page to reflect the removal of the RF_TIMESHARE
feature.
MFC after: 2 weeks
2014-07-16 22:18:19 +00:00
Julio Merino
18c6fc4c4e
Regen after r268778 to replace WITH_TESTS with WITHOUT_TESTS.
2014-07-16 21:43:24 +00:00
Julio Merino
b85bd43aae
Enable MK_TESTS by default, take 2.
...
This is a redo of r267424, which was reverted in r267432 because it broke
"make buildworld" from FreeBSD 9.x. This issue has been resolved and this
change is still "make tinderbox" clean.
2014-07-16 21:40:11 +00:00
Gavin Atkinson
fed7e55027
Since r202933, kthread_suspend_check() takes no arguments. Update the
...
example to match.
MFC after: 3 days
2014-07-15 23:29:20 +00:00
Bryan Drewery
1785b1c474
Also link 'show bio' to g_bio(9.)
...
X-MFC-With: r268715
MFC after: 1 week
Sponsored by: EMC / Isilon Storage Division
2014-07-15 22:57:50 +00:00
Bryan Drewery
cdde13b8e8
Document the 'show bio' command added in 2009.
...
While here also reword 'show buffer' to have an 'addr' argument and to
match other struct documentation.
MFC after: 1 week
Sponsored by: EMC / Isilon Storage Division
2014-07-15 21:13:08 +00:00
Rui Paulo
72a442fa29
Remove bsd.dtrace.mk.
...
MFC after: 3 weeks
2014-07-12 07:46:18 +00:00
Rui Paulo
d8b631554e
Optimisation: replace ${_D:R} with just ${_D}.
...
MFC after: 3 weeks
2014-07-12 01:06:29 +00:00
Rui Paulo
ff0f36e773
Automatically build and link DTrace USDT probes.
...
This completely replaces bsd.dtrace.mk which never worked reliably.
MFC after: 3 weeks
2014-07-12 00:54:34 +00:00
Warner Losh
9e88096ea1
Make MK_GNUCXX mean "build the libstdc++ and libsupc++ libraries" and
...
nothing more. Force it to be "no" when MK_CXX is "no" to simplify
usage. It no longer also means "build g++" since we no longer have a
platform where that's interesting now that pc98 no longer needs clang
and gcc, but not g++. pc98 now just uses clang after boot2 changes.
2014-07-10 21:11:48 +00:00
Baptiste Daroussin
55ba623622
Regenerate src.conf(5) after texinfo option change
2014-07-10 15:14:37 +00:00