summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-dev/2012-December/020687.html
diff options
context:
space:
mode:
Diffstat (limited to 'zarb-ml/mageia-dev/2012-December/020687.html')
-rw-r--r--zarb-ml/mageia-dev/2012-December/020687.html115
1 files changed, 115 insertions, 0 deletions
diff --git a/zarb-ml/mageia-dev/2012-December/020687.html b/zarb-ml/mageia-dev/2012-December/020687.html
new file mode 100644
index 000000000..ce40a9097
--- /dev/null
+++ b/zarb-ml/mageia-dev/2012-December/020687.html
@@ -0,0 +1,115 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-dev] [changelog] [RPM] cauldron core/release kernel-3.7.0-0.rc8.1.mga3
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20%5Bchangelog%5D%20%5BRPM%5D%20cauldron%20core/release%0A%09kernel-3.7.0-0.rc8.1.mga3&In-Reply-To=%3CCAONrEtaNaCic25qLKnMLr14kt-ohpKTQE%2B_c4zW0Hxx5tEpfmw%40mail.gmail.com%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="020685.html">
+ <LINK REL="Next" HREF="020636.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-dev] [changelog] [RPM] cauldron core/release kernel-3.7.0-0.rc8.1.mga3</H1>
+ <B>Thierry Vignaud</B>
+ <A HREF="mailto:mageia-dev%40mageia.org?Subject=Re%3A%20%5BMageia-dev%5D%20%5Bchangelog%5D%20%5BRPM%5D%20cauldron%20core/release%0A%09kernel-3.7.0-0.rc8.1.mga3&In-Reply-To=%3CCAONrEtaNaCic25qLKnMLr14kt-ohpKTQE%2B_c4zW0Hxx5tEpfmw%40mail.gmail.com%3E"
+ TITLE="[Mageia-dev] [changelog] [RPM] cauldron core/release kernel-3.7.0-0.rc8.1.mga3">thierry.vignaud at gmail.com
+ </A><BR>
+ <I>Sun Dec 9 15:54:12 CET 2012</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="020685.html">[Mageia-dev] [changelog] [RPM] cauldron core/release kernel-3.7.0-0.rc8.1.mga3
+</A></li>
+ <LI>Next message: <A HREF="020636.html">[Mageia-dev] [changelog] [RPM] cauldron core/release CardManager-1-3.mga3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#20687">[ date ]</a>
+ <a href="thread.html#20687">[ thread ]</a>
+ <a href="subject.html#20687">[ subject ]</a>
+ <a href="author.html#20687">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>On 9 December 2012 15:00, Olivier Blin &lt;<A HREF="https://www.mageia.org/mailman/listinfo/mageia-dev">mageia at blino.org</A>&gt; wrote:
+&gt;&gt;&gt;<i> - add perf bash_completion
+</I>&gt;&gt;&gt;<i> - more filelist updates
+</I>&gt;&gt;&gt;<i> - add 3.7 buildfixes for alx, IFWLOG, mach64, ndiswrapper
+</I>&gt;&gt;&gt;<i> - pull in more upstream git fixes
+</I>&gt;&gt;&gt;<i> - rediff disable-mrproper patch
+</I>&gt;&gt;&gt;<i> - update to current rc8+ git
+</I>&gt;&gt;&gt;<i> - update filelists
+</I>&gt;&gt;&gt;<i> - update defconfigs
+</I>&gt;&gt;&gt;<i> - restore patch preferring ata over ide drivers
+</I>&gt;&gt;<i>
+</I>&gt;&gt;<i> BTW kernel-linus is still affected.
+</I>&gt;&gt;<i> Of course this conflicts with the policy patch...
+</I>&gt;<i>
+</I>&gt;<i> Maybe something worth being submitted upstream then?
+</I>
+Or changing aliases order in ldetect.
+With modules-init-tools, we used to pick the last alias:
+
+ // take the last one because we find eg: generic/ata_generic/sata_sil
+ struct module_alias *it = aliases;
+ while (it-&gt;next)
+ it = it-&gt;next;
+ result = strdup(it-&gt;module);
+
+with kmod, we pick the first one (b/c that's the order that kept the same
+results as with modules-init-tools, when I switched ldetect from unsupported
+libm-i-t to kmod):
+
+ kmod_list_foreach(l, list) {
+ struct kmod_module *mod = kmod_module_get_module(l);
+ //if (str) // keep last one
+ // free(str);
+ if (!str) // keep first one
+ str = strdup(kmod_module_get_name(mod));
+ }
+
+It used to works nicely but it appears that it works only good with a
+patched kernel.
+When we drop our patches, letect broke, reporting the wrong results
+(<A HREF="https://bugs.mageia.org/show_bug.cgi?id=8315">https://bugs.mageia.org/show_bug.cgi?id=8315</A>)
+
+We could drop that patch for good and pick the last found alias instead of
+the first one in ldetect.
+See:
+- the patch: <A HREF="https://bugs.mageia.org/attachment.cgi?id=3204">https://bugs.mageia.org/attachment.cgi?id=3204</A>
+- the result in lscpidrake output on unpatched kernel:
+ <A HREF="https://bugs.mageia.org/attachment.cgi?id=3205">https://bugs.mageia.org/attachment.cgi?id=3205</A>
+
+In fact, I'm considering submiting a patched ldetect with the changed ordering
+to core/updates_testing and ask people to report the difference (if any)
+between:
+- core/release's ldetect + kernel-desktop
+- core/updates_testing's ldetect + kernel-linus
+
+WDYT?
+</PRE>
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="020685.html">[Mageia-dev] [changelog] [RPM] cauldron core/release kernel-3.7.0-0.rc8.1.mga3
+</A></li>
+ <LI>Next message: <A HREF="020636.html">[Mageia-dev] [changelog] [RPM] cauldron core/release CardManager-1-3.mga3
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#20687">[ date ]</a>
+ <a href="thread.html#20687">[ thread ]</a>
+ <a href="subject.html#20687">[ subject ]</a>
+ <a href="author.html#20687">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-dev">More information about the Mageia-dev
+mailing list</a><br>
+</body></html>