/linux-4.1.27/drivers/gpu/drm/amd/amdkfd/ |
D | kfd_kernel_queue.c | 37 static bool initialize(struct kernel_queue *kq, struct kfd_dev *dev, in initialize() function 86 retval = kq->ops_asic_specific.initialize(kq, dev, type, queue_size); in initialize() 286 kq->ops.initialize = initialize; in kernel_queue_init() 302 if (kq->ops.initialize(kq, dev, type, KFD_KERNEL_QUEUE_SIZE) == false) { in kernel_queue_init()
|
D | kfd_kernel_queue_cik.c | 32 ops->initialize = initialize_cik; in kernel_queue_init_cik()
|
D | kfd_device_queue_manager_vi.c | 42 ops->initialize = initialize_cpsch_vi; in device_queue_manager_init_vi()
|
D | kfd_kernel_queue_vi.c | 32 ops->initialize = initialize_vi; in kernel_queue_init_vi()
|
D | kfd_kernel_queue.h | 56 bool (*initialize)(struct kernel_queue *kq, struct kfd_dev *dev, member
|
D | kfd_device_queue_manager_cik.c | 41 ops->initialize = initialize_cpsch_cik; in device_queue_manager_init_cik()
|
D | kfd_device_queue_manager.h | 105 int (*initialize)(struct device_queue_manager *dqm); member
|
D | kfd_device_queue_manager.c | 715 retval = dqm->ops_asic_specific.initialize(dqm); in initialize_cpsch() 1161 dqm->ops.initialize = initialize_cpsch; in device_queue_manager_init() 1184 dqm->ops.initialize = initialize_nocpsch; in device_queue_manager_init() 1203 if (dqm->ops.initialize(dqm) != 0) { in device_queue_manager_init()
|
/linux-4.1.27/drivers/lguest/ |
D | hypercalls.c | 198 static void initialize(struct lg_cpu *cpu) in initialize() function 261 initialize(cpu); in do_hypercalls()
|
D | lguest_user.c | 221 static int initialize(struct file *file, const unsigned long __user *input) in initialize() function 328 return initialize(file, input); in write()
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8723com/ |
D | dm_common.c | 63 dm_pstable->initialize = 0; in rtl8723_dm_init_dynamic_bb_powersaving()
|
/linux-4.1.27/arch/arm/nwfpe/ |
D | ChangeLog | 7 * Only initialize FPE state once in repeat-FP situations. (6%) 66 I now initialize the entire FPE state in the thread structure to 89 * fpa11.c - added code to initialize register types to typeNone
|
/linux-4.1.27/drivers/thermal/ |
D | rockchip_thermal.c | 62 void (*initialize)(void __iomem *reg, enum tshut_polarity p); member 328 .initialize = rk_tsadcv2_initialize, 560 thermal->chip->initialize(thermal->regs, thermal->tshut_polarity); in rockchip_thermal_probe() 665 thermal->chip->initialize(thermal->regs, thermal->tshut_polarity); in rockchip_thermal_resume()
|
/linux-4.1.27/Documentation/driver-model/ |
D | driver.txt | 18 The driver must initialize at least the name and bus fields. It should 19 also initialize the devclass field (when it arrives), so it may obtain 20 the proper linkage internally. It should also initialize as many of 152 addition to dev->platform_data to initialize the driver.
|
D | bus.txt | 15 object of this type. They must initialize the name field, and may 16 optionally initialize the match callback.
|
D | porting.txt | 126 bus driver should initialize the generic device. The most important 127 things to initialize are the bus_id, parent, and bus fields. 245 initialize the necessary fields of the driver: the name and bus 309 /* initialize common driver fields */ 321 Ideally, the bus should only initialize the fields if they are not
|
D | device.txt | 15 The bus should initialize the following fields:
|
D | platform.txt | 128 you will then initialize with resources and platform_device_register().
|
/linux-4.1.27/drivers/media/i2c/ |
D | tvaudio.c | 65 typedef int (*initialize)(struct CHIPSTATE*); typedef 83 initialize initialize; member 1515 .initialize = tda9874a_initialize, 1528 .initialize = tda9875_initialize, 1612 .initialize = tea6320_initialize, 1947 if (desc->initialize != NULL) in tvaudio_probe() 1948 desc->initialize(chip); in tvaudio_probe()
|
/linux-4.1.27/drivers/input/mouse/ |
D | elan_i2c.h | 49 int (*initialize)(struct i2c_client *client); member
|
D | cyapa.h | 188 int (*initialize)(struct cyapa *cyapa); member
|
D | elan_i2c_smbus.c | 493 .initialize = elan_smbus_initialize,
|
D | elan_i2c_i2c.c | 613 .initialize = elan_i2c_initialize,
|
D | cyapa.c | 563 error = cyapa_gen3_ops.initialize(cyapa); in cyapa_initialize() 565 error = cyapa_gen5_ops.initialize(cyapa); in cyapa_initialize()
|
D | cyapa_gen3.c | 1238 .initialize = cyapa_gen3_initialize,
|
D | elan_i2c_core.c | 167 error = data->ops->initialize(client); in __elan_initialize()
|
D | cyapa_gen5.c | 2768 .initialize = cyapa_gen5_initialize,
|
/linux-4.1.27/scripts/coccinelle/null/ |
D | badzero.cocci | 4 //# if it has previously been used with the function used to initialize x. 21 @initialize:ocaml@
|
/linux-4.1.27/include/media/davinci/ |
D | vpbe.h | 141 int (*initialize)(struct device *dev, struct vpbe_device *vpbe_dev); member
|
D | vpbe_osd.h | 330 int (*initialize)(struct osd_state *sd); member
|
/linux-4.1.27/Documentation/devicetree/bindings/mips/ |
D | cpu_irq.txt | 3 On MIPS the mips_cpu_irq_of_init() helper can be used to initialize the 8 CPU
|
/linux-4.1.27/Documentation/fb/ |
D | vt8623fb.txt | 38 Suspend/resume works on systems that initialize video card during resume and
|
D | arkfb.txt | 41 Suspend/resume works on systems that initialize video card during resume and
|
D | s3fb.txt | 50 Suspend/resume works on systems that initialize video card during resume and
|
D | intelfb.txt | 96 This will initialize the framebuffer to 800x600 at 32bpp and 75Hz. The
|
D | intel810.txt | 187 This will initialize the framebuffer to 1024x768 at 8bpp. The framebuffer
|
/linux-4.1.27/drivers/media/platform/davinci/ |
D | vpbe.c | 664 if (NULL != osd_device->ops.initialize) { in vpbe_initialize() 665 err = osd_device->ops.initialize(osd_device); in vpbe_initialize() 817 .initialize = vpbe_initialize,
|
D | vpbe_display.c | 1409 if (NULL != disp_dev->vpbe_dev->ops.initialize) { in vpbe_display_probe() 1410 err = disp_dev->vpbe_dev->ops.initialize(&pdev->dev, in vpbe_display_probe()
|
D | vpbe_osd.c | 1533 .initialize = osd_initialize,
|
/linux-4.1.27/Documentation/devicetree/bindings/video/ |
D | atmel,lcdc.txt | 20 - display: a display node is required to initialize the lcd panel
|
/linux-4.1.27/Documentation/mtd/ |
D | spi-nor.txt | 60 initialize the necessary fields for spi_nor{}. Please see
|
/linux-4.1.27/drivers/net/wireless/rt2x00/ |
D | rt2800soc.c | 192 .initialize = rt2x00mmio_initialize,
|
D | rt2800pci.c | 353 .initialize = rt2x00mmio_initialize,
|
D | rt2x00.h | 544 int (*initialize) (struct rt2x00_dev *rt2x00dev); member
|
D | rt2800usb.c | 873 .initialize = rt2x00usb_initialize,
|
D | rt2x00dev.c | 1165 status = rt2x00dev->ops->lib->initialize(rt2x00dev); in rt2x00lib_initialize()
|
D | rt2500usb.c | 1845 .initialize = rt2x00usb_initialize,
|
D | rt2400pci.c | 1744 .initialize = rt2x00mmio_initialize,
|
D | rt2500pci.c | 2043 .initialize = rt2x00mmio_initialize,
|
D | rt73usb.c | 2333 .initialize = rt2x00usb_initialize,
|
D | rt61pci.c | 3000 .initialize = rt2x00mmio_initialize,
|
/linux-4.1.27/Documentation/hwmon/ |
D | max6650 | 55 registers then. If your board BIOS doesn't initialize the chip, or you want
|
D | amc6821 | 98 If your board BIOS doesn't initialize the chip, or you want
|
D | submitting-patches | 92 completely initialize your chip first, then create sysfs entries and register
|
D | lm85 | 94 exposed to user control. The BIOS should initialize them to the correct
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8723ae/ |
D | dm.c | 684 static u8 initialize; in rtl8723e_dm_rf_saving() local 687 if (initialize == 0) { in rtl8723e_dm_rf_saving() 699 initialize = 1; in rtl8723e_dm_rf_saving()
|
/linux-4.1.27/arch/s390/kernel/ |
D | head64.S | 38 # Save ipl parameters, clear bss memory, initialize storage key for kernel pages,
|
D | head.S | 100 st %r2,4(%r6) # initialize CCW data addresses
|
D | sclp.S | 215 # initialize mto
|
/linux-4.1.27/drivers/iio/ |
D | Kconfig | 49 are used to initialize capture of samples to push into
|
/linux-4.1.27/Documentation/gpio/ |
D | consumer.txt | 45 * GPIOD_ASIS or 0 to not initialize the GPIO at all. The direction must be set 47 * GPIOD_IN to initialize the GPIO as input. 48 * GPIOD_OUT_LOW to initialize the GPIO as output with a value of 0. 49 * GPIOD_OUT_HIGH to initialize the GPIO as output with a value of 1.
|
D | driver.txt | 133 the irqchip can initialize. E.g. .dev and .can_sleep shall be set up
|
D | gpio-legacy.txt | 110 If you want to initialize a structure with an invalid GPIO number, use 407 with gpio_get_value(), for example to initialize or update driver state
|
/linux-4.1.27/arch/avr32/boards/atstk1000/ |
D | Kconfig | 41 and means you can't initialize the on-board QVGA display.
|
/linux-4.1.27/drivers/usb/atm/ |
D | Kconfig | 62 and reception as module parameters. You may need to initialize
|
/linux-4.1.27/scripts/ |
D | spelling.txt | 506 initalise||initialize 507 initalize||initialize 513 initilize||initialize 538 intialize||initialize
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/ |
D | arch_timer.txt | 30 - arm,cpu-registers-not-fw-configured : Firmware does not initialize
|
/linux-4.1.27/Documentation/vm/ |
D | overcommit-accounting | 25 without having to initialize every page.
|
D | numa | 144 or some subsystems would fail to initialize if they attempted to allocated
|
/linux-4.1.27/drivers/staging/iio/Documentation/ |
D | overview.txt | 44 processor periodic interrupt. A single trigger may initialize data
|
/linux-4.1.27/Documentation/networking/ |
D | gen_stats.txt | 96 3) Now initialize a new estimator:
|
D | nfc.txt | 62 * activate_target - select and initialize one of the targets found
|
D | ieee802154.txt | 146 1. Add IEEE802.15.4 interface and initialize PANid;
|
D | ppp_generic.txt | 100 Generally a user-level process will initialize the underlying 125 however it wishes. The channel should initialize the `mtu' and
|
D | altera_tse.txt | 27 initialize, setup transmits, receives, and interrupt handling primitives for
|
D | z8530drv.txt | 285 Please note that you can initialize the board only once after boot
|
D | filter.txt | 1158 Program that doesn't initialize R0 before exiting: 1173 Program that doesn't initialize stack before passing its address into function:
|
/linux-4.1.27/Documentation/serial/ |
D | n_gsm.txt | 13 1- initialize the modem in 0710 mux mode (usually AT+CMUX= command) through
|
/linux-4.1.27/net/ipx/ |
D | Kconfig | 49 bind call. So applications should always initialize the node field
|
/linux-4.1.27/Documentation/locking/ |
D | lockdep-design.txt | 236 initialize locks. These two problems are illustrated below: 252 such as __SPIN_LOCK_UNLOCKED(). Failure to properly initialize 258 initialize your locks.
|
D | ww-mutex-design.txt | 53 w/w mutexes, since it is required to initialize the acquire context. 339 - Calling ww_acquire_init to initialize a second ww_acquire_ctx before
|
D | mutex-design.txt | 121 Dynamically initialize the mutex:
|
/linux-4.1.27/Documentation/power/ |
D | video.txt | 48 (3) systems that initialize video card into vga text mode and where 72 initialize the display in console mode. If you are in X, you can switch
|
D | devices.txt | 368 (DMA, IRQs), saved enough state that they can re-initialize or restore previous
|
D | runtime_pm.txt | 304 - initialize the device runtime PM fields in 'struct dev_pm_info'
|
D | pci.txt | 326 prepare the device for power management and initialize the fields of struct
|
/linux-4.1.27/drivers/mfd/ |
D | omap-usb-host.c | 693 goto initialize; in usbhs_omap_probe() 808 initialize: in usbhs_omap_probe()
|
D | Kconfig | 1192 This driver uses board-specific data to initialize the resources
|
/linux-4.1.27/Documentation/arm/SA1100/ |
D | Assabet | 74 To initialize the flash directory: 78 To initialize the non-volatile settings, like whether you want to use BOOTP or
|
/linux-4.1.27/Documentation/filesystems/ |
D | inotify.txt | 30 want: Users initialize inotify, once, and add n watches, requiring but one
|
D | vfs.txt | 138 owner: for internal VFS use: you should initialize this to THIS_MODULE in 141 next: for internal VFS use: you should initialize this to NULL 190 must initialize this properly. 241 for struct inode and initialize it. If this function is not 864 implement. The open() method is a good place to initialize the
|
D | seq_file.txt | 265 p->foo = bar; /* initialize my stuff */
|
D | porting | 358 initialize the former in inode_init_always(), so just leave it alone in
|
D | relay.txt | 336 initialize the next sub-buffer if appropriate 2) finalize the previous
|
D | ext4.txt | 330 noinit_itable Do not initialize any uninitialized inode table
|
/linux-4.1.27/Documentation/sound/oss/ |
D | AudioExcelDSP16 | 16 the Audio Excel hardware that you want to initialize. Check the IRQ/DMA/MIRQ
|
D | SoundPro | 45 initialize the card, and use the kernel module form of the sound
|
D | Opti | 57 to initialize the card.
|
D | README.OSS | 354 1) Boot DOS so the card's DOS drivers have a chance to initialize it. 370 Another way to initialize PnP cards without DOS/Win95 is a Linux based 609 (without need to use isapnptools or DOS to initialize it). All OPTi 623 initialize it). CS4236 is an enhanced (compatible) version of CS4232. 669 how the card must be initialized. It cannot initialize unknown cards 1136 _after_ boot (the driver doesn't initialize it during boot). 1396 Just use the DOS based driver to initialize the card to a known state, then use
|
/linux-4.1.27/Documentation/spi/ |
D | spi-summary | 205 maybe coupling it with code to initialize pin configurations, so that 456 routines are available to allocate and zero-initialize an spi_message 478 The driver will initialize the fields of that spi_master, including the 481 also initialize its own internal state. (See below about bus numbering 484 After you initialize the spi_master, then use spi_register_master() to
|
/linux-4.1.27/Documentation/isdn/ |
D | README.concap | 96 - initialize (open) the encapsulation protocol instance for use. 117 /* initialize the protocol's data. To be called at interface startup
|
D | README.gigaset | 328 usb_gigaset 3-2:1.0: Could not initialize the device.
|
D | INTERFACE | 75 initialize this field to 0.
|
/linux-4.1.27/Documentation/scsi/ |
D | ChangeLog.arcmsr | 44 ** increcct adapter count if adapter initialize fail.
|
D | libsas.txt | 53 Then as you go along and initialize your phys you also 54 initialize the sas_phy struct, along with your own
|
D | ChangeLog.megaraid | 9 and re-initialize its internal RAID structure. 11 initialize the adapter during kdump's second kernel boot
|
D | ChangeLog.1992-1997 | 220 fixed, should initialize correctly if left running, now loadable, 758 * buslogic.c: Use cmd_per_lun field - initialize to different 1195 instead of explicit list to initialize and attach devices to high 1273 initialize. Use this instead of passing memory_start, memory_end 1861 cards. Support for 0ws jumper. Correctly initialize
|
D | ChangeLog.megaraid_sas | 273 1. Add the 3 mins timeout during the controller initialize.
|
D | scsi_mid_low_api.txt | 129 to control, the LLD will initialize the HBA and then register a new host
|
D | ChangeLog.lpfc | 572 LP1050 would initialize correctly.
|
/linux-4.1.27/Documentation/x86/x86_64/ |
D | boot-options.txt | 209 off Don't initialize and use any kind of IOMMU. 234 noagp Don't initialize the AGP driver and use full aperture.
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | hda_codec.txt | 242 patch is called. The patch callback should initialize the codec and 264 build_controls to initialize the hardware.
|
D | HD-Audio.txt | 402 this file, the driver re-initialize and parses the codec tree 515 initialize SSID properly.
|
D | ALSA-Configuration.txt | 1438 to initialize/use ac97 although it's not detected. In such a
|
/linux-4.1.27/Documentation/i2c/busses/ |
D | i2c-parport | 30 parameter is missing, the driver will simply fail to initialize.
|
/linux-4.1.27/Documentation/ia64/ |
D | efirtc.txt | 24 to initialize the system view of the time during boot.
|
D | err_inject.txt | 402 /* initialize the semaphore to 1: */
|
/linux-4.1.27/drivers/staging/rtl8723au/hal/ |
D | odm.c | 894 pDM_PSTable->initialize = 0; in odm23a_DynBBPSInit() 909 if (pDM_PSTable->initialize == 0) { in ODM_RF_Saving23a() 918 pDM_PSTable->initialize = 1; in ODM_RF_Saving23a()
|
/linux-4.1.27/Documentation/watchdog/ |
D | watchdog-kernel-api.txt | 216 To initialize the timeout field, the following function can be used: 221 The watchdog_init_timeout function allows you to initialize the timeout field
|
/linux-4.1.27/drivers/staging/rtl8723au/include/ |
D | odm.h | 140 u8 initialize; member
|
/linux-4.1.27/Documentation/ |
D | local_ops.txt | 171 /* initialize the timer that will increment the counter */
|
D | pnp.txt | 153 - call this to initialize the PnP structure
|
D | media-framework.txt | 104 Drivers initialize entities by calling 119 media_entity_init. The function will initialize the other pads fields.
|
D | eisa.txt | 163 initialize the device in such conditions.
|
D | debugging-via-ohci1394.txt | 86 connections and fully initialize all FireWire hardware __before__ the
|
D | kref.txt | 20 You must initialize the kref after you allocate it. To do this, call
|
D | kmemleak.txt | 143 kmemleak_init - initialize kmemleak
|
D | kobject.txt | 116 Code which creates a kobject must, of course, initialize that object. Some 153 There is a helper function to both initialize and add the kobject to the
|
D | clk.txt | 236 may be desirable to statically initialize some clock data. This
|
D | nommu-mmap.txt | 131 initialize the contents of a page - depending on the write-usage of the
|
D | cpu-hotplug.txt | 363 callbacks as well as initialize the already online CPUs.
|
D | DMA-API-HOWTO.txt | 204 3) Ignore this device and do not initialize it.
|
D | kernel-parameters.txt | 431 off - do not initialize any AMD IOMMU found in
|
/linux-4.1.27/Documentation/devicetree/bindings/net/ |
D | keystone-netcp.txt | 113 will only initialize these ports and attach PHY
|
/linux-4.1.27/drivers/staging/rtl8188eu/hal/ |
D | odm.c | 854 if (pDM_PSTable->initialize == 0) { in ODM_RF_Saving() 859 pDM_PSTable->initialize = 1; in ODM_RF_Saving()
|
/linux-4.1.27/Documentation/video4linux/ |
D | v4l2-framework.txt | 93 Registration will initialize the v4l2_device struct. If the dev->driver_data 293 Afterwards you need to initialize subdev->name with a unique name and set the 296 If integration with the media framework is needed, you must initialize the 484 V4L2_SUBDEV_USES_EVENTS v4l2_subdev::flags and initialize 696 If integration with the media framework is needed, you must initialize the 733 videobuf queue initialize function: if videobuf has to wait for a frame to
|
D | videobuf | 137 first step is in the open() function, which must initialize the
|
/linux-4.1.27/Documentation/networking/caif/ |
D | spi_porting.txt | 170 /* Here you should initialize your SPI device by providing the
|
/linux-4.1.27/drivers/staging/rtl8188eu/include/ |
D | odm.h | 145 u8 initialize; member
|
/linux-4.1.27/Documentation/rapidio/ |
D | rapidio.txt | 95 In order to initialize the RapidIO subsystem, a platform must initialize and
|
/linux-4.1.27/Documentation/PCI/ |
D | pci.txt | 48 Allocate and initialize shared control data (pci_allocate_coherent()) 244 Allocate and initialize shared control data (pci_allocate_coherent()) 364 this is often just another intermediate step to initialize a device.
|
D | PCIEBUS-HOWTO.txt | 112 Below is sample service driver code to initialize the port service
|
D | pci-error-recovery.txt | 275 configuration registers to initialize to their default conditions. 291 This call gives drivers the chance to re-initialize the hardware
|
D | MSI-HOWTO.txt | 111 and initialize device resources. 264 interrupts to further allocate and initialize device resources.
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-block | 225 areas on disk or to initialize drives in a RAID
|
/linux-4.1.27/Documentation/arm/ |
D | Booting | 120 at a 64bit aligned address and initialize it with the boot data. The
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | cpu-drivers.txt | 127 routine must initialize policy->cpus with mask of all possible cpus (Online +
|
/linux-4.1.27/fs/affs/ |
D | Changes | 72 - correctly initialize s_last_bmap
|
/linux-4.1.27/arch/arm/mach-shmobile/include/mach/ |
D | head-kzm9g.txt | 304 LIST "initialize DDR interface"
|
/linux-4.1.27/Documentation/hid/ |
D | hiddev.txt | 130 since later kernels automatically initialize the reports from the
|
/linux-4.1.27/Documentation/powerpc/ |
D | qe_firmware.txt | 150 | 3 | General push | Indicates that the s/w has to initialize |
|
/linux-4.1.27/sound/oss/ |
D | msnd_pinnacle.c | 1350 static int initialize(void) in initialize() function 1397 if ((rv = initialize())) in dsp_full_reset()
|
/linux-4.1.27/drivers/edac/ |
D | Kconfig | 385 preloader must initialize the SDRAM before loading
|
/linux-4.1.27/fs/ntfs/ |
D | attrib.c | 776 initialize: in load_attribute_list() 795 goto initialize; in load_attribute_list()
|
/linux-4.1.27/Documentation/trace/ |
D | ftrace-design.txt | 332 to initialize some state, this is the time to do that. Otherwise, this simple
|
/linux-4.1.27/Documentation/input/ |
D | event-codes.txt | 226 EV_FF events are used to initialize a force feedback capable device and to cause
|
/linux-4.1.27/scripts/kconfig/ |
D | zconf.lex.c_shipped | 297 static int yy_init = 0; /* whether we need to initialize */ 1808 /** Allocate and initialize an input buffer state.
|
/linux-4.1.27/Documentation/dmaengine/ |
D | provider.txt | 111 need to initialize a few fields in there:
|
/linux-4.1.27/scripts/genksyms/ |
D | lex.lex.c_shipped | 278 static int yy_init = 0; /* whether we need to initialize */ 1409 /** Allocate and initialize an input buffer state.
|
/linux-4.1.27/scripts/dtc/ |
D | dtc-lexer.lex.c_shipped | 288 static int yy_init = 0; /* whether we need to initialize */ 1676 /** Allocate and initialize an input buffer state.
|
/linux-4.1.27/Documentation/devicetree/ |
D | usage-model.txt | 207 early_init_dt_scan_root() to initialize the DT address space model,
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/ |
D | wifi.h | 2380 u8 initialize; member
|
/linux-4.1.27/lib/ |
D | Kconfig.debug | 1163 help find problems with drivers that do not properly initialize 1660 If ohci1394_dma=early is used as boot parameter, it will initialize
|
/linux-4.1.27/arch/x86/crypto/ |
D | aesni-intel_avx-x86_64.S | 394 # initialize the data pointer offset as zero 1653 # initialize the data pointer offset as zero
|
/linux-4.1.27/Documentation/cgroups/ |
D | cgroups.txt | 195 - in init/main.c, to initialize the root cgroups and initial
|
D | cpusets.txt | 141 - in init/main.c, to initialize the root cpuset at system boot.
|
/linux-4.1.27/Documentation/filesystems/cifs/ |
D | README | 443 name when doing the RFC1001 netbios session initialize.
|
/linux-4.1.27/drivers/net/ethernet/broadcom/bnx2x/ |
D | bnx2x_link.c | 10136 u8 port, initialize = 1; in bnx2x_848x3_config_init() local 10210 initialize = 0; in bnx2x_848x3_config_init() 10236 if (initialize) in bnx2x_848x3_config_init()
|
/linux-4.1.27/drivers/rtc/ |
D | Kconfig | 41 The RTC device that will be used to (re)initialize the system
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | api.txt | 734 Sets the MSR that the Xen HVM guest uses to initialize its hypercall 2391 initialize the HPT. The returned fd can only be written to if the
|
/linux-4.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 1885 doesn't, the driver will create and initialize it. Once the COW file 3782 The fix was to initialize the boot memory manager before allocating
|
/linux-4.1.27/Documentation/security/ |
D | keys.txt | 273 properly initialize keycreate during the login process. Otherwise, they will
|
/linux-4.1.27/drivers/scsi/aic7xxx/ |
D | aic79xx.seq | 560 * handling, we initialize LASTSCB prior to enabling
|
/linux-4.1.27/init/ |
D | Kconfig | 1996 cpu_possible_mask, some of them chose to initialize cpu_possible_mask
|
/linux-4.1.27/drivers/scsi/ |
D | Kconfig | 331 The userspace component needed to initialize the driver, documentation,
|
/linux-4.1.27/arch/x86/ |
D | Kconfig | 1003 be needed by software like XFree86 to initialize some video
|