new_stat          270 net/core/drop_monitor.c 	struct dm_hw_stat_delta *new_stat;
new_stat          279 net/core/drop_monitor.c 	list_for_each_entry_rcu(new_stat, &hw_stats_list, list) {
new_stat          286 net/core/drop_monitor.c 		if ((new_stat->dev == napi->dev)  &&
new_stat          287 net/core/drop_monitor.c 		    (time_after(jiffies, new_stat->last_rx + dm_hw_check_delta)) &&
new_stat          288 net/core/drop_monitor.c 		    (napi->dev->stats.rx_dropped != new_stat->last_drop_val)) {
new_stat          290 net/core/drop_monitor.c 			new_stat->last_drop_val = napi->dev->stats.rx_dropped;
new_stat          291 net/core/drop_monitor.c 			new_stat->last_rx = jiffies;
new_stat         1089 net/core/drop_monitor.c 	struct dm_hw_stat_delta *new_stat, *temp;
new_stat         1113 net/core/drop_monitor.c 	list_for_each_entry_safe(new_stat, temp, &hw_stats_list, list) {
new_stat         1114 net/core/drop_monitor.c 		if (new_stat->dev == NULL) {
new_stat         1115 net/core/drop_monitor.c 			list_del_rcu(&new_stat->list);
new_stat         1116 net/core/drop_monitor.c 			kfree_rcu(new_stat, rcu);
new_stat         1480 net/core/drop_monitor.c 	struct dm_hw_stat_delta *new_stat = NULL;
new_stat         1485 net/core/drop_monitor.c 		new_stat = kzalloc(sizeof(struct dm_hw_stat_delta), GFP_KERNEL);
new_stat         1487 net/core/drop_monitor.c 		if (!new_stat)
new_stat         1490 net/core/drop_monitor.c 		new_stat->dev = dev;
new_stat         1491 net/core/drop_monitor.c 		new_stat->last_rx = jiffies;
new_stat         1493 net/core/drop_monitor.c 		list_add_rcu(&new_stat->list, &hw_stats_list);
new_stat         1498 net/core/drop_monitor.c 		list_for_each_entry_safe(new_stat, tmp, &hw_stats_list, list) {
new_stat         1499 net/core/drop_monitor.c 			if (new_stat->dev == dev) {
new_stat         1500 net/core/drop_monitor.c 				new_stat->dev = NULL;
new_stat         1502 net/core/drop_monitor.c 					list_del_rcu(&new_stat->list);
new_stat         1503 net/core/drop_monitor.c 					kfree_rcu(new_stat, rcu);
new_stat           70 tools/perf/util/namespaces.c 	struct stat new_stat;
new_stat           84 tools/perf/util/namespaces.c 	if (stat(newns, &new_stat) < 0)
new_stat           90 tools/perf/util/namespaces.c 	if (old_stat.st_ino != new_stat.st_ino) {