• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/compat/linux/

Lines Matching defs:lsp

201 linux_to_bsd_semid_ds(struct l_semid64_ds *lsp, struct semid_ds *bsp)
204 linux_to_bsd_ipc_perm(&lsp->sem_perm, &bsp->sem_perm);
205 bsp->sem_otime = lsp->sem_otime;
206 bsp->sem_ctime = lsp->sem_ctime;
207 bsp->sem_nsems = lsp->sem_nsems;
211 bsd_to_linux_semid_ds(struct semid_ds *bsp, struct l_semid64_ds *lsp)
214 bsd_to_linux_ipc_perm(&bsp->sem_perm, &lsp->sem_perm);
215 lsp->sem_otime = bsp->sem_otime;
216 lsp->sem_ctime = bsp->sem_ctime;
217 lsp->sem_nsems = bsp->sem_nsems;
221 linux_to_bsd_shmid_ds(struct l_shmid64_ds *lsp, struct shmid_ds *bsp)
224 linux_to_bsd_ipc_perm(&lsp->shm_perm, &bsp->shm_perm);
225 bsp->shm_segsz = lsp->shm_segsz;
226 bsp->shm_lpid = lsp->shm_lpid;
227 bsp->shm_cpid = lsp->shm_cpid;
228 bsp->shm_nattch = lsp->shm_nattch;
229 bsp->shm_atime = lsp->shm_atime;
230 bsp->shm_dtime = lsp->shm_dtime;
231 bsp->shm_ctime = lsp->shm_ctime;
235 bsd_to_linux_shmid_ds(struct shmid_ds *bsp, struct l_shmid64_ds *lsp)
238 bsd_to_linux_ipc_perm(&bsp->shm_perm, &lsp->shm_perm);
239 lsp->shm_segsz = bsp->shm_segsz;
240 lsp->shm_lpid = bsp->shm_lpid;
241 lsp->shm_cpid = bsp->shm_cpid;
242 lsp->shm_nattch = bsp->shm_nattch;
243 lsp->shm_atime = bsp->shm_atime;
244 lsp->shm_dtime = bsp->shm_dtime;
245 lsp->shm_ctime = bsp->shm_ctime;
249 linux_to_bsd_msqid_ds(struct l_msqid64_ds *lsp, struct msqid_ds *bsp)
252 linux_to_bsd_ipc_perm(&lsp->msg_perm, &bsp->msg_perm);
253 bsp->msg_cbytes = lsp->msg_cbytes;
254 bsp->msg_qnum = lsp->msg_qnum;
255 bsp->msg_qbytes = lsp->msg_qbytes;
256 bsp->msg_lspid = lsp->msg_lspid;
257 bsp->msg_lrpid = lsp->msg_lrpid;
258 bsp->msg_stime = lsp->msg_stime;
259 bsp->msg_rtime = lsp->msg_rtime;
260 bsp->msg_ctime = lsp->msg_ctime;
264 bsd_to_linux_msqid_ds(struct msqid_ds *bsp, struct l_msqid64_ds *lsp)
267 bsd_to_linux_ipc_perm(&bsp->msg_perm, &lsp->msg_perm);
268 lsp->msg_cbytes = bsp->msg_cbytes;
269 lsp->msg_qnum = bsp->msg_qnum;
270 lsp->msg_qbytes = bsp->msg_qbytes;
271 lsp->msg_lspid = bsp->msg_lspid;
272 lsp->msg_lrpid = bsp->msg_lrpid;
273 lsp->msg_stime = bsp->msg_stime;
274 lsp->msg_rtime = bsp->msg_rtime;
275 lsp->msg_ctime = bsp->msg_ctime;