mirror of
https://src.fedoraproject.org/rpms/grub2.git
synced 2024-11-25 06:37:33 +00:00
81987f4958
- Try to fix things for new compiler madness. I really don't know why gcc decided __attribute__((packed)) on a "typedef struct" should imply __attribute__((align (1))) and that it should have a warning that it does so. The obvious behavior would be to keep the alignment of the first element unless it's used in another object or type that /also/ hask the packed attribute. Why should it change the default alignment at all? - Merge in the BLS patches Javier and I wrote. - Attempt to fix pmtimer initialization failures to not be super duper slow. Signed-off-by: Peter Jones <pjones@redhat.com>
61 lines
1.8 KiB
Diff
61 lines
1.8 KiB
Diff
From 47d4b57eb561b27af62427721a7e1fdef55129f0 Mon Sep 17 00:00:00 2001
|
|
From: Andrei Borzenkov <arvidjaar@gmail.com>
|
|
Date: Tue, 21 Jun 2016 16:44:17 +0000
|
|
Subject: [PATCH 181/206] Fallback to old subvol name scheme to support old
|
|
snapshot config
|
|
|
|
Ref: bsc#953538
|
|
---
|
|
grub-core/fs/btrfs.c | 32 +++++++++++++++++++++++++++++++-
|
|
1 file changed, 31 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/grub-core/fs/btrfs.c b/grub-core/fs/btrfs.c
|
|
index d111147e836..a5c000805a7 100644
|
|
--- a/grub-core/fs/btrfs.c
|
|
+++ b/grub-core/fs/btrfs.c
|
|
@@ -924,11 +924,41 @@ lookup_root_by_name(struct grub_btrfs_data *data, const char *path)
|
|
return GRUB_ERR_NONE;
|
|
}
|
|
|
|
+static grub_err_t
|
|
+lookup_root_by_name_fallback(struct grub_btrfs_data *data, const char *path)
|
|
+{
|
|
+ grub_err_t err;
|
|
+ grub_uint64_t tree = 0;
|
|
+ grub_uint8_t type;
|
|
+ struct grub_btrfs_key key;
|
|
+
|
|
+ err = find_path (data, path, &key, &tree, &type);
|
|
+ if (err)
|
|
+ return grub_error(GRUB_ERR_FILE_NOT_FOUND, "couldn't locate %s\n", path);
|
|
+
|
|
+ if (key.object_id != grub_cpu_to_le64_compile_time (GRUB_BTRFS_OBJECT_ID_CHUNK) || tree == 0)
|
|
+ return grub_error(GRUB_ERR_BAD_FILE_TYPE, "%s: not a subvolume\n", path);
|
|
+
|
|
+ data->fs_tree = tree;
|
|
+ return GRUB_ERR_NONE;
|
|
+}
|
|
+
|
|
static grub_err_t
|
|
btrfs_handle_subvol(struct grub_btrfs_data *data __attribute__ ((unused)))
|
|
{
|
|
if (btrfs_default_subvol)
|
|
- return lookup_root_by_name(data, btrfs_default_subvol);
|
|
+ {
|
|
+ grub_err_t err;
|
|
+ err = lookup_root_by_name(data, btrfs_default_subvol);
|
|
+
|
|
+ /* Fallback to old schemes */
|
|
+ if (err == GRUB_ERR_FILE_NOT_FOUND)
|
|
+ {
|
|
+ err = GRUB_ERR_NONE;
|
|
+ return lookup_root_by_name_fallback(data, btrfs_default_subvol);
|
|
+ }
|
|
+ return err;
|
|
+ }
|
|
|
|
if (btrfs_default_subvolid)
|
|
return lookup_root_by_id(data, btrfs_default_subvolid);
|
|
--
|
|
2.15.0
|
|
|