https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=209475

--- Comment #12 from fehmi noyan isi <[email protected]> ---
(In reply to Kristof Provost from comment #11)
For the first issue you mentioned,

I think it is this line blocking the startup

V_pf_srchash = malloc(pf_srchashsize * sizeof(struct
pf_srchash),M_PFHASH,M_WAITOK|M_ZERO);

then maybe something like below?

if ((V_pf_srchash = malloc(..., ... ,M_NOWAIT|M_ZERO)) == NULL) {
 /* error handling, cleanup & return */
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-pf
To unsubscribe, send any mail to "[email protected]"

Reply via email to