Lines Matching full:ffe
576 struct fanotify_fid_event *ffe; in fanotify_alloc_fid_event() local
578 ffe = kmem_cache_alloc(fanotify_fid_event_cachep, gfp); in fanotify_alloc_fid_event()
579 if (!ffe) in fanotify_alloc_fid_event()
582 ffe->fae.type = FANOTIFY_EVENT_TYPE_FID; in fanotify_alloc_fid_event()
583 ffe->fsid = *fsid; in fanotify_alloc_fid_event()
585 fanotify_encode_fh(&ffe->object_fh, id, fanotify_encode_fh_len(id), in fanotify_alloc_fid_event()
588 return &ffe->fae; in fanotify_alloc_fid_event()
993 struct fanotify_fid_event *ffe = FANOTIFY_FE(event); in fanotify_free_fid_event() local
995 if (fanotify_fh_has_ext_buf(&ffe->object_fh)) in fanotify_free_fid_event()
996 kfree(fanotify_fh_ext_buf(&ffe->object_fh)); in fanotify_free_fid_event()
997 kmem_cache_free(fanotify_fid_event_cachep, ffe); in fanotify_free_fid_event()