* Free a lock edge. */
| 878 | * Free a lock edge. |
| 879 | */ |
| 880 | static void |
| 881 | lf_free_edge(struct lockf_edge *e) |
| 882 | { |
| 883 | |
| 884 | free(e, M_LOCKF); |
| 885 | } |
| 886 | |
| 887 | /* |
| 888 | * Ensure that the lock's owner has a corresponding vertex in the |
no test coverage detected