summaryrefslogtreecommitdiffstats
path: root/sys/netinet/tcp_input.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-03-16Nuke unused time_t variable.krw1-5/+2
2021-03-16Move setifrtlabel() and *keepalive() prototypes out of SMALLkn1-4/+4
Those commands are not supported under SMALL; unless I overlooked others, this should be the last bit to declare all prototypes correctly wrt. SMALL (the overall unsorted order of both prototypes and commands makes this hard to spot). No object change, with and without SMALL.
2021-03-16sync to unbound 1.13.1; heavy lifting by sthenflorian36-2951/+3596
2021-03-16acpi_intr_disestablish() should free its own cookie.patrick1-1/+2
ok kettenis@
2021-03-16Bump MAXTSIZ to 256MB on i386.kurt1-2/+2
okay deraadt@
2021-03-16On i386 don't attempt to map shared libraries in low memory whenkurt3-5/+21
a large executable's .text section crosses the 512MB exec line. Executables that have MAXTSIZ > 64MB can map above the default 512MB exec line. When this happens, shared libs that attempt to map into low memory will find their .data section can not be mapped. ld.so will attempt to remap the share lib at higher addresses until it can be mapped. For very large executables like chrome this process is very time consuming. This change detects how much of the executable's .text section exceeds 512MB and uses that as the initial hint for shared libs to map into which avoids attempting to map into blocked memory. okay deraadt@
2021-03-16Don't (try to) deconfigure an interface that was never configured.florian1-1/+4
2021-03-16We can't learn anything interesting from RTM_NEWADDR, stop handlingflorian2-11/+3
it.
2021-03-16handle theoretical case of sigfillsz not being pow2-sized on somederaadt1-4/+8
architecture. from miod
2021-03-16Describe what happens when RFC 4638 is not supported.millert1-7/+16
With help from sthen@. OK sthen@ jmc@
2021-03-16Fix some correctness issues in the lowelevel kernel bringup code.kettenis3-5/+20
- Make sure we install a dummy page table in TTBR0_EL1 before we change the size of the VA space in TCR_EL1. - Flush the TLB after updating TCR_EL1. - Flush TLB after installing the real kernel page table in TTBR1_EL1. - Add some barriers around TLB flushes to make it consistent with other places where we do TLB flushes. ok drahn@, patrick@
2021-03-16Add client-detached notification in control mode, from Mohsin Kaleem.nicm4-5/+21
2021-03-16Do not delete control socket upon exitkn1-14/+1
The control socket is not unveiled, therefore accounting would report unveil violations whenever apmd(8) stopped (normally). As discussed and done with other daemons such as relayd which also employ no pledge (due to inherent limitations) but unveil effecting all of /, simply stop removing the socket upon exit and leave it to the next apmd which completely sets up its control socket anew at startup. Violations reported by anton Feedback OK semarie mestre
2021-03-16A socket buffer is not the best size to read from a disk.otto1-6/+9
Use st_blksize to set high water mark; florian@
2021-03-16don't let logging clobber errno before usedjm1-4/+6
2021-03-15Add code to acpiiort(4) to look up named components in the IORT andpatrick3-4/+80
map them. This makes ACPI's call to acpi_iommu_device_map() do work through acpiiort(4). ok kettenis@
2021-03-15Change API of acpiiort(4). It was written as a hook before, taking thepatrick7-33/+23
PCI attach args and replacing the DMA tag inside. Our other IOMMU API though takes a DMA tag and returns the old one or a new one. To have acpiiort(4) integrate better with non-PCI ACPI devices, change the API so that it is more similar to the other API. This also makes the code easier to understand. ok kettenis@
2021-03-15Add acpi_iommu_device_map(), which replaces the DMA tag with one thatpatrick5-5/+27
is blessed with IOMMU magic, if available. This is mainly for arm64, since on amd64 and i386 the IOMMU only captures PCIe devices, as far as I know, which uses the pci_probe_device_hook(). This though is for non-PCI devices attached through ACPI. ok kettenis@
2021-03-15Add the IORT structure for named components. These give us the stream idspatrick1-5/+13
used towards an smmu(4) for non-PCI devices. The references are provided as ASCII printable paths. ok kettenis@
2021-03-15We makes sure that a dh group is required if the local proposaltobhe1-3/+13
contains an explicit group transform. Override requiredh if one of the local options is 'none' so that a proposal with no DH group and on with explicit group 'none' result in a match. ok patrick@
2021-03-15Ignore msg_ke in CREATE_CHILD_SA if DH negotiation results in grouptobhe1-3/+7
'none' (disabling PFS). Fixes a bug when the initiator sends a KE payload but the negotiation results in DH group "none". For other DH group mismatches we send an INVALID_KE notify, for 'none' we can just ignore the KE payload. ok patrick@
2021-03-15Clear AUTOCONF6TEMP flag when we detach inet6.florian1-3/+3
2021-03-15Don't put an extern variable (ppc_kvm_stolen) into vmparam.h, other instancesderaadt2-6/+3
of this file are only doing cpp #define
2021-03-15Do not crash if there is no item to show command error, from Anindyanicm1-3/+8
Mukherjee.
2021-03-15tweaks to system version handling:espie1-5/+6
- create an element that accumulates version values for when we have several - actually use compare on version values instead of hardcoding the difference no functional change
2021-03-15spellingjsg16-32/+32
2021-03-15add a check for system-version, since I tend to reverse comparisonsespie2-3/+16
2021-03-15Allocate the repo structs individually linked by a SLIST instead of usingclaudio1-85/+90
an array that is reallocated during runtime. With this the entityq can move back into struct repo. OK tb@
2021-03-14Log errors with log level info and SPI.tobhe1-12/+17
2021-03-14Since we are doing getifaddrs() anyway we can get the rdomain out offlorian1-49/+33
AF_LINK and skip one ioctl. OK benno
2021-03-14msi-map-mask is a pasto and should be iommu-map-mask.patrick1-2/+2
From Jared McNeill at NetBSD ok kettenis@
2021-03-14add HISTORY; from maxim vuetsjmc1-2/+7
2021-03-14regenjan2-2/+7
2021-03-14Add ID for Intel SSD DCjan1-1/+2
ok jsg@
2021-03-13Use EXFLAG_INVALID to handle out of memory and parse errors intobhe2-11/+45
x509v3_cache_extensions(). ok tb@
2021-03-13Remove "deletetunnel" (deprecated with 6.4)kn1-3/+1
OK deraadt
2021-03-13Move all rdomain bits under SMALLkn1-4/+6
"[-]rdomain" commands are ignored under SMALL but their prototypes, the global and therefore dead print logic are still in. OK deraadt
2021-03-13Move MPLS related function prototypes under SMALLkn1-16/+16
OK deraadt
2021-03-13because the kernel has been replaced after last boot, run kvm_mkdbderaadt1-5/+5
before the first consumer of kvm_bsd.db
2021-03-13sync usb_device_info with usb.h, spotted by Enrik Berkhan, and millert@sthen1-10/+8
noticed another change
2021-03-13Advertise 30-bit color support.kettenis1-2/+5
ok matthieu@, jsg@
2021-03-13only try to set timestamps on files; avoids error with ftp -o /dev/nullsthen1-2/+3
ok jca robert
2021-03-13We can use memory marked as EfiBootServicesCode or EfiBootServicesDatakettenis1-3/+6
as well. ok drahn@, kn@
2021-03-13Add TEST_SSH_MODULI_FILE variable to allow overriding of the moduli filedtucker1-2/+7
used during the test run.
2021-03-12Add WSDISPLAYIO_DEPTH_30 in order to support 30-bit color support.kettenis1-1/+2
ok jsg@
2021-03-12syncderaadt1-0/+1
2021-03-12merge unbound-1.13.1sthen57-5380/+8023
2021-03-12update to unbound-1.13.1, tested by gnezdo@sthen13-28/+99
2021-03-12INET6_NOPRIVACY is called AUTOCONF6TEMP now, missed during rename.florian2-4/+4
2021-03-12In ipw(4), ensure that net80211 is in ASSOC state while we are expectingstsp1-1/+7
an assoc response from the AP during the association sequence. Otherwise net80211 would ignore the auth response, resulting in a state mismatch between firmware and net80211. A symptom of this was that WPA didn't work. Problem reported and fix tested by Ricardo Mottola