summaryrefslogtreecommitdiff
path: root/core/kmod
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-04-03 13:57:40 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-04-03 13:57:40 -0300
commitcdd88c937bb1fd3bf6de0b847101524a2d5c9022 (patch)
tree3eeb67878db60db79eb21dc2232377e6b56a3add /core/kmod
parentb2e7dca27f9de046feecd59ecfc93cd17bca8356 (diff)
parentb618c3d0693aec564c6746238fd05d94e31d3b76 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/asciijump/PKGBUILD community/cairo-compmgr/PKGBUILD community/cwiid/PKGBUILD community/darcs/PKGBUILD community/gadmin-samba/PKGBUILD community/gstm/PKGBUILD community/haskell-dbus/PKGBUILD community/haskell-mmap/PKGBUILD community/lastfm-client/PKGBUILD community/libtar/PKGBUILD community/mget/PKGBUILD community/nexuiz/PKGBUILD community/pstreams/PKGBUILD community/pyglet/PKGBUILD community/python-html5lib/PKGBUILD community/python-pychm/PKGBUILD community/qoauth/PKGBUILD community/quilt/PKGBUILD community/stormbaancoureur/PKGBUILD community/winegame/PKGBUILD community/winestuff/PKGBUILD community/xdg-user-dirs/PKGBUILD core/libfetch/PKGBUILD extra/acpi/PKGBUILD extra/alex/PKGBUILD extra/allegro/PKGBUILD extra/capi4k-utils/PKGBUILD extra/erlang/PKGBUILD extra/ettercap/PKGBUILD extra/gftp/PKGBUILD extra/gimp-refocus/PKGBUILD extra/happy/PKGBUILD extra/haskell-cgi/PKGBUILD extra/haskell-deepseq/PKGBUILD extra/haskell-fgl/PKGBUILD extra/haskell-glut/PKGBUILD extra/haskell-haskell-src/PKGBUILD extra/haskell-html/PKGBUILD extra/haskell-hunit/PKGBUILD extra/haskell-opengl/PKGBUILD extra/haskell-parallel/PKGBUILD extra/haskell-platform/PKGBUILD extra/haskell-quickcheck/PKGBUILD extra/haskell-regex-base/PKGBUILD extra/haskell-regex-compat/PKGBUILD extra/haskell-regex-posix/PKGBUILD extra/haskell-stm/PKGBUILD extra/haskell-syb/PKGBUILD extra/haskell-xhtml/PKGBUILD extra/libnet/PKGBUILD extra/linux_logo/PKGBUILD extra/mailman/PKGBUILD extra/midori/PKGBUILD extra/ntrack/PKGBUILD extra/pwgen/PKGBUILD extra/qtcurve-gtk2/PKGBUILD extra/qtcurve-kde4/PKGBUILD extra/ristretto/PKGBUILD extra/rxvt-unicode/PKGBUILD extra/telepathy-sofiasip/PKGBUILD extra/tightvnc/PKGBUILD extra/vsftpd/PKGBUILD extra/windowmaker-crm-git/PKGBUILD libre/aufs2-libre/PKGBUILD libre/calibre-libre/PKGBUILD libre/calibre-libre/calibre-mount-helper libre/calibre-libre/calibre.install libre/calibre-libre/desktop_integration.patch libre/ffmpeg-libre/PKGBUILD mozilla-testing/iceweasel-libre/PKGBUILD mozilla-testing/iceweasel-libre/libre.patch mozilla-testing/iceweasel-libre/mozconfig ~lukeshu/openni-unstable/PKGBUILD
Diffstat (limited to 'core/kmod')
-rw-r--r--core/kmod/0001-libkmod-module-probe-Fix-ignore-loaded-flag-not-bein.patch28
-rw-r--r--core/kmod/0001-libkmod-module-probe-fix-infinite-loop-with-softdeps.patch39
2 files changed, 0 insertions, 67 deletions
diff --git a/core/kmod/0001-libkmod-module-probe-Fix-ignore-loaded-flag-not-bein.patch b/core/kmod/0001-libkmod-module-probe-Fix-ignore-loaded-flag-not-bein.patch
deleted file mode 100644
index 4ffc3e53b..000000000
--- a/core/kmod/0001-libkmod-module-probe-Fix-ignore-loaded-flag-not-bein.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 269de2e0bf5011072da2f40f4f2d4023fad696b9 Mon Sep 17 00:00:00 2001
-From: Lucas De Marchi <lucas.demarchi@profusion.mobi>
-Date: Tue, 7 Feb 2012 09:48:59 -0200
-Subject: [PATCH] libkmod-module: probe: Fix ignore-loaded flag not being
- applied
-
----
- TODO | 3 +++
- libkmod/libkmod-module.c | 3 ++-
- 2 files changed, 5 insertions(+), 1 deletions(-)
-
-diff --git a/libkmod/libkmod-module.c b/libkmod/libkmod-module.c
-index 0af3e2e..b5eb7c9 100644
---- a/libkmod/libkmod-module.c
-+++ b/libkmod/libkmod-module.c
-@@ -1132,7 +1132,8 @@ KMOD_EXPORT int kmod_module_probe_insert_module(struct kmod_module *mod,
- if (mod == NULL)
- return -ENOENT;
-
-- if (module_is_inkernel(mod)) {
-+ if (!(flags & KMOD_PROBE_IGNORE_LOADED)
-+ && module_is_inkernel(mod)) {
- if (flags & KMOD_PROBE_FAIL_ON_LOADED)
- return -EEXIST;
- else
---
-1.7.9
-
diff --git a/core/kmod/0001-libkmod-module-probe-fix-infinite-loop-with-softdeps.patch b/core/kmod/0001-libkmod-module-probe-fix-infinite-loop-with-softdeps.patch
deleted file mode 100644
index 95e7f859a..000000000
--- a/core/kmod/0001-libkmod-module-probe-fix-infinite-loop-with-softdeps.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 8cd0f9e4f9f5c093136a7a2c0c2998b9dd203161 Mon Sep 17 00:00:00 2001
-From: Lucas De Marchi <lucas.demarchi@profusion.mobi>
-Date: Sat, 11 Feb 2012 19:45:29 -0200
-Subject: [PATCH] libkmod-module: probe: fix infinite loop with softdeps
-
-If a softdep depends on a module in the dependency list of the module
-being inserted, we would enter and infinite loop.
-
-Move the "mod->visited = true" assignment to the proper place, hoping it
-didn't break other use cases. This is a bug that comes and goes every
-now and then. Since we have a testsuite now, a test for this should be
-written.
----
- libkmod/libkmod-module.c | 2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/libkmod/libkmod-module.c b/libkmod/libkmod-module.c
-index b5eb7c9..835896f 100644
---- a/libkmod/libkmod-module.c
-+++ b/libkmod/libkmod-module.c
-@@ -1013,7 +1013,6 @@ static int __kmod_module_fill_softdep(struct kmod_module *mod,
- goto fail;
- }
- *list = l;
-- mod->visited = true;
- mod->ignorecmd = (pre != NULL || post != NULL);
-
- kmod_list_foreach(l, post) {
-@@ -1043,6 +1042,7 @@ static int __kmod_module_get_probe_list(struct kmod_module *mod,
- mod->name);
- return 0;
- }
-+ mod->visited = true;
-
- dep = kmod_module_get_dependencies(mod);
- kmod_list_foreach(l, dep) {
---
-1.7.9
-