Commit Graph

181811 Commits

Author SHA1 Message Date
wiz 37d95f331f Sync usage with man page. 2009-06-21 14:59:53 +00:00
wiz 65c247649d Use Pa for paths. 2009-06-21 14:58:58 +00:00
wiz 7bba45dc18 Sync usage with man page. 2009-06-21 14:58:16 +00:00
wiz f29f41d64b Use Pa for paths. 2009-06-21 14:57:33 +00:00
wiz 43ec52d73e Fix Dd argument. New sentence, new line. Remove superfluous .Pp. 2009-06-21 14:56:49 +00:00
jakllsch 5a08fb2589 Use PRO_PS and PRO_PCS correctly.
From Wolfgang Stukenbrock as part of kern/41579.

While here, remove a line of whitespace, and add an else case to
the ATAPI command length toggle.
2009-06-21 14:15:38 +00:00
jakllsch 23eef70a5f Move call of sd_set_properties() to end of sd_get_parms(), rather than
sdattach().  This allows DIOCGDISKINFO to do the right thing even when
the media has changed.  Note that drvctl -p will only DTRT if disk has
been opened since the most recent media chenged.
2009-06-21 14:06:49 +00:00
christos 9e4f08911b add nicknames 2009-06-21 01:55:34 +00:00
christos dc05b09461 PR/30294: John Darrow: nawk doesn't handle RS as a RE but as a single character 2009-06-20 23:23:12 +00:00
wiz 622428f56e Sort SEE ALSO, minor nits. 2009-06-20 22:55:20 +00:00
dyoung 59d9a6b60c unifdef -U__DragonFlyBSD__ -U__FreeBSD__ -D__NetBSD__.
XXX Compiles, but untested.
2009-06-20 20:18:32 +00:00
christos 75a86bdab6 PR/40274: Takahiro Kambe: "P" flag stops rotating files. 2009-06-20 19:34:19 +00:00
christos e5962c583f PR/22627: Greywolf: Support for yp nicknames map. 2009-06-20 19:27:26 +00:00
mrg 162717ffd2 add a workaround for drm:
for device mmap()'s, if the D_NEGOFFSAFE flag is set, do not check
if the offset is negative.

this should go away with the test itself when all drivers are audited
and checked to not fail with negative offsets.
2009-06-20 19:24:27 +00:00
mrg 9dac5eae13 update a few things, mostly from yorick hardy in PR#41528.
note "options DRM_EXTERNAL".
2009-06-20 18:20:51 +00:00
agc b27d6094e3 Fix from Jukka Salmi - get BINDIR from further up the tree 2009-06-20 17:58:21 +00:00
christos 8d20d2e953 Follow exactly the recommendation of draft-ietf-tcpm-tcpsecure-11.txt:
Don't check gainst the last ack received, but the expected sequence number.
This makes RST handling independent of delayed ACK. From Joanne M Mikkelson.
2009-06-20 17:29:31 +00:00
christos 3fe391d776 fix for non NetBSD systems 2009-06-20 17:03:25 +00:00
christos c08a8944a8 fix typo 2009-06-20 16:19:46 +00:00
christos 387aa49a45 Add pw_copyx 2009-06-20 14:29:48 +00:00
christos 87fe4621ba add a link to pw_copyx; from anon ymous 2009-06-20 14:28:29 +00:00
christos adee5457b1 don't complain if file does not exist either. 2009-06-20 14:25:47 +00:00
cegger 861d7b5f02 make this build with DEBUG_MEMLOAD in all combinations of 32bit, 32bit PAE and 64bit 2009-06-20 13:10:14 +00:00
cegger 4765113ada Return type of cpu_number(9) is cpuid_t which is effectively unsigned long.
So cast return type to unsigned long.
Fixes build for alpha GENERIC kernel.
2009-06-20 11:10:40 +00:00
cegger 5bb3bd9d01 sprintf -> snprintf. Wrap long lines. 2009-06-20 10:24:28 +00:00
cegger f978dd86b2 buidfix: change dm_target_snapshot_orig_init() to match prototype. 2009-06-20 09:57:26 +00:00
cegger ffb0a63a57 buildfix: don't redefine MIN and MAX. They are defined in <sys/param.h>. 2009-06-20 09:40:52 +00:00
cegger 5fbf0e67ec use M_ZERO, no need for memset.
Ansify kvm86_init function definition.
2009-06-20 08:31:37 +00:00
agc 6d294a5dfc Add entries for the iSCSI initiator 2009-06-20 04:20:21 +00:00
agc 0e74d43b5e Enable the iSCSI initiator 2009-06-20 04:18:39 +00:00
agc dc40c47744 Add a library implementation of modload(3) and modstat(3).
Conditionally compiled in when MODULAR_KERNEL is defined in the Makefile
(or during the build process).

Use kmod functions to see if the puffs module is loaded in the kernel,
and to load it if it is not already loaded.
2009-06-20 04:12:55 +00:00
mrg 44d76def57 some minor clean up:
- reduce diffs to mesa-drm where possible
- fix various formatting issues
- netbsd uses major 180 for drm (XXX)

no functional changes intended.
2009-06-20 01:07:09 +00:00
dyoung 4ec9bd2b05 Use the definition in <sys/param.h> instead of redefining MAX().
(Used to work because the redefinition was identical to the original
definition, but no longer.)

While I'm here, define sizeofA() in terms of __arraycount() from
<sys/cdefs.h>.
2009-06-19 23:36:41 +00:00
wiz 2be246d2b7 Add RCS Id.
Sort options.
End sentences with dots.
Use standard section headers.
Fix Xref.
Make HTML-ready.
2009-06-19 19:31:18 +00:00
christos 33681fbe60 Fix for unprivileged build. 2009-06-19 16:46:52 +00:00
agc 8d1ae2fc62 Bump up to WARNS=4 2009-06-19 16:13:49 +00:00
agc ea75669735 WARNS=4 (all sign-comparison changes) 2009-06-19 16:13:09 +00:00
christos f79533f3b5 MIN and MAX could be used with constant predicates, and it does not matter
if they are, so make lint shut up.
2009-06-19 15:25:16 +00:00
christos bac9fc5767 don't use the gcc-specific macros if lint. 2009-06-19 15:24:17 +00:00
christos e946d9550c pass lint 2009-06-19 15:23:26 +00:00
stacktic d253d157dc Fixed a_mask to actually use its argument 2009-06-19 12:55:45 +00:00
agc fafe105c5c Clean up after moving the iSCSI initiator to src/usr.sbin/iscsi/initiator 2009-06-19 07:27:38 +00:00
agc 1a46bf4662 Move the iSCSI initiator from the examples section under src/share to
usr.sbin. At the same time, rename the utility to iscsi-initiator(8).
2009-06-19 07:17:09 +00:00
wiz e6a36c516d Sort sections. New sentence, new line. Punctuation fixes. 2009-06-19 05:50:39 +00:00
tsutsui ab35397894 - move #include <sys/param.h> inside #if defined(_KERNEL) section
where it's actually required
- add XXX comments that notes <sys/param.h> is required for vax memset(9)
2009-06-19 05:09:09 +00:00
mrg bf030d6773 note mesa-drm has been upgraded to git revision
85b9f737db0d2a845e4d7e2bbf9ad12ff9e2227c.
2009-06-19 04:46:14 +00:00
mrg 8df00d72b3 add r600_cp.c. 2009-06-19 03:53:24 +00:00
mrg 6fa8682e45 add a freshly generated drm_pciids.h 2009-06-19 03:52:20 +00:00
mrg 50fcbdf26f merge the changes from drm 85b9f737db0d2a845e4d7e2bbf9ad12ff9e2227c
with our changes and the work recently done by Arto Huusko
<arto.huusko@pp2.inet.fi> and FUKAUMI Naoki <fun@naobsd.org>.

it includes all the changes arto provided from both mesa-drm and
the r6xx-r7xx-support branch.  it does not yet include code to
handle the (deleted) drm_pciids.h file, but i'll probably just
check in a generated one for now.

i have not yet merged the changes from outside this dir.


from arto's messages to tech-x11:

The important change that was needed is that drm_scatter.c was
fixed to return pointer to all allocated pages, not just the
beginning of the allocated segments.

Other changes:

  - drm_scatter maps COHERENT memory
  - drm_drawable: drawable handle allocation is done
    inside lock
  - drm_memory: when mapping "agp" memory, store offset
    of mapped area, so that new requests to same offset
    return the same area instead of trying to remap
    and fail
  - drm_vm: use bus_space_mmap for frame buffer and registers

  - r600_cp.c: ioremapfree allocated gart range
  - radeon_cp.c: use mtsleep
  - some memset calls I had added had their args swapped,
    and no memory was cleared
2009-06-19 03:50:03 +00:00
mrg 57cc1d9fad import the missing file from mesa-drm at git change
85b9f737db0d2a845e4d7e2bbf9ad12ff9e2227c.
2009-06-19 03:38:39 +00:00