| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
the preprocessor conditional, and remove the now-empty #else.
Reviewed by: asmodai
|
|
|
|
| |
in obj_alloc.
|
|
|
|
|
|
| |
Added Vlan support.
MFC after: 1 week
|
|
|
|
|
|
|
| |
until the I/O completes. This fixes some easily reproducable deadlocks
that occur when using md(4) with GEOM.
Reviewed by: phk
|
|
|
|
|
|
|
| |
Module loads and unloads properly.
Thanks to Richard Hodges <rh@matriplex.com> for donating the hardware
to allow me to work on this driver.
|
| |
|
| |
|
|
|
|
| |
- Compile 'hfa' only on i386 (for now).
|
|
|
|
|
| |
to vm_object_split(). Its interface should still be changed
to resemble vm_object_shadow().
|
| |
|
| |
|
|
|
|
|
|
| |
duplication. Also add support for 'n' specifier.
Reviewed by: bde
|
|
|
|
|
| |
Spotted and suggested by: des
MFC after: 3 weeks
|
|
|
|
|
|
|
|
| |
declaration that shadows another.
Note: This function should really be vm_object_split(), not vm_map_split().
Reviewed by: md5
|
|
|
|
|
| |
option ENABLE_VFS_IOOPT. Unless this option is in effect,
vm_object_pmap_copy_1() is not used.
|
|
|
|
| |
so back it out.
|
|
|
|
|
|
|
|
|
| |
vm_map_create(), and vm_map_submap().
o Make further use of a local variable in vm_map_entry_splay()
that caches a reference to one of a vm_map_entry's children.
(This reduces code size somewhat.)
o Revert a part of revision 1.66, deinlining vmspace_pmap().
(This function is MPSAFE.)
|
|
|
|
| |
Submitted by: wollman (mostly)
|
|
|
|
|
|
|
| |
"empty default cases shouldn't be removed, they should have a break;
statement added to them."
Requested by: billf
|
| |
|
|
|
|
| |
to silence warnings.
|
| |
|
|
|
|
| |
ng_parse_struct_info -> ng_parse_struct_field change.
|
| |
|
|
|
|
|
| |
There's no need to use concatination when you have 'something.macro_arg'.
Comment out comment following #endif.
|
|
|
|
| |
things with commas and equal signs.
|
|
|
|
|
|
|
|
|
|
| |
(P_CONTINUED) is set when a stopped process receives a SIGCONT and
cleared after it has notified a parent process that has requested
notification via waitpid(2) with WCONTINUED specified in its options
operand. The status value can be checked with the new WIFCONTINUED()
macro.
Reviewed by: jake
|
|
|
|
|
|
|
|
|
| |
mask on both input and output to fpsetmask(), but this was only done for
input, so fpsetmask() returned the complement of the old mask (ANDed with
the mask bitfield).
PR: 38170
MFC after: 4 weeks
|
| |
|
|
|
|
|
|
|
|
| |
deinlining vm_map_entry_behavior() and vm_map_entry_set_behavior()
actually increases the kernel's size.
o Make vm_map_entry_set_behavior() static and add a comment describing
its purpose.
o Remove an unnecessary initialization statement from vm_map_entry_splay().
|
|
|
|
| |
something wound up grafted to a comma.
|
|
|
|
|
| |
When casting a "const void *" to a "struct foo **" you want to actually
cast it to "struct foo * const *" not simply "const struct foo **".
|
|
|
|
|
| |
Reviewed by: jeff
MFC after: 1 week
|
|
|
|
|
|
|
| |
ifdef out what appears to be a bogus call to softintr using data
elements that aren't in the softc.
Forgotten by: imp
|
|
|
|
|
|
|
|
| |
Fix GCC warnings caused by initializing a zero length array. In the process,
simply things a bit by getting rid of 'struct ng_parse_struct_info' which
was useless because it only contained one field.
But now I'm unbreaking compilation by adjusting these files to the recent
netgraph change.
|
|
|
|
|
|
|
|
|
|
|
| |
panic because of a repeat make_dev if/when the device is reattached
to the system.
Remove an "#if __FreeBSD__" in code that's nested under a "#if __NetBSD__"
(*sigh*)
Reported by: Seth Hettich <sjh@whiskey.ucf.ics.uci.edu>
Tested by: Seth Hettich <sjh@whiskey.ucf.ics.uci.edu>
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Don't require pin be non-zero before we map bogus intlines, always do it.
This fixes a number of problems on HP Omnibook computers.
Tested/Reviewed by: Brooks Davis
|
|
|
|
| |
the structure definition easier to find using grep).
|
|
|
|
| |
Approved by: msmith in principle before walkabout
|
|
|
|
|
|
|
| |
simply things a bit by getting rid of 'struct ng_parse_struct_info' which
was useless because it only contained one field.
MFC after: 2 weeks
|
|
|
|
|
| |
ifdef out what appears to be a bogus call to softintr using data
elements that aren't in the softc.
|
|
|
|
| |
Approved by: des
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
set to zero. This field indicates the total space in the external buffer
and therefore should not be modified after the external buffer is added.
Add a comment warning that the mbufs returned by m_split() might be read-only.
Fix M_TRAILINGSPACE() to return zero if !M_WRITABLE(m).
Reviewed by: freebsd-net
Obtained from: Vernier Networks, Inc.
MFC after: 1 week
|
|
|
|
|
|
| |
__FreeBSD_version here.
Submitted by: rwatson
|
| |
|
|
|
|
| |
Requested by: hsu
|
|
|
|
|
|
| |
a better solution.
- Add braces for a ``for'' statement containing a single
multi-line statement.
|