Opened 15 years ago

Closed 12 years ago

#3723 closed enhancement (fixed)

Improving disk performance by changing VirtualMemory path

Reported by: haiqu Owned by: kallisti5
Priority: normal Milestone: R1
Component: Preferences/VirtualMemory Version: R1/Development
Keywords: Cc: hamish@…
Blocked By: Blocking:
Platform: All

Description

Currently the haiku BFS is a little slow. My guess is that DMA transfers have not yet been enabled.

There is a simple interim solution. By allowing the user to select a virtual memory path on a separate drive - preferrably on another bus entirely - disk swapping speed can be increased significantly. This is due to the fact that the physical heads in your drive need to change what they're doing to service a virtual memory call.

By placing the virtual memory on a separate bus, optimum improvement is gained due to the fact that the PC's controller is now less loaded, and because there is now less data on the bus.

I believe this would be a fairly simple change, and very worthwhile even in the long-term. Checking to ensure the drive is mounted and recreating virtual memory if this fails is about all the extra work required.

No change would be noticed in systems with a single HDD, but then again no improvement is available from Haiku's ability to run SMP either if you only have one CPU ...

Attachments (8)

vmem_with_vols_1.png (15.8 KB ) - added by hamish 13 years ago.
vmem_with_vols_2.png (18.1 KB ) - added by hamish 13 years ago.
vm_kernel_17082011.patch (8.4 KB ) - added by hamish 13 years ago.
Swap volume support in kernel for #3723
vm_preflet_17082011.patch (36.9 KB ) - added by hamish 13 years ago.
Swap volume support in preflet for #3723
vm_check_17082011.patch (5.9 KB ) - added by hamish 13 years ago.
Swap volume check utility for #3723
vm_check_29102011.patch (5.9 KB ) - added by hamish 12 years ago.
vm_kernel_29102011.patch (8.4 KB ) - added by hamish 12 years ago.
vm_preflet_29102011.patch (36.8 KB ) - added by hamish 12 years ago.

Download all attachments as: .zip

Change History (41)

comment:1 by hamish, 13 years ago

Cc: hamish@… added

I completed basic support for this on the preflet side in a Google Code-In patch, and I think I can implement it in the kernel too (if everyone approves).

I have a couple of questions:

Is it acceptable to use the C++ APIs in the kernel code -- in order to test for free space on drives and such -- or would it be preferable to use C functions such as those defined in kernel/fs_info.h?

Where should the swap file be stored on drives that aren't the boot drive? Simply in the root directory of the drive, or in /drive/var?

in reply to:  1 comment:2 by bonefish, 13 years ago

Replying to hamish:

Is it acceptable to use the C++ APIs in the kernel code -- in order to test for free space on drives and such -- or would it be preferable to use C functions such as those defined in kernel/fs_info.h?

Most C++ API is simple not available in the kernel. Also only part of the userland C API is implemented in the kernel. You might need to use the private kernel API. E.g. for getting information about and manipulating disk devices, the disk device manager interface can be used (cf. haiku/trunk/headers/private/kernel/disk_device_manager).

Where should the swap file be stored on drives that aren't the boot drive? Simply in the root directory of the drive, or in /drive/var?

I'd store it in the root directory or make that user-configurable.

in reply to:  1 comment:3 by axeld, 13 years ago

Replying to hamish:

Is it acceptable to use the C++ APIs in the kernel code -- in order to test for free space on drives and such -- or would it be preferable to use C functions such as those defined in kernel/fs_info.h?

In addition to what Ingo wrote: the functions in kernel/ should pretty much all be available (with the exception of spawn_thread() in favor of spawn_kernel_thread() IIRC), and might provide enough data for the issue.

comment:4 by hamish, 13 years ago

The main issue is getting the name of a volume (the name that appears in Tracker) before it's mounted. Nothing in the disk_device_manager headers seems to facilitate this. KPartition::Name() appears to give a name identifying the hard-disk model, KDiskSystem::Name() the filesystem type, etc.

comment:5 by bonefish, 13 years ago

The <fs_info.h> C API is also available in the kernel. It allows you to get the volume and root node ID for any mounted volume. Given such a pair (aka node ref) you can employ the private VFS API (header/private/kernel/vfs.h) to get a path (vfs_entry_ref_to_path()), get the file's stat data (vfs_stat_node_ref()), or open it (vfs_entry_ref_to_vnode() plus vfs_open_vnode()).

The disk device manager API might be interesting, if the volume for the swap file is not even mounted yet and you need to find and/or mount it first.

comment:6 by hamish, 13 years ago

Yeah, my original idea was to use dev_for_path() from fs_info.h, but I realised that swap is initialized before the mount server is started, so only the boot device would be mounted.

I've used the disk device manager to loop through the unmounted disks (KDiskDeviceManager::NextDevice and KPartition::VisitEachDescendant) but there seems to be no way to actually check the names of the volumes (which are needed, as the swap volume is specified in the preflet by name).

in reply to:  6 comment:7 by bonefish, 13 years ago

Replying to hamish:

but there seems to be no way to actually check the names of the volumes (which are needed, as the swap volume is specified in the preflet by name).

Try KPartition::ContentName().

comment:8 by hamish, 13 years ago

Bingo. Thanks!

Should be easy going from here.

comment:9 by anevilyak, 13 years ago

Isn't that potentially a bit fragile? As I recall nothing prevents two different volumes from having the same name.

comment:10 by axeld, 13 years ago

Indeed, I was just about to make the same comment. Hamish, you could have a look at how the mount server decides which volumes to mount upon start; it has a scoring system that has the volume name, the device path, the size of the device, and eventually other things.

That helps not losing the device (or choosing the wrong one) when something changed or there are several options around.

Additionally, if it couldn't find the swap device anymore, a warning could be given.

comment:11 by hamish, 13 years ago

Looking at the mount server code, it seems a little simpler than that. It only mounts the volume if both the device path and the volume name match what's stored in the settings file (anything less and it doesn't mount). Should I follow its example, or go with a scoring system?

Currently I have it set up so that if any error occurs with an alternate swap device, it falls back on the boot device to store the swap file.

comment:12 by axeld, 13 years ago

Hm, maybe stippi has optimized it away, or maybe it's only used in other stuff; I was referring to https://dev.haiku-os.org/browser/haiku/trunk/src/kits/tracker/Utilities.cpp#L988 -- I guess copying the mount server behavior would be okay, too, though, as long as the user is prompted when anything goes wrong.

comment:13 by hamish, 13 years ago

Ah. I was looking at http://dev.haiku-os.org/browser/haiku/trunk/src/servers/mount/AutoMounter.cpp#L503

That code in Utilities.cpp looks good -- I'll adapt that.

With regards to prompting the user, how does one do that in the kernel without BAlert?

comment:14 by axeld, 13 years ago

The only way would be testing the configuration in the Bootscript.

comment:15 by hamish, 13 years ago

In the volume-match scoring code linked in comment 12, the most important element to the final score is the creation time associated with the root directory of the volume.

I'm not sure how to retrieve this creation time for an unmounted volume -- I originally thought of stating the device path under /dev/disk/... but the creation time returned from here is not the same.

comment:16 by axeld, 13 years ago

There is no mechanism to do that; I would just leave it out.

comment:17 by hamish, 13 years ago

Apologies for not posting any updates: the power supply on the machine I use for development failed, and I'm waiting for a replacement. The hard disk is fine, and my work is all backed up, so I'll be able to resume from where I left off once I'm up and running again.

comment:18 by hamish, 13 years ago

I've got swap (seemingly) working on other partitions now.

I'm working on modifying the preflet to give a better overview of the available volumes for swap. I've attached two screenshots so I can get a second opinion before I continue...

I thought perhaps a list view might be more appropriate than a menu field considering the width of the items. Should I even bother showing the path of the device?

by hamish, 13 years ago

Attachment: vmem_with_vols_1.png added

by hamish, 13 years ago

Attachment: vmem_with_vols_2.png added

comment:19 by diver, 13 years ago

FWIW, I don't think that showing the path of the device is needed in this preflet.

comment:20 by hamish, 13 years ago

Yeah, I didn't think so either.

I replaced the menu field with a column list view with "Name", "Free space", and "Capacity" columns and a "Device path" column that's hidden by default, and it looks much better.

However, I've noticed a problem with BColumnListView. While BStringColumn correctly respects font size and sizes itself accordingly, the BRow class is fixed-height.

Its height is given in the constructor, so it's possible to just pass in the current font height, but a nicer solution would be a BStringRow class which automatically sets its height as per the font. Is it possible for me to implement this without breaking binary compatibility?

comment:21 by axeld, 13 years ago

First of all, I really think the popup menu field is the way to go here, just with less information (I'd even consider removing the capacity as well from there). I also would only show mounted volumes.

Second of all, I don't think you should bother with BColumnListView a lot - this class has never gone official (was experimental in Be times), and is supposed to be replaced with something real one day (think model view controller).

comment:22 by hamish, 13 years ago

I think I'm pretty much done with the preflet.

Now the swap volume selection menu field simply contains the volume name, and the mount point (so volumes with the same name can be distinguished from one another). I've also hooked it up to the node monitor.

I was wondering if it might be a good idea to create a small userland interface to the vm code in the kernel (to return info on the current swap files, to check if an error occurred during vmem init, etc).

That way, the preflet could accurately report the size of the current swap file without having to guess which volume it's on (and it would prevent it from being fooled by a user-created file called "swap").

It would also solve the problem of reporting any error finding the swap volume at boot (without needing to resort to a nasty method like writing out a file to the hard drive and checking it later).

by hamish, 13 years ago

Attachment: vm_kernel_17082011.patch added

Swap volume support in kernel for #3723

comment:23 by hamish, 13 years ago

patch: 01

by hamish, 13 years ago

Attachment: vm_preflet_17082011.patch added

Swap volume support in preflet for #3723

by hamish, 13 years ago

Attachment: vm_check_17082011.patch added

Swap volume check utility for #3723

comment:24 by hamish, 13 years ago

There's the patches. I created a bunch of drives in VirtualBox to test and it seems to work fine.

Also, I wrote a little copy of the BPartition::GetMountPoint function in VMAnonymousCache.cpp for generating a unique mount point. Maybe this could be moved into KPartition (and also I could implement KPartition::Mount)?

comment:25 by axeld, 12 years ago

Thanks, and sorry for the delay! It looks pretty good, but I have a few minor coding style related complains:

  • in swapcheck.cpp: two blank lines between sections, the main() goes to the next line.
  • two blank lines between functions is also sometimes violated (for example, in SettingsWindow.cpp)
  • 'vol', and 'cap' aren't good names; you named them properly at other places.
  • Some of the lines in Settings.cpp (maybe at other places, too) are unnecessarily broken into two lines, even though they don't have more than 80 characters.

It would be great if you could rework this, otherwise, I guess someone else would need to do this sooner or later.

by hamish, 12 years ago

Attachment: vm_check_29102011.patch added

by hamish, 12 years ago

Attachment: vm_kernel_29102011.patch added

by hamish, 12 years ago

Attachment: vm_preflet_29102011.patch added

comment:26 by hamish, 12 years ago

Fixed all the style violations I could find. Ran it through the style checker too and it seems all right.

comment:27 by leavengood, 12 years ago

Now that we are talking about fixing Haiku's VM system again, I think it would be a good time to revisit this ticket.

Hamish's patches look pretty good to me. I'm not sure we should add this feature so late in the alpha4 release process, but I would certainly like to get these patches applied soon after the release. Though if we want to properly fix the other VM issues for alpha4, this includes some helpful code for that (such as checking the available space in a volume before setting the swap size.)

Sorry Hamish that such good work has been left sitting. But at least we have kept you busy on the Java port in the GSoC :)

comment:28 by diver, 12 years ago

Version: R1/pre-alpha1R1/Development

comment:29 by kallisti5, 12 years ago

Owner: changed from axeld to kallisti5
Status: newassigned

I'm working through this now and have the first kernel patch prepared.

see #7742

comment:30 by kallisti5, 12 years ago

The kernel vm patch was applied to master in hrev44611 and hrev44612. The release coordinator has mentioned a soft acceptance of the changes to the kernel vm.

I'm working through the gui changes now.. there seem to be a few bugs left. (the current preflet code should function with the kernel changes post-hrev44612 however)

comment:31 by leavengood, 12 years ago

This can probably be marked as fixed now, right?

Also Alexander, while you are in no way obligated to fix all the VM issues, maybe you could take a look at #4843 since knowledge of the code is fresh in your mind. I think it is still an issue.

comment:32 by kallisti5, 12 years ago

resolved post hrev44622

I'll look at #4843

#8971 opened. It's minimal, but an issue. (definitely not an R1A4 blocker though)

comment:33 by kallisti5, 12 years ago

Resolution: fixed
Status: assignedclosed
Note: See TracTickets for help on using tickets.