| 2518 | } |
| 2519 | |
| 2520 | static void |
| 2521 | unp_internalize_fp(struct file *fp) |
| 2522 | { |
| 2523 | struct unpcb *unp; |
| 2524 | |
| 2525 | UNP_LINK_WLOCK(); |
| 2526 | if ((unp = fptounp(fp)) != NULL) { |
| 2527 | unp->unp_file = fp; |
| 2528 | unp->unp_msgcount++; |
| 2529 | } |
| 2530 | unp_rights++; |
| 2531 | UNP_LINK_WUNLOCK(); |
| 2532 | } |
| 2533 | |
| 2534 | static int |
| 2535 | unp_externalize_fp(struct file *fp) |
no test coverage detected