[PKTGEN]: Remove write-only variable.

The pktgen_thread.pid is set to current->pid and is never used
after this. So remove this at all.

Found during isolating the explicit pid/tgid usage.

Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Acked-by: Sukadev Bhattiprolu <sukadev@us.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Pavel Emelyanov and committed by David S. Miller 88282c6e a289d70d

-3
-3
net/core/pktgen.c
··· 380 380 /* Field for thread to receive "posted" events terminate, stop ifs etc. */ 381 381 382 382 u32 control; 383 - int pid; 384 383 int cpu; 385 384 386 385 wait_queue_head_t queue; ··· 3461 3462 BUG_ON(smp_processor_id() != cpu); 3462 3463 3463 3464 init_waitqueue_head(&t->queue); 3464 - 3465 - t->pid = current->pid; 3466 3465 3467 3466 pr_debug("pktgen: starting pktgen/%d: pid=%d\n", cpu, current->pid); 3468 3467