Home
last modified time | relevance | path

Searched refs:oevent (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/tools/perf/util/
H A Dordered-events.c197 struct ordered_event *oevent; in ordered_events__queue() local
210 oevent = ordered_events__new_event(oe, timestamp, event); in ordered_events__queue()
211 if (!oevent) { in ordered_events__queue()
213 oevent = ordered_events__new_event(oe, timestamp, event); in ordered_events__queue()
216 if (!oevent) in ordered_events__queue()
219 oevent->file_offset = file_offset; in ordered_events__queue()
220 oevent->file_path = file_path; in ordered_events__queue()
/openbmc/linux/fs/notify/inotify/
H A Dinotify_user.c657 struct inotify_event_info *oevent; in inotify_new_group() local
664 oevent = kmalloc(sizeof(struct inotify_event_info), GFP_KERNEL_ACCOUNT); in inotify_new_group()
665 if (unlikely(!oevent)) { in inotify_new_group()
669 group->overflow_event = &oevent->fse; in inotify_new_group()
671 oevent->mask = FS_Q_OVERFLOW; in inotify_new_group()
672 oevent->wd = -1; in inotify_new_group()
673 oevent->sync_cookie = 0; in inotify_new_group()
674 oevent->name_len = 0; in inotify_new_group()
/openbmc/linux/arch/arm/kernel/
H A Dsys_oabi-compat.c313 struct oabi_epoll_event __user *oevent = (void __user *)uevent; in epoll_put_uevent() local
315 if (__put_user(revents, &oevent->events) || in epoll_put_uevent()
316 __put_user(data, &oevent->data)) in epoll_put_uevent()
319 return (void __user *)(oevent+1); in epoll_put_uevent()
/openbmc/linux/fs/notify/fanotify/
H A Dfanotify_user.c1366 struct fanotify_event *oevent; in fanotify_alloc_overflow_event() local
1368 oevent = kmalloc(sizeof(*oevent), GFP_KERNEL_ACCOUNT); in fanotify_alloc_overflow_event()
1369 if (!oevent) in fanotify_alloc_overflow_event()
1372 fanotify_init_event(oevent, 0, FS_Q_OVERFLOW); in fanotify_alloc_overflow_event()
1373 oevent->type = FANOTIFY_EVENT_TYPE_OVERFLOW; in fanotify_alloc_overflow_event()
1375 return &oevent->fse; in fanotify_alloc_overflow_event()