Lines Matching defs:p
3344 char *p = pkt_dev->result;
3349 p += sprintf(p, "OK: %llu(c%llu+d%llu) usec, %llu (%dbyte,%dfrags)\n",
3375 p += sprintf(p, " %llupps %lluMb/sec (%llubps) errors: %llu",
3773 struct pktgen_dev *p, *pkt_dev = NULL;
3777 list_for_each_entry_rcu(p, &t->if_list, list)
3778 if (strncmp(p->odevname, ifname, len) == 0) {
3779 if (p->odevname[len]) {
3780 if (exact || p->odevname[len] != '@')
3783 pkt_dev = p;
3788 pr_debug("find_dev(%s) returning %p\n", ifname, pkt_dev);
3919 struct task_struct *p;
3936 p = kthread_create_on_cpu(pktgen_thread_worker, t, cpu, "kpktgend_%d");
3937 if (IS_ERR(p)) {
3941 return PTR_ERR(p);
3944 t->tsk = p;
3951 kthread_stop(p);
3958 get_task_struct(p);
3959 wake_up_process(p);
3972 struct pktgen_dev *p;
3976 p = list_entry(q, struct pktgen_dev, list);
3977 if (p == pkt_dev)
3978 list_del_rcu(&p->list);
3986 pr_debug("remove_device pkt_dev=%p\n", pkt_dev);