RSS

DragonFly BSD 4.6.0

14 Agosto 2016

DragonFly BSD

DragonFly BSD

DragonFly è un sistema operativo designato per essere la logica continuazione sulla serie FreeBSD-4.x OS. DragonFly è un fork per dare a BSD l’oppurtunità di crescere in una nuova e diversa direzione rispetto alla serie FreeBSD-5.

Versione 4.6.0

Questa versione contiene(in Inglese):

Improved graphics support

The i915 driver has been updated to match the version found with the Linux 4.4 kernel. This gives us significantly better stability on newer cpus, Broadwell and Skylake in particular.

The radeon driver has been updated to match Linux 3.18, and controls for the backlight are available through drm.radeon.backlight.

NVMe support

We now have a NVMe driver (PCIe SSDs). It currently must be kldloaded with nvme_load=”YES” in /boot/loader.conf. The driver uses all concurrency features offered by the chip and will distribute queues and interrupts across multiple CPUs to maximize performance. It has been tested up to around 1.05M IOPS @4K, and roughly 6.5 GBytes/sec @32K (random read from urandom-filled partition, physio, many threads), with the 2xE5-2620v4 (xeon) test server 78% idle in the IOPS test and 72% idle on the bandwidth test. In other words, we maxed out the three NVMe devices we had plugged in and the system still had plenty of suds left over.

Please note that a machine’s ability to boot from an NVMe device depends on the BIOS, and not DragonFly. Most BIOSes cannot boot from NVMe devices and those that can probably only do it through UEFI. Info on device state is available with the new utility nvmectl.

NVMe support is not in the default kernel, yet. Put nvme_load=”YES” in loader.conf to use it.

SMP Performance Significantly Improved

SMP performance was already very good. As part of the NVMe driver work we revamped the buffer cache subsystem and a number of other I/O related paths, further reducing lock contention and IPI signalling overheads. We also put topology-aware cpu cache localization into the kernel memory allocator (primarily helps multi-socket systems and systems with high core counts).

The network subsystem also continues to receive significant improvement, with modest machine configurations now capable of handling upwards of 580K conns/sec.

Expansion of Supported Packages

DragonFly now supports over 24000 packages via its dports mechanism. This year a great deal of work went into improving library compatibility and improving the quality of the ports and the dependability of the bulk build system that backs them. Normal users can now do customized bulk builds of their own ports packages through a simplified build interface called “synth”, which is itself available via the dports system (if desired, and you have sufficient machine resources and time).

Preliminary EFI Support

DragonFly now supports (64-bit) EFI booting, but it has not been integrated into the installer. Following the manual steps of other users is the immediate solution.

Changes since DragonFly 4.4

Kernel

  • Fix a namecache race (triggered by heavy tmpfs mount/umount rate)
  • Fix two unmount / access races when many mounts are present
  • Improve context switch hotpath
  • Cut pmap invalidations from buffer cache activity in half
  • Reduce certain potential interrupt stacking issues
  • Implement a new fixed memory pool for physio accesses, eliminating all SMP invalidations from the path
  • Refactor pmap invalidations to operate at a higher priority than critical sections, reduce response latency and greatly reducing multi-core stalls during heavy invalidation activity
  • Fix a 2-instruction SMP race during thread exit.
  • Add buffer cache repurposing to reduce TLB invalidations in high-I/O-thru-filesystem situations. Defaults to off (sysctl vfs.repurpose_enable).
  • Revamp the IPIQ (IPI messaging) mechanics to avoid deadlocks during heavy activity.
  • Revamp the IPI interrupt signalling mechanics to reduce unnecessary duplicate IPIs.
  • We no longer use the vm_map subsystem to dynamically allocate and deallocate KVM for the buffer-cache. Instead we pre-reserve the maximum amount of (unmapped) KVM for every buffer. This makes certain congestion-control algorithms for the buffer cache unnecessary and they have been removed.
  • Add a SMP %rip sniffer IPI, very useful for debugging.
  • Fix an issue where the reported real-time becomes inconsistent between cpu threads under heavy loads. This issue generally resulted in ‘make’ getting confused.
  • Refactor the VM prefaulting code to improve pipe-lining. This improves burst page-in performance when starting large applications such as chrome.
  • A lot of work to reduce noticable (but short) stalls in various subsystems when they have to work on large data-sets. For example such as when a process with 64GB of RSS exits.
  • Fix zfree()’s hysteresis, greatly reducing unnecessary IPIs.
  • Reduce stalls during major token contention. It used to be that a large multi-threaded program contending on a single lock across all cpus could create noticable stalls even if the program was running niced or at a high (aka low) dynamic priority. These situations have been fixed.
  • New threads should not inherit the sigalstack. Fixes issues with ‘go’.
  • Fix MSI support issues.
  • Improve buffer flush and cluster_write linearity.
  • Allow drivers to register interrupts which are specifically meant to be high-frequency (disable the rate limiter for such interrupts).
  • Bring in ipfw3
  • implement a lockless in-kernel NAT for ipfw3 (note that PF’s NAT is also mostly lockless).
  • Add ipfwsync for ipfw3, for synchronizing state between multiple machines.
  • Various procfs workarounds added to fix truss issues.
  • Implement PIE (place independent executables). Randomization be enabled with a sysctl kern.elf64.pie_base_mmap.
  • Implement ppoll() with precise microsecond timeout.
  • Fix VM issues with virtio.
  • Add EVFILT_FS support to kqueue.
  • Cut-down on the amount of BSS in the kernel binary. We ran over the loader’s 64MB limit (with the initrd image and a few kld’s also loaded), AGAIN!
  • modules.local mechanism added for non-base kernel modules.
  • Implement I2cSerialBus ACPI module support (used by IG4).
  • Implement ACPI’s GPIO.
  • Work around HW VM bugs by aligning the kernel load’s end address to 2MB, so there is no transition from 4K pages to 2MB pages for kernel text+data+bss.
  • Many, many HAMMER improvements.
  • HAMMER mount is now forced to noatime by default.
  • Do not allow the kqueue sleep timer to wrap.
  • User process scheduler adjustments to improve interactive responsiveness in situations where (essentially) batch jobs are syscall-heavy or VM fault-heavy.
  • Fix cpu selection skew in the scheduler with high fork/exec rates.
  • Fixed vfork()/getpid() bug in heavily threaded programs.
  • Refactor vm_page_alloc() and the pre-zeroing code to maintain cpu-v-cache affinity.

Graphics

  • The drm/i915 driver now matches Linux kernel 4.4, supporting Intel GPUs up to the Skylake and Cherryview generations
  • The drm/radeon driver mostly matches Linux 3.18 with specific fixes from Linux 3.19
  • UEFI framebuffer support

Networking

  • Fix an issue with IWMs packet tx.
  • Bring in expanded ipfw from FreeBSD (called ipfw3 in DFly)
  • Complete WIFI sync from FreeBSD. This gives us the new single-ifconfig mechanic that fixes all the locking issues that existed with the dual-ifconfig mechanic and allowed us to synchronize all FreeBSD wlan drivers. DragonFly and FreeBSD developers are thus able to combine efforts on bug fixes and new work.
  • IWM, IWN, ATH, usb-based, and other wifi drivers now have better support.
  • Reduce network maintenance IPI spamming (e.g. ipfrag_slowtimo()). These now only signal the cpus that actually need it.
  • hyperv/vmbus support added (ported from FreeBSD)
  • AUTOFS added (ported from FreeBSD), AM-UTILS removed.
  • Improve NFS handling of ESTALE.
  • Fix two inet6 issues.
  • Do not prematurely drop receiving-only TCP connections when mbufs are not available.
  • Make setsockopt() asynchronous for commonly used options. This significantly improves the connection rate.
  • Fix kernel panic when /dev/mapper/control is read or written (it isn’t supposed to be readable or writable).
  • Improved power management for AHCI.
  • Improve DDB by making x/a work like in gdb. Add x/p.
  • Implement per-cpu lport cache for listen sockets. Greatly reduces listen/accept contention on a busy TCP server.
  • Move libedit and libncurses to /lib/priv to ensure that packages do not try to use them. They should only be used by base utilities.
  • Remove all references to libtermcap from ncurses.
  • The nrelease build can now build snapshots on tmpfs.
  • Rework the GCC Makefiles to reduce unnecessary re-building for incremental builds (quickworld).
  • Add kqueue support to NFS (fixes firefox issues w/NFS that cause firefox to corrupt itself).
  • Add EV_RECEIPT and EV_DISPATCH support to kqueue.
  • Add quirks for xhci (USB).
  • Significant work on IGB, IG, EMX, RAL, and many other NIC drivers.
  • accept(2)/close(2) performance has been [significantly improved](http://lists.dragonflybsd.org/pipermail/users/2016-June/249699.html0.

Other drivers

  • NVMe (PCIe SSD) driver added. This is a home-grown driver written from the ground-up for maximum SMP performance.
  • Syscons got some reworking to work better with GPU framebuffers.
  • Multiple SD/MMC card slots in a single device can be accessed simultaneously.

Userland

  • Revamp systat -vm display. MSI/MSI-x interrupts are aggregated a little, memory use reformulated, more page rates are shown in bytes (K,M,G, etc) instead of pages.
  • Revamp systat -pv display on wide terminals (add %rip sampling)
  • Fix mountd-caused system performance issue in mount-heavy systems
  • TRIM support refactored for newfs_hammer.
  • Align output from cat(1) when invoked with -be and -ne flags (from NetBSD)
  • Remove non-standard and headers from the system.
  • Turn SO_REUSEADDR on for mountd. Fixes startup errors when mountd is restarted or initially fails due to /etc/exports issues, and then restarted a little later.
  • Numerous wide-char improvements.
  • Port fstyp from FreeBSD
  • Add -E option to showmount
  • Add -o retrycnt= option to mount_nfs
  • Add -i and -q to sysctl, from FreeBSD
  • Add -x to chown/chgrp and sync with FreeBSD
  • fix -S option of ln (before it required -t to work)
  • Sync chflags, chmod, ctags, cpucontrol, kenv, pathchk, stat(1), ncal(1) with FreeBSD
  • Fix an issue with malloc() improperly setting errno.
  • Fix fscanf() format in atrun when reading the uid and gid from the job file.
  • Misc fixes to zic.
  • Synced ncal from FreeBSD
  • Add unzip(1) (if you can’t beat ‘em, join ‘em).
  • Update ssh (now a private library)
  • libc – improve realloc() performance.
  • libc – Fix numerous open/dup/pipe descriptor leaks due to threaded races by using O_CLOEXEC in appropriate places. In particular, fixed bugs in popen().
  • nurses upgraded to version 6.0 and made private. As a result, functionality not needed in base (e.g. panel/form/menu libs) were removed as well as man pages.
  • libldns was privatized

Various tools have been upgraded in the base system:

  • Installer changes the inode/data space mix for the UFS /boot. We don’t need 128K inodes on a 1GB /boot!
  • Installer no longer uses HAMMER PFSs, it causes too much confusion. Instead it separates out stuff that would normally not need to be backed up into /build and uses null-mounts.
  • Fix a couple of logic issues in (gcc, mpfr, tre). gcc and mpfr fixes pushed to upstream.
  • Import OpenSSL 1.0.1t

HAMMER improvements

  • Many bug fixes and improvements by Tomohiro Kusumi.
  • Fix an improper DATA CRC error that can occur sometimes when a block of data read just after being written.
  • The rescue image now includes the ‘undo’ utility for HAMMER1.

Other improvements

  • 24000+ dports packages now build.
  • User utility “synth” to automate bulk building.
  • Many manual page improvements.
  • share/doc has had a significant number of papers added.

Hammer2 Status

HAMMER2 is still in-progress and will continue to be for some time. It is not ready for prime-time, but significant work has been done on its internals to improve backing-device separation, improve stability, and increase throughput in SMP environments. HAMMER2 now supports export via NFS.

Clang status

A starting framework has been added for using clang as the alternate base compiler in DragonFly, to replace gcc 4.7. It’s not yet complete. Clang can of course be added as a package.

Risorse

La distribuzione può essere scaricata da:

Il sito web della distribuzione è: http://www.dragonflybsd.org/

Screenshot

Dragonflybsd 4.2

Dragonflybsd 4.2

Conclusioni

Il supporto ai 32 bit è stato abbandonato.

Subscribe

Subscribe to our e-mail newsletter to receive updates.

No comments yet.

Leave a Reply