Searched refs:conflict (Results 1 - 200 of 285) sorted by relevance

12

/linux-4.4.14/arch/x86/kernel/
H A Dresource.c10 return; /* no conflict */ resource_clip()
18 /* Keep the area above or below the conflict, whichever is larger */ resource_clip()
/linux-4.4.14/arch/um/include/shared/
H A Dkern.h12 * only into kernel code, and user-space includes conflict with kernel
/linux-4.4.14/kernel/
H A Dresource.c207 /* Return the conflict entry if you can't request it */ __request_resource()
290 * Returns 0 for success, conflict resource on error.
294 struct resource *conflict; request_resource_conflict() local
297 conflict = __request_resource(root, new); request_resource_conflict()
299 return conflict; request_resource_conflict()
311 struct resource *conflict; request_resource() local
313 conflict = request_resource_conflict(root, new); request_resource()
314 return conflict ? -EBUSY : 0; request_resource()
648 struct resource *conflict; reallocate_resource() local
672 conflict = __request_resource(root, old); reallocate_resource()
673 BUG_ON(conflict); reallocate_resource()
809 * Returns 0 on success, conflict resource if the resource can't be inserted.
811 * This function is equivalent to request_resource_conflict when no conflict
812 * happens. If a conflict happens, and the conflicting resources
819 struct resource *conflict; insert_resource_conflict() local
822 conflict = __insert_resource(parent, new); insert_resource_conflict()
824 return conflict; insert_resource_conflict()
836 struct resource *conflict; insert_resource() local
838 conflict = insert_resource_conflict(parent, new); insert_resource()
839 return conflict ? -EBUSY : 0; insert_resource()
857 struct resource *conflict; insert_resource_expand_to_fit() local
859 conflict = __insert_resource(root, new); insert_resource_expand_to_fit()
860 if (!conflict) insert_resource_expand_to_fit()
862 if (conflict == root) insert_resource_expand_to_fit()
865 /* Ok, expand resource to cover the conflict, then try again .. */ insert_resource_expand_to_fit()
866 if (conflict->start < new->start) insert_resource_expand_to_fit()
867 new->start = conflict->start; insert_resource_expand_to_fit()
868 if (conflict->end > new->end) insert_resource_expand_to_fit()
869 new->end = conflict->end; insert_resource_expand_to_fit()
871 printk("Expanded resource %s due to conflict with %s\n", new->name, conflict->name); insert_resource_expand_to_fit()
940 struct resource *conflict; __reserve_region_with_split() local
954 conflict = __request_resource(parent, res); __reserve_region_with_split()
955 if (!conflict) { __reserve_region_with_split()
963 /* conflict covered whole area */ __reserve_region_with_split()
964 if (conflict->start <= res->start && __reserve_region_with_split()
965 conflict->end >= res->end) { __reserve_region_with_split()
972 if (conflict->start > res->start) { __reserve_region_with_split()
974 res->end = conflict->start - 1; __reserve_region_with_split()
975 if (conflict->end < end) { __reserve_region_with_split()
982 next_res->start = conflict->end + 1; __reserve_region_with_split()
987 res->start = conflict->end + 1; __reserve_region_with_split()
1080 struct resource *conflict; __request_region() local
1082 conflict = __request_resource(parent, res); __request_region()
1083 if (!conflict) __request_region()
1085 if (conflict != parent) { __request_region()
1086 if (!(conflict->flags & IORESOURCE_BUSY)) { __request_region()
1087 parent = conflict; __request_region()
1091 if (conflict->flags & flags & IORESOURCE_MUXED) { __request_region()
1285 * When a conflict is detected between any existing resources and the newly
1293 struct resource *conflict, **ptr; devm_request_resource() local
1301 conflict = request_resource_conflict(root, new); devm_request_resource()
1302 if (conflict) { devm_request_resource()
1304 new, conflict->name, conflict); devm_request_resource()
H A Dkexec_file.c404 * Make sure this does not conflict with any of existing locate_mem_hole_top_down()
438 * Make sure this does not conflict with any of existing locate_mem_hole_bottom_up()
H A Dkexec_core.c330 * not conflict with either the destination addresses kimage_alloc_normal_control_pages()
396 * not conflict with either the destination addresses kimage_alloc_crash_control_pages()
/linux-4.4.14/drivers/pci/
H A Dsetup-res.c81 * disable decoding so that a half-updated BAR won't conflict pci_update_resource()
116 struct resource *root, *conflict; pci_claim_resource() local
132 conflict = request_resource_conflict(root, res); pci_claim_resource()
133 if (conflict) { pci_claim_resource()
134 dev_info(&dev->dev, "can't claim BAR %d %pR: address conflict with %s %pR\n", pci_claim_resource()
135 resource, res, conflict->name, conflict); pci_claim_resource()
174 struct resource *root, *conflict; pci_revert_fw_address() local
197 conflict = request_resource_conflict(root, res); pci_revert_fw_address()
198 if (conflict) { pci_revert_fw_address()
200 resno, res, conflict->name, conflict); pci_revert_fw_address()
H A Dprobe.c2198 struct resource *parent_res, *conflict; pci_bus_insert_busn_res() local
2211 conflict = request_resource_conflict(parent_res, res); pci_bus_insert_busn_res()
2213 if (conflict) pci_bus_insert_busn_res()
2217 parent_res, conflict->name, conflict); pci_bus_insert_busn_res()
2219 return conflict == NULL; pci_bus_insert_busn_res()
/linux-4.4.14/drivers/block/drbd/
H A Ddrbd_interval.h15 * ignore for conflict detection */
H A Ddrbd_protocol.h32 P_SUPERSEDED = 0x18, /* Used in proto C, two-primaries conflict detection */
136 * P_SUPERSEDED (proto C, two-primaries conflict detection)
H A Ddrbd_req.c122 /* finally remove the request from the conflict detection drbd_req_destroy()
301 * conflict in a multi-primary setup. */ drbd_req_complete()
804 /* If this node has already detected the write conflict, the __req_mod()
967 * currently know about. Wait for any requests to complete which conflict with
H A Ddrbd_req.h179 * transfer log. We should restructure the code so this conflict does
/linux-4.4.14/arch/c6x/include/asm/
H A Dtraps.h22 #define EXCEPT_CAUSE_RCX (1 << 4) /* resource conflict exception */
/linux-4.4.14/drivers/media/rc/keymaps/
H A Drc-kworld-plus-tv-analog.c47 conflict with '3' and '4' scancodes
56 Most of them conflict with digits.
/linux-4.4.14/drivers/gpu/vga/
H A Dvgaarb.c175 struct vga_device *conflict; __vga_tryget() local
207 list_for_each_entry(conflict, &vga_list, list) { __vga_tryget()
211 /* Don't conflict with myself */ __vga_tryget()
212 if (vgadev == conflict) __vga_tryget()
215 /* Check if the architecture allows a conflict between those __vga_tryget()
218 if (!vga_conflicts(vgadev->pdev, conflict->pdev)) __vga_tryget()
221 /* We have a possible conflict. before we go further, we must __vga_tryget()
227 if (vgadev->pdev->bus != conflict->pdev->bus) { __vga_tryget()
235 if (conflict->locks & lwants) __vga_tryget()
236 return conflict; __vga_tryget()
242 match = lwants & conflict->owns; __vga_tryget()
256 if (!conflict->bridge_has_one_vga) { __vga_tryget()
257 if ((match & conflict->decodes) & VGA_RSRC_LEGACY_MEM) __vga_tryget()
259 if ((match & conflict->decodes) & VGA_RSRC_LEGACY_IO) __vga_tryget()
263 vga_irq_set_state(conflict, false); __vga_tryget()
271 pci_set_vga_state(conflict->pdev, false, pci_bits, flags); __vga_tryget()
272 conflict->owns &= ~match; __vga_tryget()
276 conflict->owns &= ~VGA_RSRC_NORMAL_MEM; __vga_tryget()
278 conflict->owns &= ~VGA_RSRC_NORMAL_IO; __vga_tryget()
361 struct vga_device *vgadev, *conflict; vga_get() local
381 conflict = __vga_tryget(vgadev, rsrc); vga_get()
383 if (conflict == NULL) vga_get()
387 /* We have a conflict, we wait until somebody kicks the vga_get()
/linux-4.4.14/arch/m68k/fpsp040/
H A Dbugfix.S51 | (cmdreg1b[ 9: 7] != cmdreg3b[9:7])) { /* xu conflict only */
53 | xu conflict and NOT an nu conflict */
98 | (cmdreg1b[9:7] != cmdreg3b[9:7])) { /* xu conflict only */
100 | xu conflict and NOT an nu conflict */
185 | Test the register conflict aspect. If opclass0, check for
197 | Check for cu and nu register conflict. If one exists, this takes
198 | priority over a cu and xu conflict.
212 | Check for cu and xu register conflict.
246 | We have the case in which a conflict exists between the cu src or
357 | a cu and nu conflict taking priority an nu conflict. If either,
368 | We have the case in which a conflict exists between the cu src or
/linux-4.4.14/include/uapi/linux/
H A Dpersonality.h39 * conflict with error returns.
H A Dlibc-compat.h9 * conflict with userspace definitions. If a UAPI header has such conflicting
40 * * For all definitions that conflict with kernel definitions wrap those
H A Dcdrom.h138 /* conflict with SCSI_IOCTL_GET_IDLUN */
/linux-4.4.14/include/linux/platform_data/
H A Dkeypad-omap.h45 #error Group bits in conflict with keynum bits
/linux-4.4.14/arch/parisc/include/asm/
H A Dunistd.h32 document. However! r28 is the result and will conflict with
34 registers r20 -> r26 will conflict with the list so they
/linux-4.4.14/arch/arm/include/asm/
H A Dbug.h12 * We need to be careful not to conflict with those used by other modules and
H A Dmcpm.h308 * cannot be included in asm files. Let's work around the conflict like this.
/linux-4.4.14/sound/oss/
H A Dtrix.c181 printk(KERN_ERR "AudioTrix: MSS I/O port conflict (%x)\n", hw_config->io_base); init_trix_wss()
186 printk(KERN_ERR "AudioTrix: MSS I/O port conflict (%x)\n", hw_config->io_base); init_trix_wss()
299 printk(KERN_ERR "AudioTrix: SB I/O port conflict (%x)\n", hw_config->io_base); probe_trix_sb()
464 printk(KERN_ERR "AudioTrix: Config port I/O conflict\n"); init_trix()
H A Dpss.c192 printk(KERN_ERR "PSS: I/O port conflict\n"); probe_pss()
202 printk(KERN_ERR "PSS: I/O port conflict\n"); probe_pss()
680 printk(KERN_ERR "PSS: CDROM I/O port conflict.\n"); configure_nonsound_components()
751 printk(KERN_ERR "PSS: MPU I/O port conflict\n"); probe_pss_mpu()
H A Daedsp16.c107 don't work for me. Seems to be an IRQ or DMA conflict. Under heavy
112 For what I can say, I have NOT any conflict at irq 7 (under linux I'm
115 I'm pretty sure I have not any conflict, but may be I'm wrong. Who knows!
H A Dsb_common.c722 printk(KERN_WARNING "sb: Interrupt test on IRQ%d failed - Probable IRQ conflict\n", devc->irq); sb_dsp_init()
1212 printk(KERN_ERR "sbmpu: I/O port conflict (%x)\n", hw_config->io_base); probe_sbmpu()
H A Dmsnd_pinnacle.c1159 printk(KERN_ERR LOGNAME ": I/O port conflict\n"); probe_multisound()
1852 printk(KERN_ERR LOGNAME ": Config port 0x%x conflict\n", cfg); msnd_init()
/linux-4.4.14/net/sctp/
H A Dbind_addr.c335 /* Does the address 'addr' conflict with any addresses in
344 int conflict = 0; sctp_bind_addr_conflict() local
363 conflict = sp->pf->cmp_addr(&laddr->a, addr, sp); sctp_bind_addr_conflict()
364 if (conflict) sctp_bind_addr_conflict()
369 return conflict; sctp_bind_addr_conflict()
/linux-4.4.14/drivers/net/ethernet/8390/
H A Dzorro8390.c125 "%s: DMAing conflict [DMAstat:%d][irqlock:%d]\n", zorro8390_get_8390_hdr()
168 netdev_err(dev, "%s: DMAing conflict [DMAstat:%d][irqlock:%d]\n", zorro8390_block_input()
210 netdev_err(dev, "%s: DMAing conflict [DMAstat:%d][irqlock:%d]\n", zorro8390_block_output()
H A Dapne.c398 netdev_err(dev, "DMAing conflict in ne_get_8390_hdr " apne_get_8390_hdr()
445 netdev_err(dev, "DMAing conflict in ne_block_input " apne_block_input()
493 netdev_err(dev, "DMAing conflict in ne_block_output." apne_block_output()
H A Detherh.c317 netdev_err(dev, "DMAing conflict in etherh_block_input: " etherh_block_output()
382 netdev_err(dev, "DMAing conflict in etherh_block_input: " etherh_block_input()
422 netdev_err(dev, "DMAing conflict in etherh_get_header: " etherh_get_header()
H A Dne2k-pci.c488 netdev_err(dev, "DMAing conflict in ne2k_pci_get_8390_hdr " ne2k_pci_get_8390_hdr()
526 netdev_err(dev, "DMAing conflict in ne2k_pci_block_input " ne2k_pci_block_input()
581 netdev_err(dev, "DMAing conflict in ne2k_pci_block_output." ne2k_pci_block_output()
H A Dax88796.c178 netdev_err(dev, "DMAing conflict in %s " ax_get_8390_hdr()
223 "DMAing conflict in %s " ax_block_input()
268 netdev_err(dev, "DMAing conflict in %s." ax_block_output()
H A Dne.c600 netdev_err(dev, "DMAing conflict in ne_get_8390_hdr " ne_get_8390_hdr()
642 netdev_err(dev, "DMAing conflict in ne_block_input " ne_block_input()
717 netdev_err(dev, "DMAing conflict in ne_block_output." ne_block_output()
H A Dmcf8390.c183 netdev_err(dev, "%s: DMAing conflict [DMAstat:%d][irqlock:%d]\n", mcf8390_dmaing_err()
H A Dpcnet_cs.c1130 netdev_err(dev, "DMAing conflict in dma_block_input." dma_get_8390_hdr()
1166 netdev_err(dev, "DMAing conflict in dma_block_input." dma_block_input()
1231 netdev_err(dev, "DMAing conflict in dma_block_output." dma_block_output()
H A Dwd.c249 pr_cont("\nWD80?3: Bus width conflict, %d (probe) != %d (reg report).", wd_probe1()
/linux-4.4.14/drivers/pcmcia/
H A Drsrc_iodyn.c93 /* Check for an already-allocated window that must conflict with iodyn_find_io()
H A Di82365.c787 printk("port conflict at %#lx\n", i365_base); isa_probe()
H A Drsrc_nonstatic.c722 /* Check for an already-allocated window that must conflict with nonstatic_find_io()
/linux-4.4.14/arch/alpha/include/uapi/asm/
H A Dfpu.h36 * Thus, the bits are defined so as not to conflict with the
/linux-4.4.14/include/uapi/asm-generic/
H A Dioctls.h99 * conflict with a Hayes modem-specific ioctl value.
H A Dfcntl.h141 * These cmd values will set locks that conflict with process-associated
/linux-4.4.14/arch/m68k/mvme16x/
H A Drtc.c28 * an ioctl, make sure you don't conflict with SPARC's RTC
/linux-4.4.14/arch/x86/kernel/cpu/
H A Dperf_event_intel_cqm.c469 * If we have group events waiting for an RMID that don't conflict with
597 * them one now provided they don't conflict. intel_cqm_rmid_stabilize()
641 * Deallocate the RMIDs from any events that conflict with @event, and
664 * No conflict? No problem! Leave the event alone. intel_cqm_sched_out_conflicting_events()
736 * or we have event groups that conflict with the ones currently __intel_cqm_rmid_rotate()
849 bool conflict = false; intel_cqm_setup_event() local
867 conflict = true; intel_cqm_setup_event()
870 if (conflict) intel_cqm_setup_event()
H A Dperf_event_intel_uncore_snb.c254 * running counters, so we do not want to conflict with generic uncore
H A Dperf_event.c491 * check that PEBS LBR correction does not conflict with x86_pmu_hw_config()
1852 * using extra reg may conflict without the kernel being
H A Dperf_event_intel.c3201 EVENT_ATTR_STR(tx-conflict, tx_conflict, "event=0x54,umask=0x1");
3206 EVENT_ATTR_STR(el-conflict, el_conflict, "event=0x54,umask=0x1");
/linux-4.4.14/drivers/acpi/
H A Dpci_root.c760 struct resource *res, *conflict, *root = NULL; pci_acpi_root_add_resources() local
778 conflict = insert_resource_conflict(root, res); pci_acpi_root_add_resources()
779 if (conflict) { pci_acpi_root_add_resources()
782 res, conflict->name, conflict); pci_acpi_root_add_resources()
H A Dpci_link.c837 * Penalize IRQ used by ACPI SCI. If ACPI SCI pin attributes conflict with
/linux-4.4.14/drivers/staging/lustre/lustre/osc/
H A Dosc_lock.c1013 struct cl_lock *conflict = NULL; osc_lock_enqueue_wait() local
1059 conflict = scan; osc_lock_enqueue_wait()
1064 if (conflict) { osc_lock_enqueue_wait()
1071 lock, conflict); osc_lock_enqueue_wait()
1072 cl_lock_put(env, conflict); osc_lock_enqueue_wait()
1076 lock, conflict); osc_lock_enqueue_wait()
1078 lu_ref_add(&conflict->cll_reference, "cancel-wait", osc_lock_enqueue_wait()
1080 lock->cll_conflict = conflict; osc_lock_enqueue_wait()
1286 * (LRU pressure, early cancellation, umount, etc.) or due to the conflict
H A Dosc_cache.c631 struct osc_extent *conflict = NULL; osc_extent_find() local
720 conflict = osc_extent_get(ext); osc_extent_find()
786 LASSERT(conflict == NULL); osc_extent_find()
792 } else if (conflict == NULL) { osc_extent_find()
807 if (conflict != NULL) { osc_extent_find()
812 rc = osc_extent_wait(env, conflict, OES_INV); osc_extent_find()
813 osc_extent_put(env, conflict); osc_extent_find()
814 conflict = NULL; osc_extent_find()
/linux-4.4.14/drivers/staging/lustre/lustre/include/lustre/
H A Dll_fiemap.h113 /* Lustre specific flags - use a high bit, don't conflict with upstream flag */
/linux-4.4.14/drivers/staging/lustre/lustre/libcfs/
H A Dlibcfs_lock.c53 * reduce cacheline conflict as possible as we can, that's the
/linux-4.4.14/drivers/uwb/
H A Ddrp.c168 * Evaluate the action to perform using conflict resolution rules
412 /* FIXME: there is a conflict, find uwb_drp_process_target_accepted()
559 /* resolve the conflict */ uwb_drp_process_owner()
793 * group conflict with the RC's reservations.
H A Daddress.c269 * - if the hardware reports a DevAddr conflict
H A Duwbd.c261 * lock. Hold it as little as possible. Not a conflict: it is
H A Dbeacon.c210 * DevAddr conflict), but only the first one is returned.
H A Drsv.c39 [UWB_RSV_STATE_T_CONFLICT] = "t conflict ",
/linux-4.4.14/drivers/video/fbdev/mmp/hw/
H A Dmmp_spi.c164 /* set bus num to 5 to avoid conflict with other spi hosts */ lcd_spi_register()
/linux-4.4.14/arch/tile/kernel/
H A Dhead_32.S174 * This would otherwise likely conflict with other data on the cache
H A Dhead_64.S271 * This would otherwise likely conflict with other data on the cache
/linux-4.4.14/lib/raid6/
H A Dalgos.c220 /* Normal code - use a 2-page allocation to avoid D$ conflict */ raid6_select_algo()
/linux-4.4.14/include/asm-generic/
H A Dqspinlock.h64 * optimizations to be applied without conflict with lockref.
/linux-4.4.14/arch/m68k/bvme6000/
H A Drtc.c29 * an ioctl, make sure you don't conflict with SPARC's RTC
/linux-4.4.14/arch/arm/mach-mvebu/
H A Dmvebu-soc-id.c14 * done before the PCI initialization to avoid any conflict. Once the
/linux-4.4.14/arch/arm/mach-omap1/
H A Dserial.c104 * Note that on Innovator-1510 UART2 pins conflict with USB2.
/linux-4.4.14/drivers/staging/lustre/lustre/obdclass/
H A Dcl_lock.c1214 struct cl_lock *conflict; cl_lock_enqueue_wait() local
1221 conflict = lock->cll_conflict; cl_lock_enqueue_wait()
1227 cl_lock_mutex_get(env, conflict); cl_lock_enqueue_wait()
1228 cl_lock_trace(D_DLMTRACE, env, "enqueue wait", conflict); cl_lock_enqueue_wait()
1229 cl_lock_cancel(env, conflict); cl_lock_enqueue_wait()
1230 cl_lock_delete(env, conflict); cl_lock_enqueue_wait()
1232 while (conflict->cll_state != CLS_FREEING) { cl_lock_enqueue_wait()
1233 rc = cl_lock_state_wait(env, conflict); cl_lock_enqueue_wait()
1237 cl_lock_mutex_put(env, conflict); cl_lock_enqueue_wait()
1238 lu_ref_del(&conflict->cll_reference, "cancel-wait", lock); cl_lock_enqueue_wait()
1239 cl_lock_put(env, conflict); cl_lock_enqueue_wait()
/linux-4.4.14/drivers/gpu/drm/radeon/
H A Dradeon_connectors.c439 struct drm_connector *conflict; radeon_connector_analog_encoder_conflict_solve() local
443 list_for_each_entry(conflict, &dev->mode_config.connector_list, head) { radeon_connector_analog_encoder_conflict_solve()
444 if (conflict == connector) radeon_connector_analog_encoder_conflict_solve()
447 radeon_conflict = to_radeon_connector(conflict); radeon_connector_analog_encoder_conflict_solve()
449 if (conflict->encoder_ids[i] == 0) radeon_connector_analog_encoder_conflict_solve()
453 if (conflict->encoder_ids[i] == encoder->base.id) { radeon_connector_analog_encoder_conflict_solve()
454 if (conflict->status != connector_status_connected) radeon_connector_analog_encoder_conflict_solve()
462 conflict->name); radeon_connector_analog_encoder_conflict_solve()
465 conflict->status = connector_status_disconnected; radeon_connector_analog_encoder_conflict_solve()
466 radeon_connector_update_scratch_regs(conflict, connector_status_disconnected); radeon_connector_analog_encoder_conflict_solve()
471 conflict->name); radeon_connector_analog_encoder_conflict_solve()
H A Dradeon_vm.c486 dev_err(rdev->dev, "bo %p va 0x%010Lx conflict with " radeon_vm_bo_set_addr()
/linux-4.4.14/drivers/pwm/
H A Dpwm-lpc18xx-sct.c82 /* SCT conflict resolution */
137 * when duty_ns == period_ns. LPC18xx SCT allows to set a conflict lpc18xx_pwm_set_conflict_res()
/linux-4.4.14/include/linux/
H A Dvgaarb.h88 * The arbiter will first look for all VGA cards that might conflict
179 * NULL here. In this case, I assume it will not conflict with vga_tryget()
H A Dieee802154.h189 * A PAN identifier conflict has been detected and communicated to the
H A Duwb.h227 * @tiebreaker: conflict tiebreaker for this reservation
/linux-4.4.14/drivers/staging/lustre/lustre/include/
H A Dlustre_fid.h116 * ext3/ldiskfs reserved inode range and does not conflict with IGIF
122 * the ext3/ldiskfs reserved inode range and does not conflict with IGIF
130 * production DNE release, as the objects in this range conflict across all
564 * conflict until 2^64, at which point we wrap the high 24 bits of the SEQ
566 * the risk of conflict.
H A Dlustre_dlm.h653 * As such it's typically called twice: once for the initial conflict
H A Dobd.h570 /* Don't conflict with on-wire flags OBD_BRW_WRITE, etc */
/linux-4.4.14/arch/powerpc/kernel/
H A Dmisc_64.S510 * Invalidate all non-IPROT TLB entries to avoid any TLB conflict.
511 * IPROT TLB entries should be >= PAGE_OFFSET and thus not conflict.
519 subi r10,r10,1 /* Last entry: no conflict with kernel text */
H A Dpci-common.c1096 * Reparent resource children of pr that conflict with res
1204 * Must be a conflict with an existing entry. pci_bus_for_each_resource()
/linux-4.4.14/arch/x86/include/asm/
H A Dpgtable_types.h61 * they do not conflict with each other.
72 * We need a bit which can be stored in pte _and_ not conflict
H A Dcpufeature.h76 /* This range is used for feature bits which conflict or are synthesized */
/linux-4.4.14/fs/dlm/
H A Dplock.c358 /* info.rv from userspace is 1 for conflict, 0 for no-conflict, dlm_posix_get()
/linux-4.4.14/drivers/watchdog/
H A Dsp5100_tco.c373 /* Check MMIO address conflict */
407 /* Check MMIO address conflict */
/linux-4.4.14/drivers/usb/core/
H A Dquirks.c108 /* Samsung Android phone modem - ID conflict with SPH-I500 */
/linux-4.4.14/drivers/scsi/pcmcia/
H A Dqlogic_stub.c287 /* these conflict with other cards! */
/linux-4.4.14/drivers/staging/lustre/include/linux/libcfs/
H A Dlibcfs_ioctl.h102 /* FIXME check conflict with lustre_lib.h */
/linux-4.4.14/drivers/staging/lustre/lustre/lclient/
H A Dglimpse.c122 * deadlock (because they never conflict with other cl_glimpse_lock()
/linux-4.4.14/drivers/memory/
H A Djz4780-nemc.c313 * Iterate over child devices, check that they do not conflict with jz4780_nemc_probe()
/linux-4.4.14/arch/x86/xen/
H A Dsetup.c640 * conflict with the to be used E820 map.
878 * Check for a conflict of the hypervisor supplied page tables with xen_memory_setup()
885 /* Check for a conflict of the initrd with the target E820 map. */ xen_memory_setup()
892 xen_raw_console_write("Can't find new memory area for initrd needed due to E820 map conflict\n"); xen_memory_setup()
/linux-4.4.14/include/net/
H A Dslhc_vj.h66 * Packet types (must not conflict with IP protocol version)
/linux-4.4.14/arch/sh/drivers/pci/
H A Dpci.c135 printk(KERN_WARNING "Skipping PCI bus scan due to resource conflict\n"); register_pci_controller()
/linux-4.4.14/arch/mips/pci/
H A Dpci.c217 "Skipping PCI bus scan due to resource conflict\n"); register_pci_controller()
/linux-4.4.14/arch/arm/net/
H A Dbpf_jit_32.h122 * We need to be careful not to conflict with those used by other modules
/linux-4.4.14/arch/arm/plat-pxa/
H A Dmfp.c186 /* run-mode pull settings will conflict with MFPR bits of mfp_config()
/linux-4.4.14/arch/blackfin/kernel/
H A Dbfin_gpio.c251 pr_err("pin group conflict! request pin %d func %d conflict with pin %d func %d\n", portmux_group_check()
302 pr_err("pin group conflict! request pin %d func %d conflict with pin %d func %d\n", portmux_group_check()
/linux-4.4.14/fs/
H A Dlocks.c733 /* POSIX locks owned by the same process do not conflict with posix_locks_conflict()
751 /* FLOCK locks referring to the same filp do not conflict with flock_locks_conflict()
996 /* If we're just looking for a conflict, we're done. */ __posix_lock_file()
1198 * Searches the inode's list of locks to find any POSIX locks which conflict.
1237 * Searches the inode's list of locks to find any POSIX locks which conflict.
1572 * an existing open that would conflict with the
1579 * conflict with the lease we're trying to set.
1623 * there's some chance of a conflict--we'd rather not generic_add_lease()
2022 /* Report the first existing lock that would conflict with l.
2248 /* Report the first existing lock that would conflict with l.
H A Dlibfs.c506 /* warn if it tries to conflict with the root inode */ simple_fill_super()
/linux-4.4.14/drivers/acpi/apei/
H A Dapei-base.c297 /* Collect all resources requested, to avoid conflict */
487 * conflict. apei_resources_request()
H A Deinj.c366 * This will cause resource conflict with regular memory. So __einj_error_trigger()
/linux-4.4.14/drivers/gpu/drm/i915/
H A Di915_gem_stolen.c242 * conflict with the PCI Bus. i915_stolen_to_physical()
255 DRM_ERROR("conflict detected with stolen region: [0x%08x - 0x%08x]\n", i915_stolen_to_physical()
/linux-4.4.14/fs/hfsplus/
H A Dxattr.c870 * ensuring it doesn't conflict with another namespace). hfsplus_osx_getxattr()
893 * ensuring it doesn't conflict with another namespace). hfsplus_osx_setxattr()
/linux-4.4.14/net/bridge/
H A Dbr_vlan.c769 /* Update default_pvid config only if we do not conflict with __br_vlan_set_default_pvid()
787 /* Update default_pvid config only if we do not conflict with __br_vlan_set_default_pvid()
/linux-4.4.14/drivers/rtc/
H A Drtc-stmp3xxx.c79 * To handle the resource conflict, the RTC driver will create another
H A Drtc-cmos.c605 /* Claim I/O ports ASAP, minimizing conflict with legacy driver. cmos_do_probe()
/linux-4.4.14/drivers/staging/comedi/drivers/
H A Dii_pci20kc.c432 dev_warn(dev->class_dev, "%s: I/O mem conflict (%#x,%u)\n", ii20k_attach()
H A Ddas16.c627 /* make sure scan_begin_src and convert_src dont conflict */ das16_cmd_test()
/linux-4.4.14/drivers/video/fbdev/aty/
H A Dradeonfb.h392 * by a semaphore (currently the console semaphore) so that no conflict
/linux-4.4.14/drivers/ide/
H A Dht6560b.c261 * Prefetch mode and unmask irq seems to conflict ht_set_prefetch()
/linux-4.4.14/drivers/pnp/
H A Dquirks.c244 * This patch disables the PNP resources that conflict with PCI BARs quirk_system_pci_resources()
H A Dresource.c158 /* Two ranges conflict if one doesn't end before the other starts */
/linux-4.4.14/drivers/gpu/drm/msm/
H A Dmsm_gem_submit.c26 /* make sure these don't conflict w/ MSM_SUBMIT_BO_x */
/linux-4.4.14/fs/cifs/
H A Dcifs_unicode.h57 * not conflict (although almost does) with the mapping above.
/linux-4.4.14/include/net/irda/
H A Dirda_device.h55 /* Some non-standard interface flags (should not conflict with any in if.h) */
/linux-4.4.14/arch/mips/include/asm/
H A Dcpu.h361 #define MIPS_CPU_VCE 0x00000400ull /* virt. coherence conflict possible */
/linux-4.4.14/drivers/firmware/efi/libstub/
H A Darm-stub.c302 * any allocation we choose, and eliminate the risk of a conflict after kexec.
/linux-4.4.14/tools/testing/selftests/timers/
H A Dleap-a-day.c24 * may conflict in their commands to the kernel.
/linux-4.4.14/drivers/scsi/
H A Dconstants.c542 {0x2008, "Access denied - enrollment conflict"},
545 {0x200B, "Access denied - ACL LUN conflict"},
658 {0x2C06, "Persistent prevent conflict"},
661 {0x2C09, "Previous reservation conflict status"},
1134 {0x7479, "Security conflict in translated device"},
H A Dsun3_scsi.c204 printk("scsi%d: dma conflict\n", default_instance->host_no); scsi_sun3_intr()
H A Ddc395x.h164 #define SCSI_STAT_RESCONFLICT 0x18 /* Reservation conflict */
H A Dpmcraid.h970 "Data Protect, exposed mode device resource address conflict"},
H A Dgdth.h270 #define S_CACHE_RESERV -24 /* cache: reserv. conflict */
H A Dscsi_error.c1849 * execute reservation conflict processing code scsi_decide_disposition()
1927 "reservation conflict\n"); scsi_decide_disposition()
H A Dscsi_transport_spi.c838 * (reservation conflict, device not ready, etc) just spi_dv_device_get_echo_buffer()
/linux-4.4.14/drivers/staging/unisys/visorbus/
H A Dvisorchannel.c83 * conflict resource when requesting its full mem region. Since visorchannel_create_guts()
/linux-4.4.14/drivers/staging/lustre/lnet/lnet/
H A Dacceptor.c82 * conflict with 'accept(2)', but kernel acceptor still uses 'accept' lnet_acceptor_get_tunables()
/linux-4.4.14/drivers/iommu/
H A Diova.c319 * reference a particular iova and hence no conflict. find_iova()
/linux-4.4.14/drivers/gpu/drm/qxl/
H A Dqxl_release.c456 * Since we never really allocated a context and we don't want to conflict, qxl_release_fence_buffer_objects()
/linux-4.4.14/drivers/net/wireless/hostap/
H A Dhostap_cs.c633 /* PCMCIA_DEVICE_MANF_CARD(0xc00f, 0x0000), conflict with pcnet_cs */
/linux-4.4.14/drivers/net/wireless/iwlwifi/
H A Diwl-eeprom-read.c90 * EEPROM chip, not a single event, so even reads could conflict if they
/linux-4.4.14/drivers/net/wan/
H A Dfarsync.h33 * conflict with other similar drivers and I chosen to use "fst_" for this
/linux-4.4.14/drivers/net/wireless/ath/ath10k/
H A Dhw.h115 /* HTT id conflict fix for management frames over HTT */
/linux-4.4.14/drivers/net/ethernet/sfc/
H A Dqt202x_phy.c94 /* Some cables have EEPROMs that conflict with the qt2025c_wait_heartbeat()
/linux-4.4.14/drivers/char/
H A Dgenrtc.c65 * an ioctl, make sure you don't conflict with SPARC's RTC
H A Drtc.c129 * an ioctl, make sure you don't conflict with SPARC's RTC
/linux-4.4.14/drivers/char/mwave/
H A Dtp3780i.c365 } else { /* no conflict just release */ tp3780I_EnableDSP()
/linux-4.4.14/arch/alpha/boot/
H A Dbootpz.c346 in conflict. start_kernel()
/linux-4.4.14/arch/c6x/kernel/
H A Dtraps.c101 { "Oops - resource conflict", SIGILL, ILL_ILLOPC },
/linux-4.4.14/arch/cris/arch-v32/drivers/
H A Daxisflashmap.c320 * but its size must be configured as 0 so as not to conflict init_axis_flash()
/linux-4.4.14/lib/
H A Ddecompress_unxz.c203 /* Not static to avoid a conflict with the prototype in the Linux headers. */ memmove()
H A Dkobject.c453 * won't conflict with other kobjects.
/linux-4.4.14/sound/core/seq/
H A Dseq_virmidi.c33 * has its own input buffer, so that no conflict would occur. The drain
/linux-4.4.14/arch/powerpc/perf/
H A Dpower6-pmu.c217 /* check for conflict on this byte of event bus */ p6_compute_mmcr()
/linux-4.4.14/sound/pci/ice1712/
H A Dwtm.c597 /*init mutex for dac mute conflict*/ wtm_init()
/linux-4.4.14/drivers/tty/
H A Dn_r3964.c565 TRACE_PE("TX_REQUEST - init conflict"); receive_char()
571 "conflict!? Switching to SLAVE mode " receive_char()
H A Dsynclinkmp.c3554 printk( "%s(%d):%s mem addr conflict, Addr=%08X\n", claim_resources()
3563 printk( "%s(%d):%s lcr mem addr conflict, Addr=%08X\n", claim_resources()
3572 printk( "%s(%d):%s sca mem addr conflict, Addr=%08X\n", claim_resources()
3581 printk( "%s(%d):%s stat/ctrl mem addr conflict, Addr=%08X\n", claim_resources()
/linux-4.4.14/drivers/md/
H A Ddm-table.c1097 * profile the new profile should not conflict. dm_table_register_integrity()
1100 DMWARN("%s: conflict with existing integrity profile: " dm_table_register_integrity()
/linux-4.4.14/drivers/input/mouse/
H A Dsentelic.c47 * Make sure that the value being sent to FSP will not conflict with
66 * Make sure that the value being sent to FSP will not conflict with certain
/linux-4.4.14/drivers/mfd/
H A Dlpc_ich.c864 * We don't check for resource conflict globally. There are 2 or 3 independent
959 pr_warn("Resource conflict(s) found affecting %s\n", lpc_ich_init_gpio()
/linux-4.4.14/drivers/net/ethernet/amd/
H A Datarilance.c256 avoid conflict with ROM
694 /* If the packet buffer at offset 'o' would conflict with the reserved area lance_init_ring()
/linux-4.4.14/net/ipv6/
H A Dip6_vti.c391 * 1 if conflict,
712 * %-EEXIST if changing a tunnel's parameters would cause a conflict
H A Dip6_tunnel.c969 * 1 if conflict,
1450 * %-EEXIST if changing a tunnel's parameters would cause a conflict
/linux-4.4.14/sound/isa/msnd/
H A Dmsnd_pinnacle.c229 snd_printk(KERN_ERR LOGNAME ": I/O port conflict\n"); snd_msnd_probe()
950 printk(KERN_ERR LOGNAME ": Config port 0x%lx conflict\n", snd_msnd_isa_probe()
/linux-4.4.14/drivers/target/
H A Dtarget_core_pr.c134 int conflict = 0; target_check_scsi2_reservation_conflict() local
172 conflict = 1; target_check_scsi2_reservation_conflict()
181 * regardless of initiator shall conflict and shall terminate target_check_scsi2_reservation_conflict()
185 conflict = (list_empty(&pr_tmpl->registration_list)) ? 0 : 1; target_check_scsi2_reservation_conflict()
189 if (conflict) { target_check_scsi2_reservation_conflict()
3590 * PERSISTENT RESERVE OUT commands shall conflict regardless of target_scsi3_emulate_pr_out()
4111 * PERSISTENT RESERVE OUT commands shall conflict regardless of target_scsi3_emulate_pr_in()
/linux-4.4.14/drivers/s390/cio/
H A Ddevice.c545 /* Prevent conflict between multiple on-/offline processing requests. */ online_store()
548 /* Prevent conflict between internal I/Os and on-/offline processing. */ online_store()
554 /* Prevent conflict between pending work and on-/offline processing.*/ online_store()
/linux-4.4.14/net/ieee802154/
H A Dnl802154.c1073 /* conflict here while tx/rx calls */ nl802154_set_pan_id()
1104 /* conflict here while tx/rx calls */ nl802154_set_short_addr()
1171 /* conflict here while other running iface settings */ nl802154_set_max_csma_backoffs()
/linux-4.4.14/drivers/usb/wusbcore/
H A Dcrypto.c185 * in conflict with the parameter's relation that
/linux-4.4.14/drivers/staging/lustre/lustre/ldlm/
H A Dldlm_flock.c183 * that conflict with the new lock request. */ ldlm_process_flock_lock()
/linux-4.4.14/drivers/s390/scsi/
H A Dzfcp_scsi.c526 * port. Using a reopen avoids a conflict with a shutdown
/linux-4.4.14/drivers/scsi/aic7xxx/
H A Daic79xx_osm.h68 /* Name space conflict with BSD queue macros */
H A Daic7xxx_osm.h85 /* Name space conflict with BSD queue macros */
/linux-4.4.14/drivers/net/ethernet/ibm/ehea/
H A Dehea_qmr.c61 pr_err("pagesize conflict! kernel pagesize=%d, ehea pagesize=%d\n", hw_queue_ctor()
/linux-4.4.14/drivers/net/ethernet/ibm/emac/
H A Dmal.c50 printk(KERN_WARNING "mal%d: COMMAC channels conflict!\n", mal_register_commac()
/linux-4.4.14/drivers/atm/
H A Dhe.h418 /* #define IRQ_PENDING (1) conflict with linux/irq.h */
/linux-4.4.14/arch/x86/pci/
H A Dmmconfig-shared.c718 * misprogrammed MCFG tables that state larger sizes but actually conflict
H A Dirq.c1008 dev_info(&dev2->dev, "IRQ routing conflict: " for_each_pci_dev()
/linux-4.4.14/arch/blackfin/mach-bf561/include/mach/
H A Danomaly.h284 /* DMA and TESTSET conflict when both are accessing external memory */
/linux-4.4.14/fs/afs/
H A Dwrite.c221 _debug("flush conflict"); afs_write_begin()
/linux-4.4.14/include/acpi/
H A Dacpixf.h193 * Optionally use 32-bit FADT addresses if and when there is a conflict
/linux-4.4.14/arch/sparc/kernel/
H A Dleon_pci_grpci1.c438 /* Setup BAR0 outside access range so that it does not conflict with grpci1_hw_init()
H A Dperf_event.c65 * conflict resolution code we have for SPARC-T3 and earlier chips.
1289 /* Otherwise, there is a conflict. */ sparc_check_constraints()
/linux-4.4.14/arch/arm64/mm/
H A Dfault.c486 { do_bad, SIGBUS, 0, "TLB conflict abort" },
/linux-4.4.14/arch/blackfin/mach-bf533/include/mach/
H A Danomaly.h306 /* DMA and TESTSET conflict when both are accessing external memory */
/linux-4.4.14/drivers/xen/
H A Dballoon.c342 * conflict with any devices. reserve_additional_memory()
/linux-4.4.14/drivers/vfio/pci/
H A Dvfio_pci_config.c1330 pr_warn("%s: %s pci config conflict @0x%x, was cap 0x%x now cap 0x%x\n", vfio_cap_init()
1414 pr_warn("%s: %s pci config conflict @0x%x, was ecap 0x%x now ecap 0x%x\n", vfio_ecap_init()
/linux-4.4.14/drivers/video/fbdev/nvidia/
H A Dnv_hw.c515 crtpagemiss += 1; /* if MA0 conflict */ nv10CalcArbitration()
541 crtpagemiss += 1; /* if MA0 conflict */ nv10CalcArbitration()
/linux-4.4.14/drivers/net/wireless/iwlegacy/
H A D4965.c172 * EEPROM chip, not a single event, so even reads could conflict if they
1616 IL_ERR("Calibration conflict R1 == R3\n"); il4965_hw_get_temperature()
/linux-4.4.14/arch/microblaze/pci/
H A Dpci-common.c917 * Reparent resource children of pr that conflict with res
1034 * Must be a conflict with an existing entry. pci_bus_for_each_resource()
/linux-4.4.14/mm/
H A Dswapfile.c418 bool conflict; scan_swap_map_ssd_cluster_conflict() local
421 conflict = !cluster_is_null(&si->free_cluster_head) && scan_swap_map_ssd_cluster_conflict()
425 if (!conflict) scan_swap_map_ssd_cluster_conflict()
/linux-4.4.14/drivers/video/fbdev/riva/
H A Driva_hw.c953 crtpagemiss += 1; /* if MA0 conflict */ nv10CalcArbitration()
974 crtpagemiss += 1; /* if MA0 conflict */ nv10CalcArbitration()
/linux-4.4.14/drivers/staging/comedi/
H A Ddrivers.c845 dev_warn(dev->class_dev, "%s: I/O port conflict (%#lx,%lu)\n", __comedi_request_region()
/linux-4.4.14/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_gram.y1324 * ambiguous and causes a shift/reduce conflict.
/linux-4.4.14/drivers/mtd/nand/
H A Dfsl_ifc_nand.c936 /* Avoid conflict with bad block marker */ fsl_ifc_chip_init()
/linux-4.4.14/drivers/net/ethernet/3com/
H A D3c574_cs.c359 pr_notice("IO port conflict at 0x%03lx-0x%03lx\n", tc574_config()
H A D3c589_cs.c297 dev_err(&link->dev, "IO port conflict at 0x%03lx-0x%03lx\n", tc589_config()
/linux-4.4.14/drivers/i2c/busses/
H A Di2c-ismt.c883 dev_err(&pdev->dev, "ACPI resource conflict!\n"); ismt_probe()
/linux-4.4.14/drivers/net/usb/
H A Dasix_devices.c1085 * doesn't (yet) conflict with any known Linksys product.
/linux-4.4.14/drivers/net/ethernet/realtek/
H A Datp.c543 : "IRQ conflict"); tx_timeout()
/linux-4.4.14/drivers/net/ethernet/fujitsu/
H A Dfmvj18x_cs.c781 ? "IRQ conflict" : "network cable problem"); fjn_tx_timeout()
/linux-4.4.14/drivers/firewire/
H A Dcore-transaction.c1020 [RCODE_CONFLICT_ERROR] = "conflict error", fw_rcode_string()
/linux-4.4.14/arch/alpha/kernel/
H A Dperf_event.c194 /* Otherwise, darn it, there is a conflict. */ ev67_check_constraints()
/linux-4.4.14/fs/nfs/
H A Dfile.c720 /* found a conflict */ do_getlk()
/linux-4.4.14/fs/nfsd/
H A Dnfs4callback.c211 * not conflict with native Linux error codes.
/linux-4.4.14/sound/core/
H A Dinit.c536 /* return true if the given id string doesn't conflict any other card ids */ card_id_ok()
/linux-4.4.14/arch/powerpc/platforms/512x/
H A Dclock-commonclk.c1065 * potential for a name conflict (in contrast to 'ipg' and 'mclk')
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_vm.c1034 dev_err(adev->dev, "bo %p va 0x%010Lx-0x%010Lx conflict with " amdgpu_vm_bo_map()
/linux-4.4.14/net/netlink/
H A Dgenetlink.c73 * That group will typically conflict with other groups that
/linux-4.4.14/tools/perf/util/
H A Dauxtrace.c240 pr_err("auxtrace queue conflict: cpu %d, tid %d vs cpu %d, tid %d\n", auxtrace_queues__add_buffer()
/linux-4.4.14/kernel/power/
H A Dsnapshot.c82 * we can only use memory pages that do not conflict with the pages
2004 * the image during resume, because they conflict with the pages that
/linux-4.4.14/drivers/usb/gadget/udc/
H A Dm66592-udc.c760 "conflict. please power off this controller."); irq_ep0_write()
H A Dr8a66597-udc.c957 "conflict. please power off this controller."); irq_ep0_write()

Completed in 8734 milliseconds

12