Lines Matching refs:fh_len
338 unsigned int fh_len, gfp_t gfp)
352 * !gpf means preallocated variable size fh, but fh_len could
356 if (fh_len < 4 || WARN_ON_ONCE(fh_len % 4))
360 if (gfp && fh_len > FANOTIFY_INLINE_FH_LEN) {
363 ext_buf = kmalloc(fh_len, gfp);
372 dwords = fh_len >> 2;
375 if (!type || type == FILEID_INVALID || fh_len != dwords << 2)
379 fh->len = fh_len;
381 return FANOTIFY_FH_HDR_LEN + fh_len;
385 type, fh_len, err);