2e35d7583b
- Update for latest mdadm-4.1+ patches, this is required by jsc#SLE-10078 and jsc#SLE-9348. Mostly the purpose is for latest Intel IMSM raid support. The following patches also include previous patches with new re-ordered prefix numbers. - Makefile: install mdadm_env.sh to /usr/lib/mdadm (bsc#1111960) 0000-Makefile-install-mdadm_env.sh-to-usr-lib-mdadm.patch - Assemble: keep MD_DISK_FAILFAST and MD_DISK_WRITEMOSTLY flag (jsc#SLE-10078, jsc#SLE-9348) 0001-Assemble-keep-MD_DISK_FAILFAST-and-MD_DISK_WRITEMOST.patch - Document PART-POLICY lines (jsc#SLE-10078, jsc#SLE-9348) 0002-Document-PART-POLICY-lines.patc - policy: support devices with multiple paths. (jsc#SLE-10078, jsc#SLE-9348) 0003-policy-support-devices-with-multiple-paths.patch - mdcheck: add systemd unit files to run mdcheck. (bsc#1115407) 0004-mdcheck-add-systemd-unit-files-to-run-mdcheck.patch - Monitor: add system timer to run --oneshot periodically (bsc#1115407) 0005-Monitor-add-system-timer-to-run-oneshot-periodically.patch - imsm: update metadata correctly while raid10 double (jsc#SLE-10078, jsc#SLE-9348) 0006-imsm-update-metadata-correctly-while-raid10-double-d.patch - Assemble: mask FAILFAST and WRITEMOSTLY flags when finding (jsc#SLE-10078, jsc#SLE-9348) 0007-Assemble-mask-FAILFAST-and-WRITEMOSTLY-flags-when-fi.patch - Grow: avoid overflow in compute_backup_blocks() (jsc#SLE-10078, jsc#SLE-9348) 0008-Grow-avoid-overflow-in-compute_backup_blocks.patch - Grow: report correct new chunk size. (jsc#SLE-10078, jsc#SLE-9348) 0009-Grow-report-correct-new-chunk-size.patch OBS-URL: https://build.opensuse.org/request/show/781064 OBS-URL: https://build.opensuse.org/package/show/Base:System/mdadm?expand=0&rev=181
62 lines
1.6 KiB
Diff
62 lines
1.6 KiB
Diff
From 7039d1f8200b9599b23db5953934fdb43b0442e0 Mon Sep 17 00:00:00 2001
|
|
From: Jes Sorensen <jsorensen@fb.com>
|
|
Date: Tue, 9 Jul 2019 14:15:38 -0400
|
|
Subject: [PATCH] mdadm.h: Introduced unaligned {get,put}_unaligned{16,32}()
|
|
Git-commit: 7039d1f8200b9599b23db5953934fdb43b0442e0
|
|
Patch-mainline: mdadm-4.1+
|
|
References: jsc#SLE-10078, jsc#SLE-9348
|
|
|
|
We need these to avoid gcc9 going all crazy on us.
|
|
|
|
Signed-off-by: Jes Sorensen <jsorensen@fb.com>
|
|
Signed-off-by: Coly Li <colyli@suse.de>
|
|
|
|
---
|
|
mdadm.h | 30 ++++++++++++++++++++++++++++++
|
|
1 file changed, 30 insertions(+)
|
|
|
|
diff --git a/mdadm.h b/mdadm.h
|
|
index 427cc52..0fa9e1b 100644
|
|
--- a/mdadm.h
|
|
+++ b/mdadm.h
|
|
@@ -191,6 +191,36 @@ struct dlm_lksb {
|
|
#endif
|
|
#endif /* __KLIBC__ */
|
|
|
|
+/*
|
|
+ * Partially stolen from include/linux/unaligned/packed_struct.h
|
|
+ */
|
|
+struct __una_u16 { __u16 x; } __attribute__ ((packed));
|
|
+struct __una_u32 { __u32 x; } __attribute__ ((packed));
|
|
+
|
|
+static inline __u16 __get_unaligned16(const void *p)
|
|
+{
|
|
+ const struct __una_u16 *ptr = (const struct __una_u16 *)p;
|
|
+ return ptr->x;
|
|
+}
|
|
+
|
|
+static inline __u32 __get_unaligned32(const void *p)
|
|
+{
|
|
+ const struct __una_u32 *ptr = (const struct __una_u32 *)p;
|
|
+ return ptr->x;
|
|
+}
|
|
+
|
|
+static inline void __put_unaligned16(__u16 val, void *p)
|
|
+{
|
|
+ struct __una_u16 *ptr = (struct __una_u16 *)p;
|
|
+ ptr->x = val;
|
|
+}
|
|
+
|
|
+static inline void __put_unaligned32(__u32 val, void *p)
|
|
+{
|
|
+ struct __una_u32 *ptr = (struct __una_u32 *)p;
|
|
+ ptr->x = val;
|
|
+}
|
|
+
|
|
/*
|
|
* Check at compile time that something is of a particular type.
|
|
* Always evaluates to 1 so you may use it easily in comparisons.
|
|
--
|
|
2.25.0
|
|
|