~cyphermox/ubuntu/trusty/multipath-tools/usb+local

« back to all changes in this revision

Viewing changes to libmultipath/structs.h

  • Committer: Package Import Robot
  • Author(s): Rafael David Tinoco
  • Date: 2014-08-07 16:15:25 UTC
  • Revision ID: package-import@ubuntu.com-20140807161525-whfb9ggygzcwuawa
Tags: 0.4.9-3ubuntu7.1
* Added 0011-libmultipath-update-waiter-handling.patch (LP: #1354114)
* Added 0012-Race-condition-when-calling-stop_waiter_thread.patch (LP: #1354114)
* Added 0013-multipath-clean-up-code-for-stopping-the-waiter-thre.patch (LP: #1354114)
* Added 0014-Fix-race-condition-in-stop_waiter_thread.patch (LP: #1354114)

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#include <sys/types.h>
5
5
 
6
6
#define WWID_SIZE               128
7
 
#define SERIAL_SIZE             64
8
 
#define NODE_NAME_SIZE          19
9
 
#define PATH_STR_SIZE           16
 
7
#define SERIAL_SIZE             65
 
8
#define NODE_NAME_SIZE          65
 
9
#define PATH_STR_SIZE           16
10
10
#define PARAMS_SIZE             1024
11
11
#define FILE_NAME_SIZE          256
12
12
#define CALLOUT_MAX_SIZE        128
193
193
        struct hwentry * hwe;
194
194
 
195
195
        /* threads */
196
 
        void * waiter;
 
196
        pthread_t waiter;
197
197
 
198
198
        /* stats */
199
199
        unsigned int stat_switchgroup;