freebsd-skq/sys
Stanislav Sedov b2d758545b - Add support to atomically set/clear individual bits of a MSR register
via cpuctl(4) driver.  Two new CPUCTL_MSRSBIT and CPUCTL_MSRCBIT ioctl(2)
  calls treat the data field of the argument struct passed as a mask
  and set/clear bits of the MSR register according to the mask value.
- Allow user to perform atomic bitwise AND and OR operaions on MSR registers
  via cpucontrol(8) utility.  Two new operations ("&=" and "|=") have been
  added.  The first one applies bitwise AND operaion between the current
  contents of the MSR register and the mask, and the second performs bitwise
  OR.  The argument can be optionally prefixed with "~" inversion operator.
  This allows one to mimic the "clear bit" behavior by using the command
  like this:
      cpucontrol -m 0x10&=~0x02		# clear the second bit of TSC MSR

  Inversion operator support in all modes (assignment, OR, AND).

Approved by:	re (kib)
MFC after:	1 month
2009-06-30 12:35:47 +00:00
..
amd64 remove unused/unneeded extern declarations 2009-06-30 11:16:32 +00:00
arm Correct the #endif comment. 2009-06-26 16:22:24 +00:00
boot On special systems where the MBR and the GPT are in sync (up to the 4th 2009-06-26 09:32:31 +00:00
bsm Merge OpenBSM 1.1 from OpenBSM vendor branch to head. 2009-04-19 16:17:13 +00:00
cam Change the type of uio_resid member of struct uio from int to ssize_t. 2009-06-25 18:46:30 +00:00
cddl dtrace/amd64: fix virtual address checks 2009-06-24 16:03:57 +00:00
compat Replace AUDIT_ARG() with variable argument macros with a set more more 2009-06-27 13:58:44 +00:00
conf Note that as a result of the SYSV IPC changes, COMPAT_FREEBSD[456] now 2009-06-26 17:50:52 +00:00
contrib Update to 3.6.2.2 firmware (latest w/o host-based power save support): 2009-06-29 18:42:54 +00:00
crypto Changed to M_NOWAIT when reallocing psc_buf in padlock_sha_update(), 2009-05-27 09:52:12 +00:00
ddb Place hostnames and similar information fully under the prison system. 2009-05-29 21:27:12 +00:00
dev - Add support to atomically set/clear individual bits of a MSR register 2009-06-30 12:35:47 +00:00
fs Change the type of uio_resid member of struct uio from int to ssize_t. 2009-06-25 18:46:30 +00:00
gdb
geom - Apply the same naming rules of LVM names as done in the LVM code itself. 2009-06-24 22:09:30 +00:00
gnu Fix the build by using proper format. 2009-06-25 16:48:13 +00:00
i386 Replace AUDIT_ARG() with variable argument macros with a set more more 2009-06-27 13:58:44 +00:00
ia64 Correct the #endif comment. 2009-06-26 16:22:24 +00:00
isa Rename statclock_disable variable to atrtcclock_disable that it actually is, 2009-05-03 17:47:21 +00:00
kern Free struct ucreds allocated in vfs_hang_addrlist() when deleting 2009-06-29 18:09:07 +00:00
kgssapi When the KOBJMETHOD() macro was updated, it resulted in the 2009-06-14 17:33:46 +00:00
libkern done method is supposed to return int. 2009-06-22 22:09:18 +00:00
mips Fix copyrights to reflect the origin of these files. 2009-06-29 16:45:50 +00:00
modules Update for the Intel 10G driver, this adds support for 2009-06-24 18:27:07 +00:00
net In case we cannot queue a packet reaching the queue limit, retain the 2009-06-30 05:21:00 +00:00
net80211 Modify most routines returning 'struct ifaddr *' to return references 2009-06-23 20:19:09 +00:00
netatalk Use queue(9) instead of hand-crafted link lists for the global netatalk 2009-06-24 21:36:09 +00:00
netgraph - Turn the third (islocked) argument of the knote call into flags parameter. 2009-06-28 21:49:43 +00:00
netinet Update various IPFW-related modules to use if_addr_rlock()/ 2009-06-26 00:46:50 +00:00
netinet6 Fix "options VIMAGE_GLOBALS" build following introduction of 2009-06-29 15:23:50 +00:00
netipsec Add address list locking for in6_ifaddrhead/ia_link: as with locking 2009-06-25 16:35:28 +00:00
netipx Use queue(9) instead of hand-crafted link lists for the global IPX 2009-06-24 20:57:50 +00:00
netnatm Reimplement the netisr framework in order to support parallel netisr 2009-06-01 10:41:38 +00:00
netncp
netsmb Rework socket upcalls to close some races with setup/teardown of upcalls. 2009-06-01 21:17:03 +00:00
nfs Replace AUDIT_ARG() with variable argument macros with a set more more 2009-06-27 13:58:44 +00:00
nfsclient Fix build with NFS_LEGACYRPC enabled after the socket upcall locking 2009-06-30 03:18:51 +00:00
nfsserver Fix build with NFS_LEGACYRPC enabled after the socket upcall locking 2009-06-30 03:18:51 +00:00
nlm Since svc_[dg|vc|tli|tp]_create() did not hold a reference count on the 2009-06-17 22:50:26 +00:00
opencrypto Fix cryptodev UIO creation. 2009-05-23 13:23:46 +00:00
pc98 Add stub vm.h for pc98. 2009-06-27 02:20:31 +00:00
pci Use if_maddr_rlock()/if_maddr_runlock() rather than IF_ADDR_LOCK()/ 2009-06-26 11:45:06 +00:00
powerpc Correct the #endif comment. 2009-06-26 16:22:24 +00:00
rpc Fix two known problems in clnt_rc.c, plus issues w.r.t. smp noted 2009-06-25 00:28:43 +00:00
security Dynamically allocate the gidset field in audit record. 2009-06-29 20:19:19 +00:00
sparc64 - Work around the broken loader behavior of not demapping no longer 2009-06-28 22:42:51 +00:00
sun4v Correct the #endif comment. 2009-06-26 16:22:24 +00:00
sys - Add support to atomically set/clear individual bits of a MSR register 2009-06-30 12:35:47 +00:00
tools - Add a way to change filter oversampling factor through 2009-06-15 04:31:34 +00:00
ufs For SU mounts, softdep_fsync() might drop vnode lock, allowing other 2009-06-30 10:07:33 +00:00
vm Eliminiate code duplication by calling vm_object_destroy() 2009-06-28 08:42:17 +00:00
xdr MFdevbranch 192944 2009-05-28 08:18:12 +00:00
xen Make ipi_cpu() function as intended. 2009-05-30 08:53:13 +00:00
Makefile Remove the unmaintained University of Michigan NFSv4 client from 8.x 2009-05-22 12:35:12 +00:00