Lines Matching full:ffe
502 struct fanotify_fid_event *ffe; in fanotify_alloc_fid_event() local
504 ffe = kmem_cache_alloc(fanotify_fid_event_cachep, gfp); in fanotify_alloc_fid_event()
505 if (!ffe) in fanotify_alloc_fid_event()
508 ffe->fae.type = FANOTIFY_EVENT_TYPE_FID; in fanotify_alloc_fid_event()
509 ffe->fsid = *fsid; in fanotify_alloc_fid_event()
511 fanotify_encode_fh(&ffe->object_fh, id, fanotify_encode_fh_len(id), in fanotify_alloc_fid_event()
514 return &ffe->fae; in fanotify_alloc_fid_event()
824 struct fanotify_fid_event *ffe = FANOTIFY_FE(event); in fanotify_free_fid_event() local
826 if (fanotify_fh_has_ext_buf(&ffe->object_fh)) in fanotify_free_fid_event()
827 kfree(fanotify_fh_ext_buf(&ffe->object_fh)); in fanotify_free_fid_event()
828 kmem_cache_free(fanotify_fid_event_cachep, ffe); in fanotify_free_fid_event()