Whamcloud - gitweb
3d7f2b03f107ba77a4ae4aba3cc20e1c35dce243
[fs/lustre-release.git] / lnet / ChangeLog
1 2005-02-04  Eric Barton  <eeb@bartonsoftware.com>
2
3         * Landed portals:b_port_step as follows...
4
5           - removed CFS_DECL_SPIN* 
6             just use 'spinlock_t' and initialise with spin_lock_init()
7
8           - removed CFS_DECL_MUTEX*
9             just use 'struct semaphore' and initialise with init_mutex()
10
11           - removed CFS_DECL_RWSEM*
12             just use 'struct rw_semaphore' and initialise with init_rwsem()
13
14           - renamed cfs_sleep_chan -> cfs_waitq
15                     cfs_sleep_link -> cfs_waitlink
16
17           - fixed race in linux version of arch-independent socknal
18             (the ENOMEM/EAGAIN decision).
19
20           - Didn't fix problems in Darwin version of arch-independent socknal
21             (resetting socket callbacks, eager ack hack, ENOMEM/EAGAIN decision)
22
23           - removed libcfs types from non-socknal header files (only some types
24             in the header files had been changed; the .c files hadn't been
25             updated at all).