git: kernel - Remove unnecessary cpu_enable_intr()

2016-07-15 Thread Matthew Dillon
commit cd9b08449c03be925cad982308205be40051be13 Author: Matthew Dillon Date: Fri Jul 15 13:25:09 2016 -0700 kernel - Remove unnecessary cpu_enable_intr() * Remove an unnecessary cpu_enable_intr() being called just prior to a write_rflags().

git: kernel - Refactor Xinvltlb and the pmap page & global tlb invalidation code

2016-07-15 Thread Matthew Dillon
commit 79f2da03601f030588847e71f8ac645ad0d06091 Author: Matthew Dillon Date: Fri Jul 15 13:28:39 2016 -0700 kernel - Refactor Xinvltlb and the pmap page & global tlb invalidation code * Augment Xinvltlb to handle both TLB invalidation and per-page

git: kernel - Enhance CPUMASK and atomic ops

2016-07-15 Thread Matthew Dillon
commit a556fd061e70b61d76ac9116d2e0577c7e0d86b2 Author: Matthew Dillon Date: Fri Jul 15 13:20:32 2016 -0700 kernel - Enhance CPUMASK and atomic ops * Add atomic_testandset_long() Add atomic_testandclear_long() * Add

git: drm/linux: Add ioremap_wt()

2016-07-15 Thread Francois Tigeot
commit af25f1634cccfbdf3a5b1ca7a15264fc2e69a695 Author: François Tigeot Date: Fri Jul 15 23:05:36 2016 +0200 drm/linux: Add ioremap_wt() Summary of changes: sys/dev/drm/include/asm/io.h | 6 ++ 1 file changed, 6 insertions(+)

git: drm/linux: Rework ioremap functions

2016-07-15 Thread Francois Tigeot
commit 7c3d2bf2b0df79b0e2483aa2a727ef897e66d048 Author: François Tigeot Date: Fri Jul 15 22:50:57 2016 +0200 drm/linux: Rework ioremap functions No need to have pmap_mapdev_xxx() calls into the leaf functions, put as much code as possible into

git: sbin/newfs_hammer: Don't exit if -f when a blkdev doesn't support TRIM

2016-07-15 Thread Tomohiro Kusumi
commit 532c8d861e52d36fbe54c06f08501942b1f0b851 Author: Tomohiro Kusumi Date: Fri Jul 15 23:18:06 2016 +0900 sbin/newfs_hammer: Don't exit if -f when a blkdev doesn't support TRIM With force option, exit(1) only when ioctl(IOCTLTRIM) failed. Summary of