Displaying 3 results from an estimated 3 matches for "bossman075".
2025 Feb 15
1
[PATCH] ipconfig: align reads of ext for sparc64
...rc64 will busfault when reading data from exts
if they are not type aligned.
A similar issue was fixed in dhcpcd here:
https://github.com/NetworkConfiguration/dhcpcd/issues/430
https://github.com/ColinMcInnes/dhcpcd/commit/07a5fdd7d34b072e52c316877d14c6d2581cb379
Signed-off-by: Jesse Taube <mr.bossman075 at gmail.com>
---
usr/kinit/ipconfig/dhcp_proto.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/usr/kinit/ipconfig/dhcp_proto.c b/usr/kinit/ipconfig/dhcp_proto.c
index 4e560b84..2b83de45 100644
--- a/usr/kinit/ipconfig/dhcp_proto.c
+++ b/usr/kinit/ipconfig/dhcp_prot...
2025 Feb 28
0
[PATCH] ipconfig: align reads of ext for RISC architectures
...ype aligned. Use memcpy to read the data from
exts to ensure type alignment.
A similar issue was fixed in dhcpcd here:
https://github.com/NetworkConfiguration/dhcpcd/issues/430
https://github.com/ColinMcInnes/dhcpcd/commit/07a5fdd7d34b072e52c316877d14c6d2581cb379
Signed-off-by: Jesse Taube <mr.bossman075 at gmail.com>
---
usr/kinit/ipconfig/dhcp_proto.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/usr/kinit/ipconfig/dhcp_proto.c b/usr/kinit/ipconfig/dhcp_proto.c
index 4e560b84..2b83de45 100644
--- a/usr/kinit/ipconfig/dhcp_proto.c
+++ b/usr/kinit/ipconfig/dhcp_prot...
2025 Feb 28
1
[PATCH v2] ipconfig: align reads of ext for RISC architectures
...ype aligned. Use memcpy to read the data from
exts to ensure type alignment.
A similar issue was fixed in dhcpcd here:
https://github.com/NetworkConfiguration/dhcpcd/issues/430
https://github.com/ColinMcInnes/dhcpcd/commit/07a5fdd7d34b072e52c316877d14c6d2581cb379
Signed-off-by: Jesse Taube <mr.bossman075 at gmail.com>
---
V1 -> V2:
- Update commit title to use RISC
- Update commit body
Sorry for missing the changes and version bump in the previous commit.
Also the response to V1 went to spam, sorry for the delay.
---
usr/kinit/ipconfig/dhcp_proto.c | 7 +++++--
1 file changed, 5 insertion...