aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/hack-4.19/662-remove_pfifo_fast.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2019-03-24 12:05:56 +0100
committerFelix Fietkau <nbd@nbd.name>2019-03-24 12:10:15 +0100
commitbee7ff7cf34dfe66cf71c2e28faa1a03dbfc334c (patch)
treeb1a373c410efc82ac2d3d2214be005b5bdb78df6 /target/linux/generic/hack-4.19/662-remove_pfifo_fast.patch
parentacf149d531c0c263a2869abe09018e7e232a9e41 (diff)
downloadupstream-bee7ff7cf34dfe66cf71c2e28faa1a03dbfc334c.tar.gz
upstream-bee7ff7cf34dfe66cf71c2e28faa1a03dbfc334c.tar.bz2
upstream-bee7ff7cf34dfe66cf71c2e28faa1a03dbfc334c.zip
ramips: allow packets with ttl=0
Some broken ISPs (e.g. Comcast) send DHCPv6 packets with hop limit=0. This trips up the TTL=0 check in the PPE if enabled. Signed-off-by: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'target/linux/generic/hack-4.19/662-remove_pfifo_fast.patch')
0 files changed, 0 insertions, 0 deletions
background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
--  Simple interning for netlist elements.
--  Copyright (C) 2019 Tristan Gingold
--
--  This file is part of GHDL.
--
--  This program is free software; you can redistribute it and/or modify
--  it under the terms of the GNU General Public License as published by
--  the Free Software Foundation; either version 2 of the License, or
--  (at your option) any later version.
--
--  This program is distributed in the hope that it will be useful,
--  but WITHOUT ANY WARRANTY; without even the implied warranty of
--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
--  GNU General Public License for more details.
--
--  You should have received a copy of the GNU General Public License
--  along with this program; if not, write to the Free Software
--  Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
--  MA 02110-1301, USA.

package body Netlists.Internings is
   function Id_Instance (Param : Instance) return Instance is
   begin
      return Param;
   end Id_Instance;
end Netlists.Internings;