Changeset 48b8928 in mainline
- Timestamp:
- 2024-07-21T21:15:31Z (5 months ago)
- Branches:
- master
- Children:
- 145d4e2e
- Parents:
- f32f89a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/volsrv/part.c
rf32f89a r48b8928 1 1 /* 2 * Copyright (c) 20 15Jiri Svoboda2 * Copyright (c) 2024 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 636 636 637 637 if (part->cur_mp == NULL) { 638 log_msg(LOG_DEFAULT, LVL_DEBUG, "Attempt to mount unmounted " 639 "partition."); 640 return EINVAL; 638 /* Partition is not mounted, nothing to do. */ 639 log_msg(LOG_DEFAULT, LVL_DEBUG, "Partition not mounted, " 640 "nothing to do."); 641 goto done; 641 642 } 642 643 … … 659 660 part->cur_mp = NULL; 660 661 part->cur_mp_auto = false; 661 662 done: 662 663 return EOK; 663 664 }
Note:
See TracChangeset
for help on using the changeset viewer.