/* * netsniff-ng - the packet sniffing beast * Copyright 2012 Markus Amend , Deutsche Flugsicherung GmbH * Subject to the GPL, version 2. * * IPv6 in IPv4 encapsulation described in RFC3056 */ #include #include #include /* for ntohs() */ #include "proto.h" #include "dissector_eth.h" #include "built_in.h" extern void ipv6(struct pkt_buff *pkt); extern void ipv6_less(struct pkt_buff *pkt); struct protocol ipv6_in_ipv4_ops = { .key = 0x29, .print_full = ipv6, .print_less = ipv6_less, }; t-next.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPei Zhang <pei.zhang@intel.com>2016-11-16 19:05:50 +0800
committerZhenyu Wang <zhenyuw@linux.intel.com>2016-11-16 11:45:29 +0800
commit0aaee4cc834261dcfbfb57559442777344ee8cb5 (patch)
treeab6ddb9c80142acc0bc7292eeb9c501c284fcc36
parenta3614a868fd31b0e3ba670401a651ae89bb527aa (diff)
drm/i915/gvt: check workload empty before real scan
This patch will fix warning log print during command scan caused by empty workload (ring head equals tail). This patch avoid going into real scan process if workload is empty. It's guest's responsibility to make sure if an empty workload is proper to submit to HW. [v2] modify the patch description. It's a fix, not a w/a. Signed-off-by: Pei Zhang <pei.zhang@intel.com> Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>