diff options
| author | Ingo Molnar <mingo@elte.hu> | 2008-09-10 14:05:45 +0200 | 
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2008-09-10 14:05:45 +0200 | 
| commit | 3ce9bcb583536c45a46c7302747029450e22279c (patch) | |
| tree | 7a4167189ffc6dc909151d1a5d040f9f0656a9f4 /fs/ocfs2/cluster/netdebug.c | |
| parent | 26fd10517e810dd59ea050b052de24a75ee6dc07 (diff) | |
| parent | f7d0b926ac8c8ec0c7a83ee69409bd2e6bb39f81 (diff) | |
Merge branch 'core/xen' into x86/xen
Diffstat (limited to 'fs/ocfs2/cluster/netdebug.c')
| -rw-r--r-- | fs/ocfs2/cluster/netdebug.c | 26 | 
1 files changed, 13 insertions, 13 deletions
| diff --git a/fs/ocfs2/cluster/netdebug.c b/fs/ocfs2/cluster/netdebug.c index d8bfa0eb41b2..52276c02f710 100644 --- a/fs/ocfs2/cluster/netdebug.c +++ b/fs/ocfs2/cluster/netdebug.c @@ -138,20 +138,20 @@ static int nst_seq_show(struct seq_file *seq, void *v)  			   "  message id:   %d\n"  			   "  message type: %u\n"  			   "  message key:  0x%08x\n" -			   "  sock acquiry: %lu.%lu\n" -			   "  send start:   %lu.%lu\n" -			   "  wait start:   %lu.%lu\n", +			   "  sock acquiry: %lu.%ld\n" +			   "  send start:   %lu.%ld\n" +			   "  wait start:   %lu.%ld\n",  			   nst, (unsigned long)nst->st_task->pid,  			   (unsigned long)nst->st_task->tgid,  			   nst->st_task->comm, nst->st_node,  			   nst->st_sc, nst->st_id, nst->st_msg_type,  			   nst->st_msg_key,  			   nst->st_sock_time.tv_sec, -			   (unsigned long)nst->st_sock_time.tv_usec, +			   (long)nst->st_sock_time.tv_usec,  			   nst->st_send_time.tv_sec, -			   (unsigned long)nst->st_send_time.tv_usec, +			   (long)nst->st_send_time.tv_usec,  			   nst->st_status_time.tv_sec, -			   nst->st_status_time.tv_usec); +			   (long)nst->st_status_time.tv_usec);  	}  	spin_unlock(&o2net_debug_lock); @@ -276,7 +276,7 @@ static void *sc_seq_next(struct seq_file *seq, void *v, loff_t *pos)  	return sc; /* unused, just needs to be null when done */  } -#define TV_SEC_USEC(TV) TV.tv_sec, (unsigned long)TV.tv_usec +#define TV_SEC_USEC(TV) TV.tv_sec, (long)TV.tv_usec  static int sc_seq_show(struct seq_file *seq, void *v)  { @@ -309,12 +309,12 @@ static int sc_seq_show(struct seq_file *seq, void *v)  			   "  remote node:     %s\n"  			   "  page off:        %zu\n"  			   "  handshake ok:    %u\n" -			   "  timer:           %lu.%lu\n" -			   "  data ready:      %lu.%lu\n" -			   "  advance start:   %lu.%lu\n" -			   "  advance stop:    %lu.%lu\n" -			   "  func start:      %lu.%lu\n" -			   "  func stop:       %lu.%lu\n" +			   "  timer:           %lu.%ld\n" +			   "  data ready:      %lu.%ld\n" +			   "  advance start:   %lu.%ld\n" +			   "  advance stop:    %lu.%ld\n" +			   "  func start:      %lu.%ld\n" +			   "  func stop:       %lu.%ld\n"  			   "  func key:        %u\n"  			   "  func type:       %u\n",  			   sc, | 
