1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
5 Copyright © 2010 ProFUSION embedded systems
12 int umount_all(bool *changed
, bool last_try
);
14 /* This is exported just for testing */
15 typedef struct MountPoint
{
17 char *remount_options
;
18 unsigned long remount_flags
;
22 LIST_FIELDS(struct MountPoint
, mount_point
);
25 int mount_points_list_get(const char *mountinfo
, MountPoint
**head
);
26 void mount_points_list_free(MountPoint
**head
);