summaryrefslogtreecommitdiff
path: root/sys/arch
AgeCommit message (Collapse)Author
2015-11-28Check the protective MBR stricter not to choose a broken GPT.YASUOKA Masahiko
test and ok gonzalo
2015-11-27Don't panic in pmap_enter() if we deplete the pool of pv entries and theMark Kettenis
PMAP_CANFAIL flag is set. Return ENOMEM instead.
2015-11-26Avoid setting mode to GOP if the mode is unchanged. Also don't panicYASUOKA Masahiko
if the setting mode is failed. reported and tested by Joe Gidi
2015-11-26Fix a typo in comment.YASUOKA Masahiko
2015-11-26init pat_default to 0 as it may potentially be used uninitialisedJonathan Gray
ok mlarkin@
2015-11-26Automatically start vmm(4) when the first VM is created and after theReyk Floeter
last VM is terminated. This allows to remove the explicit "vmm enable" / "vmm disable" (VMM_IOC_START / VMM_IOC_STOP) ioctls. You'll have to update kernel and userland for this change, as the kernel ABI changes. OK mpi@ mlarkin@
2015-11-25Don't bother keeping track of the resident count for the kernel pmap.Mark Kettenis
2015-11-25Simplify the setup of gather segments.Visa Hankala
2015-11-25Network drivers should not include <net/route.h> or <net/netisr.h>Martin Pieuchot
2015-11-25Small fixes related to the IFF_OACTIVE removal.Martin Pieuchot
2015-11-25replace IFF_OACTIVE manipulation with mpsafe operations.David Gwynne
there are two things shared between the network stack and drivers in the send path: the send queue and the IFF_OACTIVE flag. the send queue is now protected by a mutex. this diff makes the oactive functionality mpsafe too. IFF_OACTIVE is part of if_flags. there are two problems with that. firstly, if_flags is a short and we dont have any MI atomic operations to manipulate a short. secondly, while we could make the IFF_OACTIVE operates mpsafe, all changes to other flags would have to be made safe at the same time, otherwise a read-modify-write cycle on their updates could clobber the oactive change. instead, this moves the oactive mark into struct ifqueue and provides an API for changing it. there's ifq_set_oactive, ifq_clr_oactive, and ifq_is_oactive. these are modelled on ifsq_set_oactive, ifsq_clr_oactive, and ifsq_is_oactive in dragonflybsd. this diff includes changes to all the drivers manipulating IFF_OACTIVE to now use the ifsq_{set,clr_is}_oactive API too. ok kettenis@ mpi@ jmatthew@ deraadt@
2015-11-24You only need <net/if_dl.h> if you're using LLADDR() or a sockaddr_dl.Martin Pieuchot
2015-11-24The only network driver needing <net/if_types.h> is upl(4) for IFT_OTHER.Martin Pieuchot
2015-11-24Don't loop forever trying to handle NP faults in certain failure cases.Mike Larkin
reported by Stefan Kempf with supplied patch, thanks.
2015-11-23No longer need 'option VMM', declaring the vmm0 device is sufficient.Theo de Raadt
ok mlarkin
2015-11-23sync to GENERICTheo de Raadt
2015-11-23downfalls -> pitfallsmmcc
2015-11-23downfalls -> pitfallsmmcc
2015-11-23Attaches zs(4) as "zs" not "zsc".Martin Pieuchot
Incoherency brought by jmc@ and schwarze@ because the SYNOPSIS of the corresponding manual do not match its NAME. This is one step further in the zs(4) unification... Go dokey go! Tested by jmatthew@, ok sebastia@, deraadt@
2015-11-21Prevent disabling vmm mode if a VM is still running.Martin Pieuchot
Return EAGAIN in this case: # vmmctl -d vmmctl: disable VMM command failed (35) - Resource temporarily unavailable ok mlarkin@
2015-11-21Do not create a VM if vmm mode hasn't been enable.Martin Pieuchot
Currently one MUST do "vmmctl -e" before creating a vm with "vmm -S ...". Lately this could be done automagically by vmd(8) but the kernel should not allow things that wont fly. While here, disable vmm mode in error path if at least one of the CPUs failed to enable it. ok mlarkin@
2015-11-21Do not use boolean_t outside of /sys/uvmMartin Pieuchot
ok mlarkin@
2015-11-21Drop sysctl leftovers.Visa Hankala
2015-11-21error: too many arguments to function 'ifq_deq_begin'David Gwynne
found by deraadt@
2015-11-20Make cnmac compile again after IF_DROP() removal. Just bail out if theVisa Hankala
link is down. ok mpi@
2015-11-20shuffle struct ifqueue so in flight mbufs are protected by a mutex.David Gwynne
the code is refactored so the IFQ macros call newly implemented ifq functions. the ifq code is split so each discipline (priq and hfsc in our case) is an opaque set of operations that the common ifq code can call. the common code does the locking, accounting (ifq_len manipulation), and freeing of the mbuf if the disciplines enqueue function rejects it. theyre kind of like bufqs in the block layer with their fifo and nscan disciplines. the new api also supports atomic switching of disciplines at runtime. the hfsc setup in pf_ioctl.c has been tweaked to build a complete hfsc_if structure which it attaches to the send queue in a single operation, rather than attaching to the interface up front and building up a list of queues. the send queue is now mutexed, which raises the expectation that packets can be enqueued or purged on one cpu while another cpu is dequeueing them in a driver for transmission. a lot of drivers use IFQ_POLL to peek at an mbuf and attempt to fit it on the ring before committing to it with a later IFQ_DEQUEUE operation. if the mbuf gets freed in between the POLL and DEQUEUE operations, fireworks will ensue. to avoid this, the ifq api introduces ifq_deq_begin, ifq_deq_rollback, and ifq_deq_commit. ifq_deq_begin allows a driver to take the ifq mutex and get a reference to the mbuf they wish to try and tx. if there's space, they can ifq_deq_commit it to remove the mbuf and release the mutex. if there's no space, ifq_deq_rollback simply releases the mutex. this api was developed to make updating the drivers using IFQ_POLL easy, instead of having to do significant semantic changes to avoid POLL that we cannot test on all the hardware. the common code has been tested pretty hard, and all the driver modifications are straightforward except for de(4). if that breaks it can be dealt with later. ok mpi@ jmatthew@
2015-11-19Remove an unused bus space mapping and a few other leftovers. CompactVisa Hankala
the resulting code a little.
2015-11-18Take account of padding with dynamic short packets. This fixes theVisa Hankala
reception of short non-IP packets which I broke in revision 1.28.
2015-11-16Replace unbounded gets() in libsa with getln() which takes a buffer size,Miod Vallat
and convert all gets() users. ok deraadt@
2015-11-16Some minor tweaks:Martin Pieuchot
- Add $OpenBSD$ tag, - constify "struct cfattach", - Use <uvm/uvm_extern.h> rather than <uvm/uvm.h>, it's enough. - Keep the "struct vm" private. This allows us to not pull <uvm/uvm_extern.h> in <macine/vmmvar.h> - Prefer DPRINTF() for debug macro as dprintf(3) is a standard function name. - Add vmm_debug and fix VMM_DEBUG build - Remove unneeded <sys/rwlock.h> from <machine/vmmvar.h> - Kill whitespaces ok mlarkin@
2015-11-15everyting -> everythingMiod Vallat
2015-11-15Make sure every mtmsr instruction disabling external interrupts is immediatelyMiod Vallat
followed by an isync. ok mpi@
2015-11-14No need to include <net/bpfdesc.h>Martin Pieuchot
Now that "struct bpf_d" depends on <sys/srp.h> this is one of the offender for removing the header from <sys/param.h>
2015-11-14mutli -> multiMiod Vallat
2015-11-14Fix a missing unlock.Mike Larkin
From Stefan Kempf sn.kempf at t-online.de
2015-11-13Remove an unnecessary IFQ_POLL(), along with an unused #ifdef block.Visa Hankala
ok mpi@
2015-11-13vmm(4) kernel codeMike Larkin
circulated on hackers@, no objections. Disabled by default.
2015-11-12can just IFQ_DEQUEUE instead of POLL followed immediately by DEQUEUEDavid Gwynne
ok mpi@
2015-11-12get rid of IFQ_POLL.David Gwynne
IFQ_POLL(&ifp->if_snd, m); if (m == NULL) return; IFQ_DEQUEUE(&ifp->if_snd, m); is the same as IFQ_DEQUEUE(&ifp->if_snd, m); if (m == NULL) return; ok mpi@
2015-11-10Define pmap_nested() here too, since we define PMAP_EXCLUDE_DECLS for the sakeMiod Vallat
of <uvm/uvm_pmap.h>.
2015-11-10pmap changes required for vmm. Changes include addition of pm_type toMike Larkin
track type of pmap and various conversion and pte bit manipulation functions for EPT.
2015-11-10Make TCB_GET() in the kernel return a (void *) like all the others archsPhilip Guenther
problem reported by semarie@
2015-11-09Cache the result of cpuid leaf function $0x1 from the host's boot CPUMike Larkin
during locore, information based on this will be returned to guest VMs issuing cpuid instructions later, under certain circumstances.
2015-11-09Bring GPT validity checking into line with kern/subr_disk.c . InKenneth R Westerback
particular don't attempt to calcuate the header checksum using a size that will cause a crash. Tested & ok yasuoka@
2015-11-09EPT paging permission bits for amd64, will be used in subsequent pmapMike Larkin
changes for vmm.
2015-11-08Make "machine disk" show some info for EFI instead of info for BIOS.YASUOKA Masahiko
2015-11-08Make the variables be "const" and fix white space.YASUOKA Masahiko
2015-11-07Spell `unused' correctly.Miod Vallat
2015-11-07Disable red-zone since EFI is running with a different ABI.YASUOKA Masahiko
This may fixes the issue when loading a compressed kernel on macbook reported by gonzalo, jung, Joel Roberts, Bryan Vyhmeist and many.
2015-11-07get rid of IF_PREPEND by switching to IFQ_POLL/IFQ_DEQUEUE.David Gwynne
IF_PREPEND only checks priq state, so it wont work out well if you're using hfsc. tested by miod@ ok mpi@ miod@