Lines Matching defs:fds
1778 * @fds: eventfds to bind with irqs. unbind related irq if fds[n] is negative.
1779 * unbind "count" specified number of irqs if fds ptr is NULL.
1782 * fds[n] is negative. Unbind "count" specified number of irqs if fds ptr is
1788 unsigned int count, int32_t *fds)
1802 int fd = fds ? fds[i] : -1;
1846 s32 *fds;
1859 fds = memdup_user((void __user *)(arg + sizeof(hdr)),
1861 if (IS_ERR(fds))
1862 return PTR_ERR(fds);
1865 ret = dfl_fpga_set_irq_triggers(feature, hdr.start, hdr.count, fds);
1868 kfree(fds);