ast.c (d4bbf7e7759afc172e2bfbc5c416324590049cdd) | ast.c (4875647a08e35f77274838d97ca8fa44158d50e2) |
---|---|
1/****************************************************************************** 2******************************************************************************* 3** 4** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. 5** Copyright (C) 2004-2010 Red Hat, Inc. All rights reserved. 6** 7** This copyrighted material is made available to anyone wishing to use, 8** modify, copy, or redistribute it subject to the terms and conditions --- 296 unchanged lines hidden (view full) --- 305 mutex_lock(&ls->ls_cb_mutex); 306 list_for_each_entry_safe(lkb, safe, &ls->ls_cb_delay, lkb_cb_list) { 307 list_del_init(&lkb->lkb_cb_list); 308 queue_work(ls->ls_callback_wq, &lkb->lkb_cb_work); 309 count++; 310 } 311 mutex_unlock(&ls->ls_cb_mutex); 312 | 1/****************************************************************************** 2******************************************************************************* 3** 4** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. 5** Copyright (C) 2004-2010 Red Hat, Inc. All rights reserved. 6** 7** This copyrighted material is made available to anyone wishing to use, 8** modify, copy, or redistribute it subject to the terms and conditions --- 296 unchanged lines hidden (view full) --- 305 mutex_lock(&ls->ls_cb_mutex); 306 list_for_each_entry_safe(lkb, safe, &ls->ls_cb_delay, lkb_cb_list) { 307 list_del_init(&lkb->lkb_cb_list); 308 queue_work(ls->ls_callback_wq, &lkb->lkb_cb_work); 309 count++; 310 } 311 mutex_unlock(&ls->ls_cb_mutex); 312 |
313 log_debug(ls, "dlm_callback_resume %d", count); | 313 if (count) 314 log_debug(ls, "dlm_callback_resume %d", count); |
314} 315 | 315} 316 |