Searched defs:tmp_pfd (Results 1 - 2 of 2) sorted by relevance

/arch/um/os-Linux/
H A Dirq.c52 int os_create_pollfd(int fd, int events, void *tmp_pfd, int size_tmpfds) argument
61 memcpy(tmp_pfd, pollfds,
66 pollfds = tmp_pfd;
69 kfree(tmp_pfd); /* remove not used tmp_pfd */
/arch/um/kernel/
H A Dirq.c65 struct pollfd *tmp_pfd; local
105 tmp_pfd = NULL;
109 n = os_create_pollfd(fd, events, tmp_pfd, n);
126 kfree(tmp_pfd);
128 tmp_pfd = kmalloc(n, GFP_KERNEL);
129 if (tmp_pfd == NULL)

Completed in 78 milliseconds