Symbol: tt_work
drivers/net/wireless/intel/iwlwifi/dvm/dev.h
834
struct work_struct tt_work;
drivers/net/wireless/intel/iwlwifi/dvm/tt.c
550
struct iwl_priv *priv = container_of(work, struct iwl_priv, tt_work);
drivers/net/wireless/intel/iwlwifi/dvm/tt.c
568
queue_work(priv->workqueue, &priv->tt_work);
drivers/net/wireless/intel/iwlwifi/dvm/tt.c
592
INIT_WORK(&priv->tt_work, iwl_bg_tt_work);
drivers/net/wireless/intel/iwlwifi/dvm/tt.c
643
cancel_work_sync(&priv->tt_work);
drivers/thermal/testing/zone.c
161
struct tt_work *tt_work = tt_work_of_work(work);
drivers/thermal/testing/zone.c
162
struct tt_thermal_zone *tt_zone = tt_work->tt_zone;
drivers/thermal/testing/zone.c
165
kfree(tt_work);
drivers/thermal/testing/zone.c
193
struct tt_work *tt_work __free(kfree) = kzalloc_obj(*tt_work);
drivers/thermal/testing/zone.c
194
if (!tt_work)
drivers/thermal/testing/zone.c
208
INIT_WORK(&tt_work->work, tt_add_tz_work_fn);
drivers/thermal/testing/zone.c
209
tt_work->tt_zone = no_free_ptr(tt_zone);
drivers/thermal/testing/zone.c
210
schedule_work(&(no_free_ptr(tt_work)->work));
drivers/thermal/testing/zone.c
217
struct tt_work *tt_work = tt_work_of_work(work);
drivers/thermal/testing/zone.c
218
struct tt_thermal_zone *tt_zone = tt_work->tt_zone;
drivers/thermal/testing/zone.c
220
kfree(tt_work);
drivers/thermal/testing/zone.c
246
struct tt_work *tt_work __free(kfree) = kzalloc_obj(*tt_work);
drivers/thermal/testing/zone.c
247
if (!tt_work)
drivers/thermal/testing/zone.c
270
INIT_WORK(&tt_work->work, tt_del_tz_work_fn);
drivers/thermal/testing/zone.c
271
tt_work->tt_zone = tt_zone;
drivers/thermal/testing/zone.c
272
schedule_work(&(no_free_ptr(tt_work)->work));
drivers/thermal/testing/zone.c
310
struct tt_work *tt_work = tt_work_of_work(work);
drivers/thermal/testing/zone.c
311
struct tt_thermal_zone *tt_zone = tt_work->tt_zone;
drivers/thermal/testing/zone.c
312
struct tt_trip *tt_trip = tt_work->tt_trip;
drivers/thermal/testing/zone.c
315
kfree(tt_work);
drivers/thermal/testing/zone.c
332
struct tt_work *tt_work __free(kfree) = kzalloc_obj(*tt_work);
drivers/thermal/testing/zone.c
333
if (!tt_work)
drivers/thermal/testing/zone.c
358
INIT_WORK(&tt_work->work, tt_zone_add_trip_work_fn);
drivers/thermal/testing/zone.c
359
tt_work->tt_zone = no_free_ptr(tt_zone);
drivers/thermal/testing/zone.c
360
tt_work->tt_trip = no_free_ptr(tt_trip);
drivers/thermal/testing/zone.c
361
schedule_work(&(no_free_ptr(tt_work)->work));
drivers/thermal/testing/zone.c
85
static inline struct tt_work *tt_work_of_work(struct work_struct *work)
drivers/thermal/testing/zone.c
87
return container_of(work, struct tt_work, work);