r=adilger
Andreas's patch to avoid starting duplicate acceptors on servers with multiple
IP hostaddrs.
- block device patches to fix I/O request sizes in 2.6 (5482)
- look up hostnames for IB nals (5602)
- 2.6 changed lock ordering of 2 semaphores, caused deadlock (5654)
+ - don't start multiple acceptors for the same port (5277)
* miscellania
- service request history (4965)
- put {ll,lov,osc}_async_page structs in a single slab (4699)
debug("add_local", netuuid)
local_clusters.append((srv.net_type, srv.cluster_id, srv.nid))
if srv.port > 0:
- if acceptors.has_key(srv.port):
- panic("duplicate port:", srv.port)
- acceptors[srv.port] = AcceptorHandler(srv.port, srv.net_type)
+ if not acceptors.has_key(srv.port):
+ acceptors[srv.port] = AcceptorHandler(srv.port, srv.net_type)
# This node is a gateway.
is_router = 0