Last change
on this file since 1368 was 1297, checked in by Bruno Cornec, 18 years ago |
- evaluate_drive_within_mountlist is a private function
- support UUID in mondorestore (Fix for #103)
- Fix a bug in size computation for cciss and similar devices needing a p before
their partition name
- Fix 2 references to grep -x which are not working during a restore process due to busybox limits of grep command (Fix for #96)
|
-
Property svn:keywords
set to
Id
|
File size:
1.1 KB
|
Line | |
---|
1 | /* libmondo-mountlist.h
|
---|
2 | * $Id: libmondo-mountlist.h 1297 2007-04-11 23:56:35Z bruno $
|
---|
3 | */
|
---|
4 |
|
---|
5 |
|
---|
6 | int evaluate_mountlist(struct mountlist_itself *mountlist,
|
---|
7 | char *flaws_str_A, char *flaws_str_B,
|
---|
8 | char *flaws_str_C);
|
---|
9 | int find_device_in_mountlist(struct mountlist_itself *mountlist,
|
---|
10 | char *device);
|
---|
11 | int look_for_duplicate_mountpoints(struct mountlist_itself *mountlist,
|
---|
12 | char *flaws_str);
|
---|
13 | int look_for_weird_formats(struct mountlist_itself *mountlist,
|
---|
14 | char *flaws_str);
|
---|
15 | int make_list_of_drives_in_mountlist(struct mountlist_itself *,
|
---|
16 | struct list_of_disks *);
|
---|
17 | long long size_of_specific_device_in_mountlist(struct mountlist_itself
|
---|
18 | *mountlist, char *device);
|
---|
19 |
|
---|
20 |
|
---|
21 | int load_mountlist(struct mountlist_itself *mountlist, char *fname);
|
---|
22 | void sort_mountlist_by_device(struct mountlist_itself *mountlist);
|
---|
23 | int save_mountlist_to_disk(struct mountlist_itself *mountlist,
|
---|
24 | char *fname);
|
---|
25 | void sort_mountlist_by_mountpoint(struct mountlist_itself *mountlist,
|
---|
26 | bool reverse);
|
---|
27 | void sort_mountlist_by_device(struct mountlist_itself *mountlist);
|
---|
28 | void swap_mountlist_entries(struct mountlist_itself *mountlist, int a,
|
---|
29 | int b);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.