Home
last modified time | relevance | path

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

/openbmc/linux/net/core/
H A Dscm.c69 struct scm_fp_list *fpl = *fplp; in scm_fp_copy() local
81 if (!fpl) in scm_fp_copy()
83 fpl = kmalloc(sizeof(struct scm_fp_list), GFP_KERNEL_ACCOUNT); in scm_fp_copy()
84 if (!fpl) in scm_fp_copy()
86 *fplp = fpl; in scm_fp_copy()
87 fpl->count = 0; in scm_fp_copy()
88 fpl->max = SCM_MAX_FD; in scm_fp_copy()
89 fpl->user = NULL; in scm_fp_copy()
91 fpp = &fpl->fp[fpl->count]; in scm_fp_copy()
93 if (fpl->count + num > fpl->max) in scm_fp_copy()
[all …]
/openbmc/linux/drivers/s390/char/
H A Ddiag_ftp.c103 static int diag_ftp_2c4(struct diag_ftp_ldfpl *fpl, in diag_ftp_2c4() argument
115 : [rc] "=d" (rc), "+m" (*fpl) in diag_ftp_2c4()
116 : [cmd] "0" (cmd), [addr] "d" (virt_to_phys(fpl)), in diag_ftp_2c4()
/openbmc/linux/tools/testing/selftests/alsa/
H A Dtest-pcmtest-driver.c35 FILE *fp, *fpl; in read_patterns() local
42 fpl = fopen(plf, "r"); in read_patterns()
43 if (!fpl) in read_patterns()
45 fscanf(fpl, "%u", &patterns[i].len); in read_patterns()
46 fclose(fpl); in read_patterns()
/openbmc/linux/include/net/
H A Dscm.h45 struct scm_fp_list *scm_fp_dup(struct scm_fp_list *fpl);