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
160
struct tt_work *tt_work = tt_work_of_work(work);
drivers/thermal/testing/zone.c
161
struct tt_thermal_zone *tt_zone = tt_work->tt_zone;
drivers/thermal/testing/zone.c
164
kfree(tt_work);
drivers/thermal/testing/zone.c
192
struct tt_work *tt_work __free(kfree) = kzalloc_obj(*tt_work);
drivers/thermal/testing/zone.c
193
if (!tt_work)
drivers/thermal/testing/zone.c
207
INIT_WORK(&tt_work->work, tt_add_tz_work_fn);
drivers/thermal/testing/zone.c
208
tt_work->tt_zone = no_free_ptr(tt_zone);
drivers/thermal/testing/zone.c
209
tt_queue_work(&(no_free_ptr(tt_work)->work));
drivers/thermal/testing/zone.c
216
struct tt_work *tt_work = tt_work_of_work(work);
drivers/thermal/testing/zone.c
217
struct tt_thermal_zone *tt_zone = tt_work->tt_zone;
drivers/thermal/testing/zone.c
219
kfree(tt_work);
drivers/thermal/testing/zone.c
245
struct tt_work *tt_work __free(kfree) = kzalloc_obj(*tt_work);
drivers/thermal/testing/zone.c
246
if (!tt_work)
drivers/thermal/testing/zone.c
269
INIT_WORK(&tt_work->work, tt_del_tz_work_fn);
drivers/thermal/testing/zone.c
270
tt_work->tt_zone = tt_zone;
drivers/thermal/testing/zone.c
271
tt_queue_work(&(no_free_ptr(tt_work)->work));
drivers/thermal/testing/zone.c
309
struct tt_work *tt_work = tt_work_of_work(work);
drivers/thermal/testing/zone.c
310
struct tt_thermal_zone *tt_zone = tt_work->tt_zone;
drivers/thermal/testing/zone.c
311
struct tt_trip *tt_trip = tt_work->tt_trip;
drivers/thermal/testing/zone.c
314
kfree(tt_work);
drivers/thermal/testing/zone.c
331
struct tt_work *tt_work __free(kfree) = kzalloc_obj(*tt_work);
drivers/thermal/testing/zone.c
332
if (!tt_work)
drivers/thermal/testing/zone.c
357
INIT_WORK(&tt_work->work, tt_zone_add_trip_work_fn);
drivers/thermal/testing/zone.c
358
tt_work->tt_zone = no_free_ptr(tt_zone);
drivers/thermal/testing/zone.c
359
tt_work->tt_trip = no_free_ptr(tt_trip);
drivers/thermal/testing/zone.c
360
tt_queue_work(&(no_free_ptr(tt_work)->work));
drivers/thermal/testing/zone.c
84
static inline struct tt_work *tt_work_of_work(struct work_struct *work)
drivers/thermal/testing/zone.c
86
return container_of(work, struct tt_work, work);