Home
last modified time | relevance | path

Searched refs:ab (Results 1 – 2 of 2) sorted by relevance

/fs/xfs/scrub/
Dattr.h35 struct xchk_xattr_buf *ab = sc->buf; in xchk_xattr_valuebuf() local
37 return ab->buf; in xchk_xattr_valuebuf()
45 struct xchk_xattr_buf *ab = sc->buf; in xchk_xattr_usedmap() local
47 return (unsigned long *)ab->buf; in xchk_xattr_usedmap()
Dattr.c35 struct xchk_xattr_buf *ab = sc->buf; in xchk_setup_xattr_buf() local
49 if (ab) { in xchk_setup_xattr_buf()
50 if (sz <= ab->sz) in xchk_setup_xattr_buf()
52 kmem_free(ab); in xchk_setup_xattr_buf()
60 ab = kmem_alloc_large(sizeof(*ab) + sz, flags); in xchk_setup_xattr_buf()
61 if (!ab) in xchk_setup_xattr_buf()
64 ab->sz = sz; in xchk_setup_xattr_buf()
65 sc->buf = ab; in xchk_setup_xattr_buf()