DragonFly BSD
 

Message4823

Author sepherosa
Recipients elekktretterr
Date 2008-07-03.03:30:01
Content
Since you are using bge(4), I suggest you do following things:
- Add options ETHER_INPUT_CHAIN and options ETHER_INPUT2 in your
kernel config file
- Change line 2119 in netinet/ip_carp.c
  from:
  #define CARP_LOCK_INIT(cif) lockinit(&(cif)->vhif_lock, "carp_if",
0,  LK_NOWAIT);
  to:
  #define CARP_LOCK_INIT(cif) lockinit(&(cif)->vhif_lock, "carp_if", 0,  0);
  i.e. strip the LK_NOWAIT

Hope it will work for you.

Best Regards,
sephe
History
Date User Action Args
2008-07-03 03:30:02sepherosasetrecipients: + elekktretterr
2008-07-03 03:30:02sepherosalinkissue957 messages
2008-07-03 03:30:01sepherosacreate