Scott Long
f77d2d79f1
Simplify the arguments to bce_tx_encap.
2006-10-14 05:30:12 +00:00
Scott Long
a1f63be099
More small whitespace cleanups
2006-10-14 04:28:23 +00:00
Scott Long
ec6887f825
Don't copy the bd_chain head pointers into temporary objects, they are
...
available globally.
2006-10-14 03:58:59 +00:00
Ruslan Ermilov
90c3810cda
Define an empty C_DIALECT in case of "icc", just in case.
2006-10-13 22:29:06 +00:00
Ruslan Ermilov
74465532f6
- Remove include links only when .depend is also removed, so that
...
"make depend; make clean; make -n" works.
- Preseve kernel's .depend if it already exists and its creation
is interrupted.
Reported/reviewed by: bde
2006-10-13 22:28:14 +00:00
John Birrell
6a7d6d5826
Ignore the uart device.
2006-10-13 21:55:30 +00:00
John Birrell
2c86e568cb
Remove a nmdm comment which ru@ thinks was no longer required.
2006-10-13 21:44:57 +00:00
John Birrell
2fe1d072b3
sun4v uses the sparc64 version of this file.
2006-10-13 21:30:18 +00:00
Tor Egge
e0c33ad529
Wait for thread count to reach zero in destroy_devl() even when no purge
...
method is defined, to avoid memory being modified after free.
Temporarily increase refcount in destroy_devl() to avoid a double free
if dev_rel() is called while waiting for thread count to reach zero.
2006-10-13 20:49:24 +00:00
Ruslan Ermilov
675e8ac08c
Replace a rarely used "depuration" with "debugging".
...
PR: docs/85127
Submitted by: Gary W. Swearingen (partially)
MFC after: 3 days
2006-10-13 20:48:17 +00:00
Gleb Smirnoff
97ae0b9ca7
Include pcpu.h so that kernel is buildable w/o RWLOCK_NOINLINE option
...
and with some code that uses rwlock(9).
2006-10-13 19:43:35 +00:00
John Baldwin
d3998dcf2e
Move the 2 additional #includes down into the #ifndef DEV_ATPIC section.
2006-10-13 17:31:57 +00:00
Hajimu UMEMOTO
e7e51bc3e1
Make net.inet6.ip6.auto_linklocal tunable. Someone may want to
...
enable/disable auto_linklocal even in single user mode.
Discussed with: re@, gnn@
MFC after: 3 days
2006-10-13 12:45:53 +00:00
Hajimu UMEMOTO
f5c04409eb
Revert the default value of net.inet6.ip6.auto_linklocal to 1.
...
If ipv6_enable is not set to "YES", net.inet6.ip6.auto_linklocal
is turned to 0 at boot.
Discussed with: re@, gnn@
MFC after: 3 days
2006-10-13 12:41:36 +00:00
John Birrell
ede64266d2
Attempt to fix the sun4v tinderbox build (which unhelpfully doesn't
...
report errors -- just warnings).
Submitted by: ru@
2006-10-13 09:55:17 +00:00
Gleb Smirnoff
b0dc008358
Fix result of some mechanical change that I did some time ago, when
...
writing this node.
2006-10-13 09:11:12 +00:00
John Birrell
abc010b6a0
Remove one of the duplicate 'device nmdm' lines.
...
Noticed in the sun4v tinderbox log.
2006-10-13 09:05:44 +00:00
Kip Macy
ae5c4e2140
Fix console and update to new api.
...
The style changes are required as a result of the CONSOLE_DRIVER macro.
Approved by: rwatson (mentor)
2006-10-13 06:45:50 +00:00
Scott Long
2711d96ad4
Fix some whitespace
2006-10-13 05:18:03 +00:00
John Birrell
e70cbcb5ba
Attempt to fix the GENERIC kernel build which has been failing on
...
tinderbox for a couple of days.
2006-10-13 04:53:22 +00:00
John Baldwin
5283d39b98
ipmi_polled_enqueue_request() is already called with the lock held, just
...
assert it rather than recursing.
Reported by: mjacob
Pointy hat: jhb
MFC after: 3 days
2006-10-12 16:26:42 +00:00
Ariff Abdullah
1409858b3b
- Fix support for ASUS U5F laptop. This laptop (and possibly others)
...
need a special inverted EAPD quirk.
- Add "eapdinv" config for future testing purposes.
Tested by: Yuriy Tsibizov <Yuriy.Tsibizov@gfk.ru>
#freebsd-azalia @ irc.freenode.net
2006-10-12 15:37:43 +00:00
John Baldwin
5d54487ef2
Fix nodevice atpic compile.
...
Pointy hat to: jhb
2006-10-12 12:48:21 +00:00
Kip Macy
f53c03a0e3
This won't be needed. There is already userland infrastructure for fpu emulation
...
for sparc64.
2006-10-12 06:00:34 +00:00
Kip Macy
c94d217091
The T2000 has multiple PCI domains requiring bus allocation to be done differently.
...
This pulls in changes by jmg from perforce and makes them sun4v only for now.
Approved by: scottl (acting as backup for mentor rwatson)
2006-10-12 04:44:01 +00:00
Kip Macy
600c53adf9
sun4v requires TSBs (translation storage buffers) to be contiguous and be
...
size aligned requiring heavy usage of vm_page_alloc_contig
This change makes vm_page_alloc_contig SMP safe
Approved by: scottl (acting as backup for mentor rwatson)
2006-10-12 04:41:39 +00:00
Ariff Abdullah
0b414ccace
Fix support for IBM/Lenovo Thinkcentre M52 series. Its vendorid / 0x1014
...
accidentally match with HP vendorid / 0x103c.
Reported by: Robert Noland <rnoland@2hip.net>
2006-10-12 04:19:37 +00:00
Warner Losh
413d6375d7
Remove redundant casts. The casts inside the macros should be
...
sufficient (or fixed if not).
2006-10-12 03:05:45 +00:00
Giorgos Keramidas
050f8bb67d
Spell proc/sys/kernel/pid_max correctly in a comment.
...
Submitted by: rdivacky
2006-10-11 20:32:46 +00:00
Gleb Smirnoff
7801dc7cb3
Recognize 802.1q frames in Ethernet input and process them.
...
PR: kern/101162
Submitted by: CoolDavid (Tseng Guo-Fu) <cooldavid cdpa.nsysu.edu.tw>
2006-10-11 15:27:13 +00:00
Gleb Smirnoff
68a57ebfad
Improve ktr(4) logging for callout(9) subsystem. Log all inserts and
...
removals, including failures, into the callwheel.
XXX: Most of the CTR() macros are called with callout_lock spin mutex
held, thus won't be logged into file, if KTR_ALQ is used. Moving the
CTR() macros out from the spinlocked code would require copying of all
arguments. I'm too lazy to do this.
2006-10-11 14:57:03 +00:00
Gleb Smirnoff
cf3254aac8
Do not leak hooks in ng_bypass().
...
Submitted by: Alexander Motin <mav alkar.net>
2006-10-11 14:33:08 +00:00
Gleb Smirnoff
11e685579f
Make it buildable.
2006-10-11 13:28:37 +00:00
Gleb Smirnoff
3b9c299730
Unbreak a short one.
...
Submitted by: maxim
2006-10-11 12:39:21 +00:00
Gleb Smirnoff
006725ba9e
Break long line.
2006-10-11 12:32:53 +00:00
Gleb Smirnoff
96a0326e14
Use hash functions with better distribution. Tested on live traffic.
...
Submitted by: Alexander Motin <mav alkar.net>
2006-10-11 12:31:14 +00:00
Maxim Konovalov
428b67b194
o Do not do args->f_id.addr_type == 6 when there is
...
IS_IP6_FLOW_ID() exactly for that.
2006-10-11 12:14:28 +00:00
Maxim Konovalov
f16ccf6814
o Kill a nit in the comment.
2006-10-11 12:00:53 +00:00
Maxim Konovalov
5f197ce41e
o Extend not very informative ipfw(4) message 'drop session, too many
...
entries' by src:port and dst:port pairs. IPv6 part is non-functional
as ``limit'' does not support IPv6 flows.
PR: kern/103967
Submitted by: based on Bruce Campbell patch
MFC after: 1 month
2006-10-11 11:52:34 +00:00
Gleb Smirnoff
b7e405bd4a
Use bitcount32() from sys/systm.h instead of my own.
2006-10-11 10:47:44 +00:00
Gleb Smirnoff
aad0be7a3b
- Update the baudrate every time the parent changes its link state.
...
- Rearrange the curly braces so that this piece of code is more
readable.
2006-10-11 10:06:35 +00:00
Ruslan Ermilov
cc81ddd9db
Merge the rest of my changes.
2006-10-11 07:11:56 +00:00
Ruslan Ermilov
5b7be20f58
Fix CPU value.
2006-10-11 04:14:41 +00:00
Kip Macy
e8bc49d761
Using the ptr defines broke the powerpc build - convert set_mmfsa to the same
...
convention as the rest of openfirm.c
2006-10-11 02:52:46 +00:00
John Baldwin
520ffff83e
Change the x86 interrupt code to suspend/resume interrupt controllers
...
(PICs) rather than interrupt sources. This allows interrupt controllers
with no interrupt pics (such as the 8259As when APIC is in use) to
participate in suspend/resume.
- Always register the 8259A PICs even if we don't use any of their pins.
- Explicitly reset the 8259As on resume on amd64 if 'device atpic' isn't
included.
- Add a "dummy" PIC for the local APIC on the BSP to reset the local APIC
on resume. This gets suspend/resume working with APIC on UP systems.
SMP still needs more work to bring the APs back to life.
The MFC after is tentative.
Tested by: anholt (i386)
Submitted by: Andrea Bittau <a.bittau at cs.ucl.ac.uk> (3)
MFC after: 1 week
2006-10-10 23:23:12 +00:00
John Baldwin
8528552b0d
Don't pass unused bufsz to kern_shmctl().
2006-10-10 22:46:50 +00:00
John Baldwin
f3ea244ea9
Only try to copyin a msqid for the IPC_SET command to msgctl(). Other
...
commands (such as IPC_RMID) were bogusly failing with EFAULT.
Tested by: jkim
2006-10-10 22:46:22 +00:00
John Baldwin
7f4c1dd0d6
Remove unnecessary casts before PTRIN().
2006-10-10 22:44:59 +00:00
John Baldwin
6e20fe33ba
Oops, fix sign bug in #ifdef for value of INTRCNT_COUNT.
...
PR: kern/99870
Submitted by: jkim
MFC after: 3 days
2006-10-10 19:26:35 +00:00
Alan Cox
1de11f1af3
Distinguish between two distinct kinds of errors from VOP_BMAP() in
...
vnode_pager_generic_getpages(): (1) that VOP_BMAP() is unsupported by the
underlying file system and (2) an error in performing the VOP_BMAP().
Previously, vnode_pager_generic_getpages() assumed that all errors were
of the first type. If, in fact, the error was of the second type, the
likely outcome was for the process to become permanently blocked on a busy
page.
MFC after: 3 weeks
Reviewed by: tegge
2006-10-10 18:26:18 +00:00