]> Git Repo - J-u-boot.git/blobdiff - lib/linux_compat.c
efi_loader: net: add support to send http requests and parse http headers
[J-u-boot.git] / lib / linux_compat.c
index 81ea8fb126fa2fec7230479ae77d744cde337e4c..985e88eb3976203b06de5d478c0965375a44fd17 100644 (file)
@@ -1,6 +1,7 @@
 
-#include <common.h>
+#include <malloc.h>
 #include <memalign.h>
+#include <asm/cache.h>
 #include <linux/compat.h>
 
 struct p_current cur = {
@@ -40,3 +41,22 @@ void *kmem_cache_alloc(struct kmem_cache *obj, int flag)
 {
        return malloc_cache_aligned(obj->sz);
 }
+
+/**
+ * kmemdup - duplicate region of memory
+ *
+ * @src: memory region to duplicate
+ * @len: memory region length
+ * @gfp: GFP mask to use
+ *
+ * Return: newly allocated copy of @src or %NULL in case of error
+ */
+void *kmemdup(const void *src, size_t len, gfp_t gfp)
+{
+       void *p;
+
+       p = kmalloc(len, gfp);
+       if (p)
+               memcpy(p, src, len);
+       return p;
+}
This page took 0.026722 seconds and 4 git commands to generate.