#ifndef _NET_GARP_H #define _NET_GARP_H #include #define GARP_PROTOCOL_ID 0x1 #define GARP_END_MARK 0x0 struct garp_pdu_hdr { __be16 protocol; }; struct garp_msg_hdr { u8 attrtype; }; enum garp_attr_event { GARP_LEAVE_ALL, GARP_JOIN_EMPTY, GARP_JOIN_IN, GARP_LEAVE_EMPTY, GARP_LEAVE_IN, GARP_EMPTY, }; struct garp_attr_hdr { u8 len; u8 event; u8 data[]; }; struct garp_skb_cb { u8 cur_type; }; static inline struct garp_skb_cb *garp_cb(struct sk_buff *skb) { BUILD_BUG_ON(sizeof(struct garp_skb_cb) > FIELD_SIZEOF(struct sk_buff, cb)); return (struct garp_skb_cb *)skb->cb; } enum garp_applicant_state { GARP_APPLICANT_INVALID, GARP_APPLICANT_VA, GARP_APPLICANT_AA, GARP_APPLICANT_QA, GARP_APPLICANT_LA, GARP_APPLICANT_VP, GARP_APPLICANT_AP, GARP_APPLICANT_QP, GARP_APPLICANT_VO, GARP_APPLICANT_AO, GARP_APPLICANT_QO, __GARP_APPLICANT_MAX }; #define GARP_APPLICANT_MAX (__GARP_APPLICANT_MAX - 1) enum garp_event { GARP_EVENT_REQ_JOIN, GARP_EVENT_REQ_LEAVE, GARP_EVENT_R_JOIN_IN, GARP_EVENT_R_JOIN_EMPTY, GARP_EVENT_R_EMPTY, GARP_EVENT_R_LEAVE_IN, GARP_EVENT_R_LEAVE_EMPTY, GARP_EVENT_TRANSMIT_PDU, __GARP_EVENT_MAX }; #define GARP_EVENT_MAX (__GARP_EVENT_MAX - 1) enum garp_action { GARP_ACTION_NONE, GARP_ACTION_S_JOIN_IN, GARP_ACTION_S_LEAVE_EMPTY, }; struct garp_attr { struct rb_node node; enum garp_applicant_state state; u8 type; u8 dlen; unsigned char data[]; }; enum garp_applications { GARP_APPLICATION_GVRP, __GARP_APPLICATION_MAX }; #define GARP_APPLICATION_MAX (__GARP_APPLICATION_MAX - 1) struct garp_application { enum garp_applications type; unsigned int maxattr; struct stp_proto proto; }; struct garp_applicant { struct garp_application *app; struct net_device *dev; struct timer_list join_timer; spinlock_t lock; struct sk_buff_head queue; struct sk_buff *pdu; struct rb_root gid; struct rcu_head rcu; }; struct garp_port { struct garp_applicant __rcu *applicants[GARP_APPLICATION_MAX + 1]; struct rcu_head rcu; }; int garp_register_application(struct garp_application *app); void garp_unregister_application(struct garp_application *app); int garp_init_applicant(struct net_device *dev, struct garp_application *app); void garp_uninit_applicant(struct net_device *dev, struct garp_application *app); int garp_request_join(const struct net_device *dev, const struct garp_application *app, const void *data, u8 len, u8 type); void garp_request_leave(const struct net_device *dev, const struct garp_application *app, const void *data, u8 len, u8 type); #endif /* _NET_GARP_H */ n value='grep'>log msg
path: root/include/dt-bindings/iio/adc
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2017-01-27 15:00:45 -0600
committerBjorn Helgaas <bhelgaas@google.com>2017-01-27 15:00:45 -0600
commit030305d69fc6963c16003f50d7e8d74b02d0a143 (patch)
tree363a4e34d199178769b7e7eeb26ea2620a55847b /include/dt-bindings/iio/adc
parent4d191b1b63c209e37bf27938ef365244d3c41084 (diff)
PCI/ASPM: Handle PCI-to-PCIe bridges as roots of PCIe hierarchies
In a struct pcie_link_state, link->root points to the pcie_link_state of the root of the PCIe hierarchy. For the topmost link, this points to itself (link->root = link). For others, we copy the pointer from the parent (link->root = link->parent->root). Previously we recognized that Root Ports originated PCIe hierarchies, but we treated PCI/PCI-X to PCIe Bridges as being in the middle of the hierarchy, and when we tried to copy the pointer from link->parent->root, there was no parent, and we dereferenced a NULL pointer: BUG: unable to handle kernel NULL pointer dereference at 0000000000000090 IP: [<ffffffff9e424350>] pcie_aspm_init_link_state+0x170/0x820 Recognize that PCI/PCI-X to PCIe Bridges originate PCIe hierarchies just like Root Ports do, so link->root for these devices should also point to itself. Fixes: 51ebfc92b72b ("PCI: Enumerate switches below PCI-to-PCIe bridges") Link: https://bugzilla.kernel.org/show_bug.cgi?id=193411 Link: https://bugzilla.opensuse.org/show_bug.cgi?id=1022181 Tested-by: lists@ssl-mail.com Tested-by: Jayachandran C. <jnair@caviumnetworks.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> CC: stable@vger.kernel.org # v4.2+
Diffstat (limited to 'include/dt-bindings/iio/adc')