]> sourceware.org Git - systemtap.git/commitdiff
Applied bugfix patch
authortrz <trz>
Fri, 14 Oct 2005 22:13:13 +0000 (22:13 +0000)
committertrz <trz>
Fri, 14 Oct 2005 22:13:13 +0000 (22:13 +0000)
runtime/relayfs/ChangeLog
runtime/relayfs/buffers.c

index 64c57fce7556cae9d925f78e0e14a0a2238336e6..13fcdc42583abd4ca8e6e40e293e523ad20ae6f2 100644 (file)
@@ -1,3 +1,8 @@
+2005-10-14  Tom Zanussi  <zanussi@us.ibm.com>
+
+       * buffers.c (relay_alloc_buf): Applied patch
+       [PATCH 2.6.14-rc4] relayfs: fix bogus param value in call to vmap
+
 2005-05-17  Martin Hunt  <hunt@redhat.com>
 
        * relay.c (relay_switch_subbuf): Applied patch
index 6ec9db9ec421d1759723c558cad9790e0b7146d0..0fa7ceaecc93fefda3f943f57f470dd63fa1e1e2 100644 (file)
@@ -109,7 +109,7 @@ static void *relay_alloc_buf(struct rchan_buf *buf, unsigned long size)
                if (unlikely(!buf->page_array[i]))
                        goto depopulate;
        }
-       mem = vmap(buf->page_array, n_pages, GFP_KERNEL, PAGE_KERNEL);
+       mem = vmap(buf->page_array, n_pages, VM_MAP, PAGE_KERNEL);
        if (!mem)
                goto depopulate;
 
This page took 0.030195 seconds and 5 git commands to generate.