Linux kernel & device driver programming

Cross-Referenced Linux and Device Driver Code

[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ]
Version: [ 2.6.11.8 ] [ 2.6.25 ] [ 2.6.25.8 ] [ 2.6.31.13 ] Architecture: [ i386 ]
  1 infiniband-$(CONFIG_INFINIBAND_ADDR_TRANS)      := ib_addr.o rdma_cm.o
  2 user_access-$(CONFIG_INFINIBAND_ADDR_TRANS)     := rdma_ucm.o
  3 
  4 obj-$(CONFIG_INFINIBAND) +=             ib_core.o ib_mad.o ib_sa.o \
  5                                         ib_cm.o iw_cm.o $(infiniband-y)
  6 obj-$(CONFIG_INFINIBAND_USER_MAD) +=    ib_umad.o
  7 obj-$(CONFIG_INFINIBAND_USER_ACCESS) += ib_uverbs.o ib_ucm.o \
  8                                         $(user_access-y)
  9 
 10 ib_core-y :=                    packer.o ud_header.o verbs.o sysfs.o \
 11                                 device.o fmr_pool.o cache.o
 12 ib_core-$(CONFIG_INFINIBAND_USER_MEM) += umem.o
 13 
 14 ib_mad-y :=                     mad.o smi.o agent.o mad_rmpp.o
 15 
 16 ib_sa-y :=                      sa_query.o multicast.o
 17 
 18 ib_cm-y :=                      cm.o
 19 
 20 iw_cm-y :=                      iwcm.o
 21 
 22 rdma_cm-y :=                    cma.o
 23 
 24 rdma_ucm-y :=                   ucma.o
 25 
 26 ib_addr-y :=                    addr.o
 27 
 28 ib_umad-y :=                    user_mad.o
 29 
 30 ib_ucm-y :=                     ucm.o
 31 
 32 ib_uverbs-y :=                  uverbs_main.o uverbs_cmd.o uverbs_marshall.o
  This page was automatically generated by the LXR engine.