summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2013-10-23whitespaceJasper Lievisse Adriaanse
2013-10-23Add a sc_hwinit callback when running on an ILACC, to make sure CSR4 doesMiod Vallat
not get lost if the chip is reset. Also try to mask the `TX start' interrupt, but this doesn't seem to work.
2013-10-23Enable TX checksum offload.Brad Smith
ok naddy@
2013-10-23Enable TX checksum offload.Brad Smith
ok naddy@ sthen@
2013-10-23need a forward declaration of bintime for the _KERNEL case, ie. trptTheo de Raadt
ok guenther
2013-10-23Back when some NRL code was merged into KAME to create the *BSD IPV6Theo de Raadt
stack (factoid: by a bunch of people in my living room), some compatibility #define's were created to shim incompatible inpcb access methods. There was an understanding they would eventually be removed. Since they are error prone, and 1999 is a long time ago, now they die. ok mikeb claudio mpi
2013-10-23remove historical #if 1Theo de Raadt
2013-10-23delete junk NRL v6 block; ok claudioTheo de Raadt
2013-10-23remove the ipprintfs debug stuff; if you are debugging at this level,Theo de Raadt
you probably write your own chunks as need be. ok mpi claudio
2013-10-23rename some defines as wellJasper Lievisse Adriaanse
2013-10-23rename 'allwinner' to 'sunxi' to actually match the SoC name instead of usingJasper Lievisse Adriaanse
the vendor to follow our naming convention. ok aalm@ patrick@
2013-10-23translate port numbers for inner udp packets when they're returnedMike Belopuhov
as a payload of icmp error messages; makes traceroute6 operate across a nat64 gateway. prompted by sthen, ok henning
2013-10-23Remove the number of in_var.h inclusions by moving some functions andMartin Pieuchot
global variables to in.h. ok mikeb@, deraadt@
2013-10-23No need to expose twice in_socktrim(), it is only used in one file.Martin Pieuchot
2013-10-23Add support for displaying the cache write policy of RAID volumes to bioctl(8)Mark Kettenis
and make mfi(4) pass up the necessary information. Adding support for other RAID controllers is left as an excercise to the reader. ok deraadt@
2013-10-23adapt to new DL_BLKTOSEC(); ok krwTheo de Raadt
2013-10-23Fix sorting and ordering.Raphael Graf
ok bmercer@
2013-10-23overwrite icmp packet type-specific nextptr field only when we'reMike Belopuhov
changing it. fixes an icmp to icmpv6 translation regression found by todd and sthen. ok henning sthen
2013-10-23Instead of comparing the lower and higher addresses of all the multicastMartin Pieuchot
entries to decide if the IFF_ALLMULTI flag should be set, check if there is at least one real range between them. This should not introduce any behavior change but will help changing our representation of multicast enries.
2013-10-23Checkpoint of work-in-progress DMA support for oaic(4). Not working yet,Miod Vallat
probably due to incorrect programming of the system board ``Diagnostic Control Register'', for which I do not have documentation yet; commited so as not to lose this work, since the machine I was testing on has apparently commited suicide and will no longer POST.
2013-10-23Do not print the higher address of the muticast range in debug mode,Martin Pieuchot
since in this case it is always the same as the lower address (not a real range). ok pirofti@, jasper@, bcallah@
2013-10-23Crank bootblock versions after last commitMike Larkin
2013-10-23Allow uppercase "K/M/G" specification in "machine memory" boot command.Mike Larkin
ok guenther, dlg, deraadt
2013-10-23define some bits relating to the msg ringDavid Gwynne
2013-10-22Add code for SMC_CAPS_SINGLE_ONLY capability.Sylvestre Gallon
This capability force the sdmmc stack to only issue single blocks transfers. tested by rapha@ and I on ommmc(4). tested by rapha@ on pxammc(4). ok rapha@
2013-10-22- add UNIX-domain socket info to struct kinfo_file2Philip Guenther
- convert netstat from kvm_getfiles() to kvm_getfile2() using that - delete kvm_getfiles() and KERN_FILE as no longer used (bump libkvm's major) - rename kvm_getfile2() to kvm_getfiles(), kinfo_file2 to kinfo_file and KERN_FILE2 to KERN_FILE. ok deraadt@, millert@ ports scan sthen@
2013-10-22In pf_test_state_icmp(), actually copy pd->hdr.any back into the mbuf asLawrence Teo
intended after the ICMP/ICMPv6 checksum is zeroed in pf_cksum(). This resolves an issue found by sthen@ where ICMP traffic with nat-to failed due to incorrect checksums. Fix tested by sthen@ and myself OK henning@
2013-10-22Some current boards do not have write-through caching. For those,Patrick Wildt
we enable write-back, but it seems this is not working and those boards hang on bootup. Until that is fixed, do not cache PTEs on those boards.
2013-10-22Compute the checksum in in_proto_cksum_out, just set the flag inChristian Weisgerber
the UDP stack. ok henning@
2013-10-22Replace some backwards compat functions with the current ones; the oldBrian Callahan
ones were removed some time ago. Noticed by William Orr <will AT worrbase DOT com> ok jasper@
2013-10-22addl *-ALLWINNER and *-IMXJasper Lievisse Adriaanse
2013-10-22add support for allwinner-based devices (A1x/A20), such as the cubieboard;Jasper Lievisse Adriaanse
any rough edges will be polished intree. hard work done by Artturi Alm w/ feedback/input from Markus Hennecke, patrick@ and various others.
2013-10-22regenDavid Gwynne
2013-10-22brocade devicesDavid Gwynne
2013-10-22whitespaceReyk Floeter
2013-10-22kernel has memcpy/memset nowTheo de Raadt
2013-10-21Fix values of AR9003 Rx queue software indexes. Both indexes were zero,Stefan Sperling
which is obviously not intended given how they are used in the ar9003 code. No currently working athn(4) devices are affected by this change.
2013-10-21Write AR9485 initvals in the same order as Linux ath9k does.Stefan Sperling
Verified by comparing register write traces. No currently working athn(4) devices are affected by this change.
2013-10-21Add SDHC card detect GPIO pins for the i.MX6 Wandboard.Patrick Wildt
From Artturi Alm.
2013-10-21nuke comment. How soon is now?Sebastian Benoit
"do it" deraadt@
2013-10-21Remove some historical comments.Theo de Raadt
2013-10-21Remove comment regarding BSDI.Theo de Raadt
2013-10-21pretty up a disgusting chunkTheo de Raadt
2013-10-21Janitoring. No significant binary change.Theo de Raadt
2013-10-21no more #ifdef KERNELTheo de Raadt
2013-10-21There are gasps of shock! Add a pmtu delay sysctl BUTTON for netinet6,Theo de Raadt
making the code the same as netinet4 along the way. ok bluhm phessler
2013-10-21Fix lies in comments, and apply some KNF and unused or duplicate prototypeMiod Vallat
removals.
2013-10-21enable vxlan(4). ok deraadt@Reyk Floeter
2013-10-21Add load_font and list_font accessops to all rasops-based wsdisplay drivers.Miod Vallat
Trivial except for tga(4) and gpx(4/vax) which need a bit more care setting up a new font.
2013-10-21- trivial and/or obvious bug fixYojiro Uo
- cosmetic changes