summaryrefslogtreecommitdiffstats
path: root/net/ipv6/ndisc.c
Commit message (Expand)AuthorAgeFilesLines
* ipv6: coding style improvements (remove assignment in if statements)Ian Morris2014-11-231-3/+4
* neigh: remove dynamic neigh table registration supportWANG Cong2014-11-111-2/+2
* ipv6: White-space cleansing : gaps between function and symbol exportIan Morris2014-08-241-1/+0
* ipv6: White-space cleansing : Line LayoutsIan Morris2014-08-241-8/+8
* neigh: remove exceptional & on function nameHimangi Saraogi2014-07-241-1/+1
* ipv6: fix the check when handle RALi RongQing2014-07-101-6/+6
* ipv6: Allow accepting RA from local IP addresses.Ben Greear2014-07-011-8/+13
* ipv6: Add more debugging around accept-ra logic.Ben Greear2014-07-011-8/+43
* ipv6: update Destination Cache entries when gateway turn into hostDuan Jiong2014-05-151-5/+2
* neigh: use tbl->family to distinguish ipv4 from ipv6Jiri Pirko2013-12-091-1/+1
* neigh: wrap proc dointvec functionsJiri Pirko2013-12-091-5/+5
* neigh: convert parms to an arrayJiri Pirko2013-12-091-19/+24
* ipv6: judge the accept_ra_defrtr before calling rt6_route_rcvDuan Jiong2013-12-021-0/+3
* net: ipv6: ndisc: Fix warning when CONFIG_SYSCTL=nFabio Estevam2013-11-181-1/+1
* ipv6: don't call fib6_run_gc() until routing is readyMichal Kubeček2013-09-111-7/+11
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2013-09-051-6/+8
|\
| * ipv6: Don't depend on per socket memory for neighbour discovery messagesThomas Graf2013-09-041-6/+8
* | ipv6:introduce function to find route for redirectDuan Jiong2013-09-051-1/+2
* | net: neighbour: Remove CONFIG_ARPDTim Gardner2013-09-031-2/+0
* | vxlan: add ipv6 proxy supportCong Wang2013-08-311-4/+4
* | ipv6: Remove redundant sk variableThomas Graf2013-08-301-1/+0
* | ipv6: drop fragmented ndisc packets by default (RFC 6980)Hannes Frederic Sowa2013-08-291-0/+17
|/
* ipv6: handle Redirect ICMP Message with no Redirected Header optionDuan Jiong2013-08-221-1/+3
* ipv6: prevent fib6_run_gc() contentionMichal Kubeček2013-08-011-2/+2
* ndisc: bool initializations should use true and falseDaniel Baluta2013-07-161-3/+3
* Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller2013-06-191-1/+1
|\
| * ipv6: ndisc: fix ndisc_send_redirect writing to the wrong skbMatthias Schiffer2013-06-171-1/+1
* | ipv6: Correct comparisons and calculations using skb->tail and skb-transport_...Simon Horman2013-05-281-4/+5
* | net: pass info struct via netdevice notifierJiri Pirko2013-05-281-1/+1
|/
* ipv6: ndisc: remove redundant check for !dev->addr_lenThomas Graf2013-03-081-2/+0
* ndisc: Use compound literals to build redirect message.YOSHIFUJI Hideaki / 吉藤英明2013-01-211-12/+8
* ndisc: Break down ndisc_build_skb() and build message directly.YOSHIFUJI Hideaki / 吉藤英明2013-01-211-59/+63
* ndisc: Break down __ndisc_send().YOSHIFUJI Hideaki / 吉藤英明2013-01-211-24/+21
* ndisc: Fill in ICMPv6 checksum and IPv6 header in ndisc_send_skb().YOSHIFUJI Hideaki / 吉藤英明2013-01-211-16/+8
* ndisc: Use ndisc_send_skb() for redirect.YOSHIFUJI Hideaki / 吉藤英明2013-01-211-23/+14
* ndisc: Remove icmp6h argument from ndisc_send_skb().YOSHIFUJI Hideaki / 吉藤英明2013-01-211-3/+3
* ndisc: Make ndisc_fill_xxx_option() for sk_buff.YOSHIFUJI Hideaki / 吉藤英明2013-01-211-18/+15
* ndisc: Calculate message body length and option length separately.YOSHIFUJI Hideaki / 吉藤英明2013-01-211-9/+11
* ndisc: Reset skb->trasport_headner inside ndisc_alloc_send_skb().YOSHIFUJI Hideaki / 吉藤英明2013-01-211-2/+1
* ndisc: Defer building IPv6 header.YOSHIFUJI Hideaki / 吉藤英明2013-01-211-11/+11
* ndisc: Remove dev argument for ndisc_send_skb().YOSHIFUJI Hideaki / 吉藤英明2013-01-211-5/+5
* ndisc: Set skb->dev and skb->protocol inside ndisc_alloc_skb().YOSHIFUJI Hideaki / 吉藤英明2013-01-211-6/+6
* ndisc: Simplify arguments for ip6_nd_hdr().YOSHIFUJI Hideaki / 吉藤英明2013-01-211-8/+7
* ipv6: Unshare ip6_nd_hdr() and change return type to void.YOSHIFUJI Hideaki / 吉藤英明2013-01-211-0/+25
* ndisc: Introduce ndisc_alloc_skb() helper.YOSHIFUJI Hideaki / 吉藤英明2013-01-211-25/+27
* ndisc: Introduce ndisc_fill_redirect_hdr_option().YOSHIFUJI Hideaki / 吉藤英明2013-01-211-6/+15
* ndisc: Use skb_linearize() instead of pskb_may_pull(skb, skb->len).YOSHIFUJI Hideaki / 吉藤英明2013-01-211-1/+1
* ndisc: Move ndisc_opt_addr_space() to include/net/ndisc.h.YOSHIFUJI Hideaki / 吉藤英明2013-01-211-6/+1
* ndisc: Reduce number of arguments for ndisc_fill_addr_option().YOSHIFUJI Hideaki / 吉藤英明2013-01-211-7/+6
* ndisc: Make several arguments for ndisc_send_na() boolean.YOSHIFUJI Hideaki / 吉藤英明2013-01-201-5/+5
OpenPOWER on IntegriCloud