summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sys-fs/lvm2/files/lvm2-2.01.14-static.patch')
-rw-r--r--sys-fs/lvm2/files/lvm2-2.01.14-static.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/sys-fs/lvm2/files/lvm2-2.01.14-static.patch b/sys-fs/lvm2/files/lvm2-2.01.14-static.patch
deleted file mode 100644
index 049d5e8fcc39..000000000000
--- a/sys-fs/lvm2/files/lvm2-2.01.14-static.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-Index: LVM2.2.01.14/lib/mm/pool-fast.c
-===================================================================
---- LVM2.2.01.14.orig/lib/mm/pool-fast.c
-+++ LVM2.2.01.14/lib/mm/pool-fast.c
-@@ -30,8 +30,8 @@ struct pool {
- unsigned object_alignment;
- };
-
--void _align_chunk(struct chunk *c, unsigned alignment);
--struct chunk *_new_chunk(struct pool *p, size_t s);
-+static void _align_chunk(struct chunk *c, unsigned alignment);
-+static struct chunk *_new_chunk(struct pool *p, size_t s);
-
- /* by default things come out aligned for doubles */
- #define DEFAULT_ALIGNMENT __alignof__ (double)
-@@ -204,12 +204,12 @@ void pool_abandon_object(struct pool *p)
- p->object_alignment = DEFAULT_ALIGNMENT;
- }
-
--void _align_chunk(struct chunk *c, unsigned alignment)
-+static void _align_chunk(struct chunk *c, unsigned alignment)
- {
- c->begin += alignment - ((unsigned long) c->begin & (alignment - 1));
- }
-
--struct chunk *_new_chunk(struct pool *p, size_t s)
-+static struct chunk *_new_chunk(struct pool *p, size_t s)
- {
- struct chunk *c;
-