~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/net/sched/Makefile

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /net/sched/Makefile (Version linux-6.12-rc7) and /net/sched/Makefile (Version linux-2.4.37.11)


  1 # SPDX-License-Identifier: GPL-2.0             << 
  2 #                                                   1 #
  3 # Makefile for the Linux Traffic Control Unit.      2 # Makefile for the Linux Traffic Control Unit.
  4 #                                                   3 #
  5                                                     4 
  6 obj-y   := sch_generic.o sch_mq.o              !!   5 O_TARGET := sched.o
  7                                                     6 
  8 obj-$(CONFIG_INET)              += sch_frag.o  !!   7 obj-y   := sch_generic.o
  9 obj-$(CONFIG_NET_SCHED)         += sch_api.o s !!   8 
                                                   >>   9 
                                                   >>  10 obj-$(CONFIG_NET_SCHED)         += sch_api.o sch_fifo.o
                                                   >>  11 obj-$(CONFIG_NET_ESTIMATOR)     += estimator.o
 10 obj-$(CONFIG_NET_CLS)           += cls_api.o       12 obj-$(CONFIG_NET_CLS)           += cls_api.o
 11 obj-$(CONFIG_NET_CLS_ACT)       += act_api.o   !!  13 obj-$(CONFIG_NET_CLS_POLICE)    += police.o
 12 obj-$(CONFIG_NET_ACT_POLICE)    += act_police. !!  14 obj-$(CONFIG_NET_SCH_INGRESS)   += sch_ingress.o 
 13 obj-$(CONFIG_NET_ACT_GACT)      += act_gact.o  !!  15 obj-$(CONFIG_NET_SCH_CBQ)       += sch_cbq.o
 14 obj-$(CONFIG_NET_ACT_MIRRED)    += act_mirred. !!  16 obj-$(CONFIG_NET_SCH_CSZ)       += sch_csz.o
 15 obj-$(CONFIG_NET_ACT_SAMPLE)    += act_sample. !!  17 obj-$(CONFIG_NET_SCH_NETEM)     += sch_netem.o
 16 obj-$(CONFIG_NET_ACT_NAT)       += act_nat.o   !!  18 obj-$(CONFIG_NET_SCH_HPFQ)      += sch_hpfq.o
 17 obj-$(CONFIG_NET_ACT_PEDIT)     += act_pedit.o << 
 18 obj-$(CONFIG_NET_ACT_SIMP)      += act_simple. << 
 19 obj-$(CONFIG_NET_ACT_SKBEDIT)   += act_skbedit << 
 20 obj-$(CONFIG_NET_ACT_CSUM)      += act_csum.o  << 
 21 obj-$(CONFIG_NET_ACT_MPLS)      += act_mpls.o  << 
 22 obj-$(CONFIG_NET_ACT_VLAN)      += act_vlan.o  << 
 23 obj-$(CONFIG_NET_ACT_BPF)       += act_bpf.o   << 
 24 obj-$(CONFIG_NET_ACT_CONNMARK)  += act_connmar << 
 25 obj-$(CONFIG_NET_ACT_CTINFO)    += act_ctinfo. << 
 26 obj-$(CONFIG_NET_ACT_SKBMOD)    += act_skbmod. << 
 27 obj-$(CONFIG_NET_ACT_IFE)       += act_ife.o   << 
 28 obj-$(CONFIG_NET_IFE_SKBMARK)   += act_meta_ma << 
 29 obj-$(CONFIG_NET_IFE_SKBPRIO)   += act_meta_sk << 
 30 obj-$(CONFIG_NET_IFE_SKBTCINDEX)        += act << 
 31 obj-$(CONFIG_NET_ACT_TUNNEL_KEY)+= act_tunnel_ << 
 32 obj-$(CONFIG_NET_ACT_CT)        += act_ct.o    << 
 33 obj-$(CONFIG_NET_ACT_GATE)      += act_gate.o  << 
 34 obj-$(CONFIG_NET_SCH_FIFO)      += sch_fifo.o  << 
 35 obj-$(CONFIG_NET_SCH_HTB)       += sch_htb.o   << 
 36 obj-$(CONFIG_NET_SCH_HFSC)      += sch_hfsc.o      19 obj-$(CONFIG_NET_SCH_HFSC)      += sch_hfsc.o
 37 obj-$(CONFIG_NET_SCH_RED)       += sch_red.o   !!  20 obj-$(CONFIG_NET_SCH_HTB)       += sch_htb.o
 38 obj-$(CONFIG_NET_SCH_GRED)      += sch_gred.o  << 
 39 obj-$(CONFIG_NET_SCH_INGRESS)   += sch_ingress << 
 40 obj-$(CONFIG_NET_SCH_SFB)       += sch_sfb.o   << 
 41 obj-$(CONFIG_NET_SCH_SFQ)       += sch_sfq.o       21 obj-$(CONFIG_NET_SCH_SFQ)       += sch_sfq.o
                                                   >>  22 obj-$(CONFIG_NET_SCH_RED)       += sch_red.o
 42 obj-$(CONFIG_NET_SCH_TBF)       += sch_tbf.o       23 obj-$(CONFIG_NET_SCH_TBF)       += sch_tbf.o
 43 obj-$(CONFIG_NET_SCH_TEQL)      += sch_teql.o  << 
 44 obj-$(CONFIG_NET_SCH_PRIO)      += sch_prio.o      24 obj-$(CONFIG_NET_SCH_PRIO)      += sch_prio.o
 45 obj-$(CONFIG_NET_SCH_MULTIQ)    += sch_multiq. !!  25 obj-$(CONFIG_NET_SCH_TEQL)      += sch_teql.o
 46 obj-$(CONFIG_NET_SCH_NETEM)     += sch_netem.o !!  26 obj-$(CONFIG_NET_SCH_GRED)      += sch_gred.o
 47 obj-$(CONFIG_NET_SCH_DRR)       += sch_drr.o   !!  27 obj-$(CONFIG_NET_SCH_DSMARK)    += sch_dsmark.o
 48 obj-$(CONFIG_NET_SCH_PLUG)      += sch_plug.o  !!  28 obj-$(CONFIG_NET_CLS_TCINDEX)   += cls_tcindex.o
 49 obj-$(CONFIG_NET_SCH_ETS)       += sch_ets.o   !!  29 obj-$(CONFIG_NET_SCH_ATM)       += sch_atm.o
 50 obj-$(CONFIG_NET_SCH_MQPRIO)    += sch_mqprio. << 
 51 obj-$(CONFIG_NET_SCH_MQPRIO_LIB) += sch_mqprio << 
 52 obj-$(CONFIG_NET_SCH_SKBPRIO)   += sch_skbprio << 
 53 obj-$(CONFIG_NET_SCH_CHOKE)     += sch_choke.o << 
 54 obj-$(CONFIG_NET_SCH_QFQ)       += sch_qfq.o   << 
 55 obj-$(CONFIG_NET_SCH_CODEL)     += sch_codel.o << 
 56 obj-$(CONFIG_NET_SCH_FQ_CODEL)  += sch_fq_code << 
 57 obj-$(CONFIG_NET_SCH_CAKE)      += sch_cake.o  << 
 58 obj-$(CONFIG_NET_SCH_FQ)        += sch_fq.o    << 
 59 obj-$(CONFIG_NET_SCH_HHF)       += sch_hhf.o   << 
 60 obj-$(CONFIG_NET_SCH_PIE)       += sch_pie.o   << 
 61 obj-$(CONFIG_NET_SCH_FQ_PIE)    += sch_fq_pie. << 
 62 obj-$(CONFIG_NET_SCH_CBS)       += sch_cbs.o   << 
 63 obj-$(CONFIG_NET_SCH_ETF)       += sch_etf.o   << 
 64 obj-$(CONFIG_NET_SCH_TAPRIO)    += sch_taprio. << 
 65                                                << 
 66 obj-$(CONFIG_NET_CLS_U32)       += cls_u32.o       30 obj-$(CONFIG_NET_CLS_U32)       += cls_u32.o
                                                   >>  31 obj-$(CONFIG_NET_CLS_RSVP)      += cls_rsvp.o
                                                   >>  32 obj-$(CONFIG_NET_CLS_RSVP6)     += cls_rsvp6.o
 67 obj-$(CONFIG_NET_CLS_ROUTE4)    += cls_route.o     33 obj-$(CONFIG_NET_CLS_ROUTE4)    += cls_route.o
 68 obj-$(CONFIG_NET_CLS_FW)        += cls_fw.o        34 obj-$(CONFIG_NET_CLS_FW)        += cls_fw.o
 69 obj-$(CONFIG_NET_CLS_BASIC)     += cls_basic.o !!  35 
 70 obj-$(CONFIG_NET_CLS_FLOW)      += cls_flow.o  !!  36 include $(TOPDIR)/Rules.make
 71 obj-$(CONFIG_NET_CLS_CGROUP)    += cls_cgroup. << 
 72 obj-$(CONFIG_NET_CLS_BPF)       += cls_bpf.o   << 
 73 obj-$(CONFIG_NET_CLS_FLOWER)    += cls_flower. << 
 74 obj-$(CONFIG_NET_CLS_MATCHALL)  += cls_matchal << 
 75 obj-$(CONFIG_NET_EMATCH)        += ematch.o    << 
 76 obj-$(CONFIG_NET_EMATCH_CMP)    += em_cmp.o    << 
 77 obj-$(CONFIG_NET_EMATCH_NBYTE)  += em_nbyte.o  << 
 78 obj-$(CONFIG_NET_EMATCH_U32)    += em_u32.o    << 
 79 obj-$(CONFIG_NET_EMATCH_META)   += em_meta.o   << 
 80 obj-$(CONFIG_NET_EMATCH_TEXT)   += em_text.o   << 
 81 obj-$(CONFIG_NET_EMATCH_CANID)  += em_canid.o  << 
 82 obj-$(CONFIG_NET_EMATCH_IPSET)  += em_ipset.o  << 
 83 obj-$(CONFIG_NET_EMATCH_IPT)    += em_ipt.o    << 
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php