- Feb 10, 2007
-
-
Nathan Rutman authored
-
- Feb 04, 2005
-
-
Eric Barton authored
- removed CFS_DECL_SPIN* just use 'spinlock_t' and initialise with spin_lock_init() - removed CFS_DECL_MUTEX* just use 'struct semaphore' and initialise with init_mutex() - removed CFS_DECL_RWSEM* just use 'struct rw_semaphore' and initialise with init_rwsem() - renamed cfs_sleep_chan -> cfs_waitq cfs_sleep_link -> cfs_waitlink - fixed race in linux version of arch-independent socknal (the ENOMEM/EAGAIN decision). - Didn't fix problems in Darwin version of arch-independent socknal (resetting socket callbacks, eager ack hack, ENOMEM/EAGAIN decision) - removed libcfs types from non-socknal header files (only some types in the header files had been changed; the .c files hadn't been updated at all). - Updated lustre b1_4 to match
-
- Oct 23, 2004
-
-
Yury Umanets authored
-
- Dec 03, 2003
-
-
Phil Schwan authored
-
Phil Schwan authored
-
- Sep 25, 2003
-
-
Eric Barton authored
routers (i.e. gateways) without forgetting network topology (i.e. adding/deleting routes). * Socknal and qswnal automatically notify their local router and make an upcall when they detect peer death. * portals router load balances over equivalent routes * ENETUNREACH returned when a NAL thinks the router isn't loaded. * Improved socknal network failure detection. * /proc/sys/socknal/* interface - timeout is the socknal I/O timeout (50 by default) in seconds . - eager_ack is a boolean (set by default) that enables setting TCP_QUICKACK after every incoming message to ensure peer zero-copy sends complete quickly. - zero_copy is the size (2k by default) in bytes, below which message fragments are copied into a socket, rather than using zero-copy sends. Setting this above PAGE_SIZE will disable zero copy. * Socknal autoconnect option to create all peer connections eagerly or not. If more than one autoconnect reaches the same peer NID, with the eager option (this was the previous default), all connections will be made when one is required, otherwise only one at a time will be attempted (the new default). NB socknal still load balances over all established connections. * Generalised portals upcall to "cmd <action> [params]". Current upcalls are... - upcall LBUG file fn line - upcall ROUTER_NOTIFY <nal> <nid> <timestamp> up|down where <nal> is the kernel NAL number (defined in <linux/kp30.h>) <nid> is the peer's NID in 0xhex <timestamp> is seconds since 1/1/1970 * Added 'lctl --net' option, to make 1-line network lctl commands easy. * Added Light-weight event tracing.
-