Re: [PATCH] osd/OSD.cc: Fix typo in OSD::heartbeat_check()

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Applied.  Nice catch!

Thanks-
sage


On Fri, 7 Sep 2012, Yan, Zheng wrote:

> From: "Yan, Zheng" <zheng.z.yan@xxxxxxxxx>
> 
> The check 'p->second.last_tx > cutoff' should always be false
> since last_tx is periodically updated by OSD::heartbeat()
> 
> Signed-off-by: Yan, Zheng <zheng.z.yan@xxxxxxxxx>
> ---
>  src/osd/OSD.cc | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/src/osd/OSD.cc b/src/osd/OSD.cc
> index 5add675..562fd25 100644
> --- a/src/osd/OSD.cc
> +++ b/src/osd/OSD.cc
> @@ -1946,13 +1946,13 @@ void OSD::heartbeat_check()
>         p != heartbeat_peers.end();
>         p++) {
>      dout(25) << "heartbeat_check osd." << p->first
> -	     << " first_rx " << p->second.first_tx
> +	     << " first_tx " << p->second.first_tx
>  	     << " last_tx " << p->second.last_tx
>  	     << " last_rx " << p->second.last_rx
>  	     << dendl;
>      if (p->second.last_rx == utime_t()) {
>        if (p->second.last_tx == utime_t() ||
> -	  p->second.last_tx > cutoff)
> +	  p->second.first_tx > cutoff)
>  	continue;  // just started sending recently
>        derr << "heartbeat_check: no reply from osd." << p->first
>  	   << " ever, first ping sent " << p->second.first_tx
> -- 
> 1.7.11.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
> the body of a message to majordomo@xxxxxxxxxxxxxxx
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> 
--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [CEPH Users]     [Ceph Large]     [Information on CEPH]     [Linux BTRFS]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]
  Powered by Linux