]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
overlayfs: make ovl_cache_entry->name an array instead of pointer
authorAl Viro <viro@zeniv.linux.org.uk>
Fri, 24 Oct 2014 02:58:56 +0000 (22:58 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Sat, 25 Oct 2014 00:25:22 +0000 (20:25 -0400)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/overlayfs/readdir.c

index b7d9fb098840146a0b6cae033aab56092d1b767f..9c9872be2c72384b763a1c23ad424a57e36d85b1 100644 (file)
 #include "overlayfs.h"
 
 struct ovl_cache_entry {
-       const char *name;
        unsigned int len;
        unsigned int type;
        u64 ino;
        bool is_whiteout;
        struct list_head l_node;
        struct rb_node node;
+       char name[];
 };
 
 struct ovl_dir_cache {
@@ -82,13 +82,12 @@ static struct ovl_cache_entry *ovl_cache_entry_new(const char *name, int len,
                                                   u64 ino, unsigned int d_type)
 {
        struct ovl_cache_entry *p;
+       size_t size = offsetof(struct ovl_cache_entry, name[len + 1]);
 
-       p = kmalloc(sizeof(*p) + len + 1, GFP_KERNEL);
+       p = kmalloc(size, GFP_KERNEL);
        if (p) {
-               char *name_copy = (char *) (p + 1);
-               memcpy(name_copy, name, len);
-               name_copy[len] = '\0';
-               p->name = name_copy;
+               memcpy(p->name, name, len);
+               p->name[len] = '\0';
                p->len = len;
                p->type = d_type;
                p->ino = ino;