Lines Matching refs:xd
279 struct jffs2_xattr_datum *xd;
280 xd = kmem_cache_zalloc(xattr_datum_cache, GFP_KERNEL);
281 dbg_memalloc("%p\n", xd);
282 if (!xd)
285 xd->class = RAWNODE_CLASS_XATTR_DATUM;
286 xd->node = (void *)xd;
287 INIT_LIST_HEAD(&xd->xindex);
288 return xd;
291 void jffs2_free_xattr_datum(struct jffs2_xattr_datum *xd)
293 dbg_memalloc("%p\n", xd);
294 kmem_cache_free(xattr_datum_cache, xd);