remove i386-only conditionalisation
[dragonfly.git] / sys / kern /
2006-07-27 Simon SchubertMerge from vendor branch GDB:
2006-07-25 Matthew DillonFix a bug where the VMAYHAVELOCKS flag on a vnode may...
2006-07-20 Matthew DillonCheck the the ops mount pointer is not NULL before...
2006-07-19 Matthew DillonIntroduce sys/syslink.h, the beginnings of a VOP-compat...
2006-07-18 Matthew DillonRemove several layers in the vnode operations vector...
2006-07-14 Simon SchubertFix two bugs in cluster_read:
2006-07-13 Sepherosa ZiehauMerge from vendor branch ATHEROS:
2006-07-11 Matthew DillonCorrect a problem with the user process scheduler's...
2006-07-10 Matthew DillonChange the seeder array from a modulo to a logical...
2006-07-10 Matthew DillonCleanup, no functional changes.
2006-07-10 Matthew DillonDisassociate the VM object after calling VOP_INACTIVE...
2006-07-07 Simon SchubertCorrect typo in comment
2006-07-04 Matthew DillonDo not attempt to read the slice table or disk label...
2006-06-30 Eirik NygaardRemove syscall-args. It is not needed now that libcr...
2006-06-27 Matthew Dillon/dev/[k]mem was not allowing access to the CPU globalda...
2006-06-24 Sepherosa ZiehauMerge from vendor branch WPA_SUPPLICANT:
2006-06-20 Matthew DillonFix a case where RTP_PRIO_FIFO was not being handled...
2006-06-18 Matthew DillonReplace the random number generator with an IBAA genera...
2006-06-18 Matthew DillonReplace the random number generator with an IBAA genera...
2006-06-14 Matthew Dillonfcntl(.., F_SETFL, ..) should only do an FIOASYNC ioctl...
2006-06-14 Gregory Neil ShapiroMerge from vendor branch SENDMAIL:
2006-06-13 Matthew DillonAdd two more system calls, __accept and __connect....
2006-06-13 Matthew DillonAdd kernel syscall support for explicit blocking and...
2006-06-10 Matthew DillonRemove the select_curproc vector from the usched struct...
2006-06-10 Matthew DillonMove selinfo stuff to the separate header sys/selinfo...
2006-06-08 Matthew DillonAdd an option, DEBUG_PCTRACK, which will record the...
2006-06-07 Matthew DillonRemove the asynchronous system call interface sendsys...
2006-06-05 Matthew DillonCleanup crit_*() usage to reduce bogus warnings printed...
2006-06-05 Matthew DillonRemove an inappropriate crit_exit() in ehci.c and add...
2006-06-05 Matthew DillonRemove lwp_cpumask assignment. lwp_cpumask is handled...
2006-06-05 Matthew DillonModify kern/makesyscall.sh to prefix all kernel system...
2006-06-05 David XuRegenerate.
2006-06-05 David XuOops, the usched_set syscall prototype should be updated.
2006-06-05 David XuAllow userland to bind a process to specific CPUs....
2006-06-04 Matthew DillonRemove LWKT reader-writer locks (kern/lwkt_rwlock.c...
2006-06-04 Matthew DillonMisc cleanup - move another namecache list scan into...
2006-06-02 Matthew DillonRemove vnode->v_id. This field used to be used to...
2006-06-01 Matthew Dillonnamecache->nc_refs is no longer protected by the MP...
2006-06-01 Matthew DillonSince we can only hold one shared spinlock at a time...
2006-06-01 Matthew DillonIf the scheduler clock cannot call bsd4_resetpriority...
2006-06-01 Matthew DillonUse the MP friendly objcache instead of zalloc to alloc...
2006-06-01 Matthew Dillongd_tdallq is not protected by the BGL any more, it...
2006-05-31 Sascha WildnerZap references to Digital's TurboLaser bus.
2006-05-29 Matthew DillonFix numerous bugs in the BSD4 scheduler introduced...
2006-05-29 Matthew DillonShortcut two common spinlock situations and don't bothe...
2006-05-29 Matthew DillonAdd two KTR (kernel trace) options: KTR_GIANT_CONTENTIO...
2006-05-29 Matthew DillonRemove conditional memory allocation based on KTR_ALL...
2006-05-29 Matthew DillonClean up compiler warnings when KTR is enabled but...
2006-05-29 Matthew DillonFurther isolate the user process scheduler data by...
2006-05-27 Matthew DillonMark various forms of read() and write() MPSAFE. Note...
2006-05-27 Matthew DillonClear the new VMAYHAVELOCKS flag when after an unlock...
2006-05-27 Matthew DillonGreatly reduce the MP locking that occurs in closef...
2006-05-27 Matthew DillonImplement msleep(). This function is similar to the...
2006-05-26 Matthew DillonAdd #include <sys/lock.h> where needed to support get_m...
2006-05-26 Matthew Dillon* Make falloc() MPSAFE. filehead (the file list) and...
2006-05-26 Matthew DillonMore MP work.
2006-05-25 Matthew DillonFix several buffer cache issues related to B_NOCACHE.
2006-05-25 Matthew DillonConvert almost all of the remaining manual traversals...
2006-05-25 Matthew DillonAdjust pamp_growkernel(), elf_brand_inuse(), and ktrace...
2006-05-25 Matthew DillonModifying lk_flags during lock reinitialization require...
2006-05-24 Matthew DillonMove the code that inserts a new process into the allpr...
2006-05-24 Matthew DillonStart consolidating process related code into kern_proc...
2006-05-24 Simon Schubertregen
2006-05-24 Simon Schubertunbreak world: spell MPSAFE correctly
2006-05-24 Matthew Dillonspinlock more of the file descriptor code. No apprecia...
2006-05-23 Matthew DillonMove all the resource limit handling code into a new...
2006-05-22 Matthew DillonFix a minor bug in fdcopy() in the last commit, Consoli...
2006-05-22 Matthew DillonDo a major cleanup of the file descriptor handling...
2006-05-22 Sascha WildnerMop up remains of the ibcs2/streams/svr4 removal:
2006-05-22 Matthew DillonGive struct filedesc and struct file a spinlock, and...
2006-05-21 Matthew DillonImplement a much faster spinlock.
2006-05-20 Matthew DillonRemove so_gencnt and so_gen_t. The generation counter...
2006-05-19 Matthew DillonRecent lwkt_token work broke UP builds. Fix the token...
2006-05-19 Matthew DillonConvert most manual accesses to filedesc->fd_files...
2006-05-19 Matthew DillonConsolidate the file descriptor destruction code used...
2006-05-18 Matthew DillonRemove the last vestiges of UF_MAPPED. All the removed...
2006-05-18 Matthew DillonMake spinlocks panic-friendly.
2006-05-18 Matthew DillonReplace the LWKT token code's passive management of...
2006-05-17 Matthew DillonOops, last commit was slightly premature. Fix a bug...
2006-05-17 Matthew DillonThe ktracing code was not properly matching up VOP_OPEN...
2006-05-17 Matthew DillonPass the process (p) instead of the vnode (p->p_tracep...
2006-05-16 Matthew DillonAttempt to interlock races between the buffer cache...
2006-05-16 Matthew DillonRemove vnode lock assertions that are no longer used...
2006-05-14 Sascha WildnerRemove all traces of umapfs and associated stuff.
2006-05-14 Sascha Wildner/tmp/umap.msg
2006-05-12 Matthew DillonMost of the fields in vnodeop_desc have been unused...
2006-05-11 Matthew DillonFix three bugs in the last commit and document special...
2006-05-08 Matthew DillonSplit kern/vfs_journal.c. Leave the low level journal...
2006-05-08 Matthew DillonRewrite the POSIX locking code. It was becomming impos...
2006-05-07 Matthew DillonRemove the internal F_FLOCK flag. Either F_POSIX or...
2006-05-07 Matthew Dillonlockmgr_kernproc() wasn't checking whether the lockhold...
2006-05-07 Matthew DillonRecode the streamid selector. The streamid was faked...
2006-05-07 Matthew DillonWe have to use pmap_extract() here. If we lose a race...
2006-05-07 Matthew DillonWe have to use pmap_extract() here. pmap_kextract...
2006-05-07 Matthew DillonWe have to use pmap_extract here, pmap_kextract will...
2006-05-06 Matthew DillonRemove the thread argument from all mount->vfs_* functi...
2006-05-06 Matthew DillonThe fdrop() procedure no longer needs a thread argument...
2006-05-06 Matthew DillonThe thread/proc pointer argument in the VFS subsystem...
2006-05-05 Matthew DillonRemove the thread_t argument from vfs_busy() and vfs_un...
2006-05-05 Matthew DillonSimplify vn_lock(), VOP_LOCK(), and VOP_UNLOCK() by...
next