|
Revision tags: v6.4.0, v6.4.0rc1, v6.5.0, v6.2.2, v6.2.1, v6.3.0, v6.0.1, v6.0.0, v6.0.0rc1, v6.1.0, v5.8.3, v5.8.2, v5.8.1, v5.8.0, v5.9.0, v5.8.0rc1, v5.6.3, v5.6.2, v5.6.1, v5.6.0, v5.6.0rc1, v5.7.0, v5.4.3, v5.4.2, v5.4.1, v5.4.0, v5.5.0, v5.4.0rc1, v5.2.2, v5.2.1, v5.2.0, v5.3.0, v5.2.0rc, v5.0.2, v5.0.1, v5.0.0, v5.0.0rc2, v5.1.0, v5.0.0rc1, v4.8.1, v4.8.0, v4.6.2, v4.9.0, v4.8.0rc, v4.6.1, v4.6.0, v4.6.0rc2, v4.6.0rc, v4.7.0, v4.4.3, v4.4.2, v4.4.1, v4.4.0, v4.5.0, v4.4.0rc, v4.2.4, v4.3.1, v4.2.3, v4.2.1, v4.2.0, v4.0.6, v4.3.0, v4.2.0rc, v4.0.5, v4.0.4, v4.0.3, v4.0.2, v4.0.1, v4.0.0, v4.0.0rc3, v4.0.0rc2, v4.0.0rc, v4.1.0, v3.8.2, v3.8.1, v3.6.3, v3.8.0, v3.8.0rc2, v3.9.0, v3.8.0rc, v3.6.2, v3.6.1, v3.6.0, v3.7.1, v3.6.0rc |
|
| #
97cf09ed |
| 11-Sep-2013 |
Antonio Huete Jimenez <tuxillo@quantumachine.net> |
vkernel64 - Add newline to the end of options files.
Spotted by: swildner
|
|
Revision tags: v3.4.3, v3.4.2, v3.4.1, v3.4.0, v3.4.0rc, v3.5.0, v3.2.2, v3.2.1, v3.2.0, v3.3.0 |
|
| #
509bc517 |
| 22-Aug-2012 |
Antonio Huete Jimenez <tuxillo@quantumachine.net> |
Bring in DIRFS: A filesystem for VKERNELS
* What is DIRFS? dirfs is a pseudo-filesystem specific for vkernel(7) which allows mounting host's directories into the vkernel. It runs directly in the
Bring in DIRFS: A filesystem for VKERNELS
* What is DIRFS? dirfs is a pseudo-filesystem specific for vkernel(7) which allows mounting host's directories into the vkernel. It runs directly in the vkernel's VFS code, as any other regular filesystem, but it does syscalls (vkernels are userland programs) to retrieve or post the information needed on every operation requested.
Needless to say that the operations that you can perform in the host directories/files depend on the permissions the user that runs the vkernel. For example, you will not be able to 'chflags schg' if you run the vkernel with a regular user and not with root.
* How does it work? It basically works like any other filesystem. It has its own mount_dirfs command that will be called by the system's mount(8) command when needed.
vkernel64 # mount -t dirfs /usr/src2 /mnt vkernel64 # df -h /mnt Filesystem Size Used Avail Capacity Mounted on dirfs@/usr/src2 47G 36G 12G 75% /mnt
Umounting is a normal operation too:
vkernel64 # mount | fgrep dirfs dirfs@/usr/src2 on /mnt (dirfs) vkernel64 # umount /mnt
* What's the current status Currently it is in a *experimental* status, with (probably) many bugs and some parts missing.
TODO - Make dirfs mpsafe. - Fix problems with multiple mount points. - Implement VOP_NLINK so that hardlinks are possible. - Add missing kqueue(2) support. - dirfs root so that a vkernel can be booted from it. - Locking mechanisms for opened fds between host <-> vkernel. - Make sure dirfs is properly restored after vkernel checkpointing (upcoming GSoC project). - Bug hunting & bug fixing. - Any ideas?
show more ...
|
|
Revision tags: v3.0.3, v3.0.2, v3.0.1, v3.1.0, v3.0.0 |
|
| #
86d7f5d3 |
| 26-Nov-2011 |
John Marino <draco@marino.st> |
Initial import of binutils 2.22 on the new vendor branch
Future versions of binutils will also reside on this branch rather than continuing to create new binutils branches for each new version.
|
|
Revision tags: v2.12.0, v2.13.0, v2.10.1, v2.11.0, v2.10.0, v2.9.1, v2.8.2, v2.8.1, v2.8.0, v2.9.0, v2.6.3, v2.7.3, v2.6.2, v2.7.2, v2.7.1 |
|
| #
8fca3954 |
| 12-Apr-2010 |
Matthew Dillon <dillon@apollo.backplane.com> |
Merge branch 'net80211-update' of git://leaf.dragonflybsd.org/~rpaulo/dragonfly into net80211-update
|
| #
a81274c5 |
| 07-Apr-2010 |
Rui Paulo <rpaulo@FreeBSD.org> |
Merge branch 'master' into net80211-update
|
|
Revision tags: v2.6.1 |
|
| #
9da77dd0 |
| 30-Mar-2010 |
Sascha Wildner <saw@online.de> |
Move SHOW_BUSYBUFS to the platform independent kernel options file.
Submitted-by: Sylvestre Gallon <ccna.syl@gmail.com> Dragonfly-bug: <http://bugs.dragonflybsd.org/issue1702>
|
| #
1b2c87ca |
| 29-Mar-2010 |
Rui Paulo <rpaulo@FreeBSD.org> |
Merge branch 'master' into net80211-update
Conflicts: sys/conf/options
|
|
Revision tags: v2.7.0, v2.6.0 |
|
| #
14fa7983 |
| 27-Mar-2010 |
Matthew Dillon <dillon@apollo.backplane.com> |
kernel - Move PANIC_REBOOT_WAIT_TIME to conf/options
* Move it out of the platform-specific conf and into the generic conf.
Submitted-by: Sylvestre Gallon <ccna.syl@gmail.com>
|
|
Revision tags: v2.5.1, v2.4.1, v2.5.0, v2.4.0 |
|
| #
da673940 |
| 17-Aug-2009 |
Jordan Gordeev <jgordeev@dir.bg> |
Add platform vkernel64.
|