@@ -456,7 +456,7 @@ struct fscache_cookie *__fscache_acquire_cookie(
456456{
457457 struct fscache_cookie * cookie ;
458458
459- _enter ("V=%x" , volume -> debug_id );
459+ kenter ("V=%x" , volume -> debug_id );
460460
461461 if (!index_key || !index_key_len || index_key_len > 255 || aux_data_len > 255 )
462462 return NULL ;
@@ -484,7 +484,7 @@ struct fscache_cookie *__fscache_acquire_cookie(
484484
485485 trace_fscache_acquire (cookie );
486486 fscache_stat (& fscache_n_acquires_ok );
487- _leave (" = c=%08x" , cookie -> debug_id );
487+ kleave (" = c=%08x" , cookie -> debug_id );
488488 return cookie ;
489489}
490490EXPORT_SYMBOL (__fscache_acquire_cookie );
@@ -505,7 +505,7 @@ static void fscache_perform_lookup(struct fscache_cookie *cookie)
505505 enum fscache_access_trace trace = fscache_access_lookup_cookie_end_failed ;
506506 bool need_withdraw = false;
507507
508- _enter ("" );
508+ kenter ("" );
509509
510510 if (!cookie -> volume -> cache_priv ) {
511511 fscache_create_volume (cookie -> volume , true);
@@ -519,7 +519,7 @@ static void fscache_perform_lookup(struct fscache_cookie *cookie)
519519 if (cookie -> state != FSCACHE_COOKIE_STATE_FAILED )
520520 fscache_set_cookie_state (cookie , FSCACHE_COOKIE_STATE_QUIESCENT );
521521 need_withdraw = true;
522- _leave (" [fail]" );
522+ kleave (" [fail]" );
523523 goto out ;
524524 }
525525
@@ -572,7 +572,7 @@ void __fscache_use_cookie(struct fscache_cookie *cookie, bool will_modify)
572572 bool queue = false;
573573 int n_active ;
574574
575- _enter ("c=%08x" , cookie -> debug_id );
575+ kenter ("c=%08x" , cookie -> debug_id );
576576
577577 if (WARN (test_bit (FSCACHE_COOKIE_RELINQUISHED , & cookie -> flags ),
578578 "Trying to use relinquished cookie\n" ))
@@ -636,7 +636,7 @@ void __fscache_use_cookie(struct fscache_cookie *cookie, bool will_modify)
636636 spin_unlock (& cookie -> lock );
637637 if (queue )
638638 fscache_queue_cookie (cookie , fscache_cookie_get_use_work );
639- _leave ("" );
639+ kleave ("" );
640640}
641641EXPORT_SYMBOL (__fscache_use_cookie );
642642
@@ -702,7 +702,7 @@ static void fscache_cookie_state_machine(struct fscache_cookie *cookie)
702702 enum fscache_cookie_state state ;
703703 bool wake = false;
704704
705- _enter ("c=%x" , cookie -> debug_id );
705+ kenter ("c=%x" , cookie -> debug_id );
706706
707707again :
708708 spin_lock (& cookie -> lock );
@@ -820,7 +820,7 @@ static void fscache_cookie_state_machine(struct fscache_cookie *cookie)
820820 spin_unlock (& cookie -> lock );
821821 if (wake )
822822 wake_up_cookie_state (cookie );
823- _leave ("" );
823+ kleave ("" );
824824}
825825
826826static void fscache_cookie_worker (struct work_struct * work )
@@ -867,7 +867,7 @@ static void fscache_cookie_lru_do_one(struct fscache_cookie *cookie)
867867 set_bit (FSCACHE_COOKIE_DO_LRU_DISCARD , & cookie -> flags );
868868 spin_unlock (& cookie -> lock );
869869 fscache_stat (& fscache_n_cookies_lru_expired );
870- _debug ("lru c=%x" , cookie -> debug_id );
870+ kdebug ("lru c=%x" , cookie -> debug_id );
871871 __fscache_withdraw_cookie (cookie );
872872 }
873873
@@ -971,7 +971,7 @@ void __fscache_relinquish_cookie(struct fscache_cookie *cookie, bool retire)
971971 if (retire )
972972 fscache_stat (& fscache_n_relinquishes_retire );
973973
974- _enter ("c=%08x{%d},%d" ,
974+ kenter ("c=%08x{%d},%d" ,
975975 cookie -> debug_id , atomic_read (& cookie -> n_active ), retire );
976976
977977 if (WARN (test_and_set_bit (FSCACHE_COOKIE_RELINQUISHED , & cookie -> flags ),
@@ -1050,7 +1050,7 @@ void __fscache_invalidate(struct fscache_cookie *cookie,
10501050{
10511051 bool is_caching ;
10521052
1053- _enter ("c=%x" , cookie -> debug_id );
1053+ kenter ("c=%x" , cookie -> debug_id );
10541054
10551055 fscache_stat (& fscache_n_invalidates );
10561056
@@ -1072,7 +1072,7 @@ void __fscache_invalidate(struct fscache_cookie *cookie,
10721072 case FSCACHE_COOKIE_STATE_INVALIDATING : /* is_still_valid will catch it */
10731073 default :
10741074 spin_unlock (& cookie -> lock );
1075- _leave (" [no %u]" , cookie -> state );
1075+ kleave (" [no %u]" , cookie -> state );
10761076 return ;
10771077
10781078 case FSCACHE_COOKIE_STATE_LOOKING_UP :
@@ -1081,7 +1081,7 @@ void __fscache_invalidate(struct fscache_cookie *cookie,
10811081 fallthrough ;
10821082 case FSCACHE_COOKIE_STATE_CREATING :
10831083 spin_unlock (& cookie -> lock );
1084- _leave (" [look %x]" , cookie -> inval_counter );
1084+ kleave (" [look %x]" , cookie -> inval_counter );
10851085 return ;
10861086
10871087 case FSCACHE_COOKIE_STATE_ACTIVE :
@@ -1094,7 +1094,7 @@ void __fscache_invalidate(struct fscache_cookie *cookie,
10941094
10951095 if (is_caching )
10961096 fscache_queue_cookie (cookie , fscache_cookie_get_inval_work );
1097- _leave (" [inv]" );
1097+ kleave (" [inv]" );
10981098 return ;
10991099 }
11001100}
0 commit comments