The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/modules/ath_hal/ath_hal.ldscript

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*      $NetBSD: ath_hal.ldscript,v 1.1 2011/02/20 03:58:33 jmcneill Exp $      */
    2 
    3 SECTIONS
    4 {
    5    /* Pre-loaded modules must have merged BSS and data. */
    6    .data 0 :
    7    {
    8      *(.data)
    9      *(.bss)
   10      *(.bss.*)
   11      *(COMMON)
   12    }
   13 
   14    link_set_ah_rfs :
   15    {
   16      __start_link_set_ah_rfs = .;
   17      *(link_set_ah_rfs);
   18      __stop_link_set_ah_rfs = .;
   19    }
   20 
   21    link_set_ah_chips :
   22    {
   23      __start_link_set_ah_chips = .;
   24      *(link_set_ah_chips);
   25      __stop_link_set_ah_chips = .;
   26    }
   27 
   28    . = ALIGN(64);       /* COHERENCY_UNIT */
   29    .data.cacheline_aligned      : { *(.data.cacheline_aligned) }
   30    . = ALIGN(64);       /* COHERENCY_UNIT */
   31    .data.read_mostly            : { *(.data.read_mostly) }
   32    . = ALIGN(64);       /* COHERENCY_UNIT */
   33    /* Pre-loaded modules do not need the following. */
   34    /DISCARD/ :
   35    {
   36      *(.comment)
   37    }
   38 }

Cache object: be7c058d3714831d6e4d0db598e6d66f


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.