Opened 16 years ago

Closed 16 years ago

#2080 closed bug (fixed)

Mount point not removed

Reported by: andreasf Owned by: stippi
Priority: normal Milestone: R1
Component: Applications/DriveSetup Version: R1/pre-alpha1
Keywords: Cc:
Blocked By: Blocking:
Platform: x86

Description

When unmounting a volume from DriveSetup, its mount point is not removed.

This leads to a multitude of numbered directories when mounting and unmounting the same volume multiple times.

When unmounting through Tracker, the directory is gone, as expected.

Change History (6)

comment:1 by stippi, 16 years ago

Status: newassigned

Good point. I am using BPartition::Unmount() directly, but it is BVolume which takes care of removing the mount point if it is called the same as the partition. I should just switch to using that...

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

Replying to stippi:

Good point. I am using BPartition::Unmount() directly, but it is BVolume which takes care of removing the mount point if it is called the same as the partition. I should just switch to using that...

Or adjust BPartition::Unmount(). Maybe add a boolean removeMountPoint flag?

comment:3 by axeld, 16 years ago

There is no BVolume::Unmount(), actually. Tracker just deletes the mount point manually. Of course, if Mount() creates the mount point, Unmount() should remove it - otherwise it really shouldn't, though (as you might want to mount a volume not on root level).

in reply to:  3 comment:4 by bonefish, 16 years ago

Replying to axeld:

There is no BVolume::Unmount(), actually. Tracker just deletes the mount point manually. Of course, if Mount() creates the mount point, Unmount() should remove it - otherwise it really shouldn't, though (as you might want to mount a volume not on root level).

Mount() gets the mount point as optional argument. If one is given it expects it to exist. If not given, the standard mount point is created. Hence my suggestion to add a flag to Unmount().

comment:5 by andreasf, 16 years ago

Sounds like hrev26593 might have resolved this issue?

comment:6 by stippi, 16 years ago

Resolution: fixed
Status: assignedclosed

Yes, thanks. Fixed in hrev26593.

Note: See TracTickets for help on using tickets.