/linux-4.4.14/arch/mn10300/lib/ |
D | checksum.c | 74 int missing; in csum_partial_copy_from_user() local 76 missing = copy_from_user(dst, src, len); in csum_partial_copy_from_user() 77 if (missing) { in csum_partial_copy_from_user() 78 memset(dst + len - missing, 0, missing); in csum_partial_copy_from_user() 90 int missing; in csum_and_copy_to_user() local 92 missing = copy_to_user(dst, src, len); in csum_and_copy_to_user() 93 if (missing) { in csum_and_copy_to_user() 94 memset(dst + len - missing, 0, missing); in csum_and_copy_to_user()
|
/linux-4.4.14/arch/m32r/lib/ |
D | csum_partial_copy.c | 48 int missing; in csum_partial_copy_from_user() local 50 missing = copy_from_user(dst, src, len); in csum_partial_copy_from_user() 51 if (missing) { in csum_partial_copy_from_user() 52 memset(dst + len - missing, 0, missing); in csum_partial_copy_from_user() 56 return csum_partial(dst, len-missing, sum); in csum_partial_copy_from_user()
|
/linux-4.4.14/arch/c6x/lib/ |
D | checksum.c | 19 int missing; in csum_partial_copy_from_user() local 21 missing = __copy_from_user(dst, src, len); in csum_partial_copy_from_user() 22 if (missing) { in csum_partial_copy_from_user() 23 memset(dst + len - missing, 0, missing); in csum_partial_copy_from_user()
|
/linux-4.4.14/arch/score/lib/ |
D | checksum_copy.c | 43 int missing; in csum_partial_copy_from_user() local 45 missing = copy_from_user(dst, src, len); in csum_partial_copy_from_user() 46 if (missing) { in csum_partial_copy_from_user() 47 memset(dst + len - missing, 0, missing); in csum_partial_copy_from_user()
|
/linux-4.4.14/arch/parisc/lib/ |
D | checksum.c | 139 int missing; in csum_partial_copy_from_user() local 141 missing = copy_from_user(dst, src, len); in csum_partial_copy_from_user() 142 if (missing) { in csum_partial_copy_from_user() 143 memset(dst + len - missing, 0, missing); in csum_partial_copy_from_user()
|
/linux-4.4.14/arch/metag/lib/ |
D | checksum.c | 145 int missing; in csum_partial_copy_from_user() local 147 missing = __copy_from_user(dst, src, len); in csum_partial_copy_from_user() 148 if (missing) { in csum_partial_copy_from_user() 149 memset(dst + len - missing, 0, missing); in csum_partial_copy_from_user()
|
/linux-4.4.14/arch/powerpc/lib/ |
D | checksum_wrappers_64.c | 50 int missing = __copy_from_user(dst, src, len); in csum_and_copy_from_user() local 52 if (missing) { in csum_and_copy_from_user() 53 memset(dst + len - missing, 0, missing); in csum_and_copy_from_user()
|
/linux-4.4.14/lib/ |
D | checksum.c | 159 int missing; in csum_partial_copy_from_user() local 161 missing = __copy_from_user(dst, src, len); in csum_partial_copy_from_user() 162 if (missing) { in csum_partial_copy_from_user() 163 memset(dst + len - missing, 0, missing); in csum_partial_copy_from_user()
|
D | Kconfig.debug | 934 Say Y here and build SMP to catch missing spinlock initialization
|
/linux-4.4.14/Documentation/devicetree/bindings/regulator/ |
D | tps62360-regulator.txt | 15 If this property is missing, then assume that there is no GPIO 18 If this property is missing, then assume that there is no GPIO 21 If this property is missing, then assume the state as low (0). 23 If this property is missing, then assume the state as low (0).
|
D | fixed-regulator.txt | 10 If this property is missing, the default assumed is Active low. 12 If this property is missing then default assumption is false.
|
D | act8865-regulator.txt | 12 If this property is missing, assume the VSEL pin is low(0).
|
D | regulator.txt | 52 this child node is intended to configure. If this property is missing,
|
/linux-4.4.14/ |
D | Kbuild | 7 # 4) Check for missing system calls 87 # 4) Check for missing system calls 90 always += missing-syscalls 91 targets += missing-syscalls 96 missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE
|
D | Makefile | 305 -Wno-missing-field-initializers -fno-delete-null-pointer-checks
|
/linux-4.4.14/drivers/staging/media/mn88473/ |
D | TODO | 9 * missing lock flags 15 trivial stuff. *Do not* add missing register I/O error checks. Those are 16 missing for the reason it is much easier to compare I2C data sniffs when
|
/linux-4.4.14/drivers/staging/media/mn88472/ |
D | TODO | 9 * missing lock flags 15 trivial stuff. *Do not* add missing register I/O error checks. Those are 16 missing for the reason it is much easier to compare I2C data sniffs when
|
/linux-4.4.14/scripts/coccinelle/free/ |
D | pci_free_consistent.cocci | 1 /// Find missing pci_free_consistent for every pci_alloc_consistent. 42 msg = "ERROR: missing pci_free_consistent; pci_alloc_consistent on line %s and return without freei… 50 msg = "ERROR: missing pci_free_consistent; pci_alloc_consistent on line %s and return without freei…
|
D | clk_put.cocci | 1 /// Find missing clk_puts. 3 //# This only signals a missing clk_put when there is a clk_put later 66 msg = "ERROR: missing clk_put; clk_get on line %s and execution via conditional on line %s" % (p1[0…
|
D | iounmap.cocci | 1 /// Find missing iounmaps. 3 //# This only signals a missing iounmap when there is an iounmap later 66 msg = "ERROR: missing iounmap; ioremap on line %s and execution via conditional on line %s" % (p1[0…
|
/linux-4.4.14/drivers/usb/wusbcore/ |
D | wa-nep.c | 95 u8 missing = 0; in wa_notif_dispatch() local 116 missing = sizeof(*notif_hdr) - size; in wa_notif_dispatch() 165 missing, (int)size); in wa_notif_dispatch()
|
/linux-4.4.14/drivers/spi/ |
D | spidev.c | 168 unsigned long missing; in spidev_read() local 170 missing = copy_to_user(buf, spidev->rx_buffer, status); in spidev_read() 171 if (missing == status) in spidev_read() 174 status = status - missing; in spidev_read() 188 unsigned long missing; in spidev_write() local 197 missing = copy_from_user(spidev->tx_buffer, buf, count); in spidev_write() 198 if (missing == 0) in spidev_write()
|
/linux-4.4.14/Documentation/vm/ |
D | userfaultfd.txt | 62 the range (UFFDIO_REGISTER_MODE_MISSING would track missing 109 The QEMU in the source node writes all pages that it knows are missing 123 the userfault address it writes the information about the missing page 126 remaining missing pages from that new page offset. Soon after that 138 missing in the destination node. The bitmap in the source node is 139 checked to find which missing pages to send in round robin and we seek
|
D | hwpoison.txt | 183 - Right now hugepage support is missing.
|
D | transhuge.txt | 318 missing after pmd_offset returns the pmd. Thanks to the graceful
|
/linux-4.4.14/drivers/rtc/ |
D | interface.c | 121 enum { none, day, month, year } missing = none; in __rtc_read_alarm() local 207 missing = day; in __rtc_read_alarm() 211 if (missing == none) in __rtc_read_alarm() 212 missing = month; in __rtc_read_alarm() 216 if (missing == none) in __rtc_read_alarm() 217 missing = year; in __rtc_read_alarm() 226 switch (missing) { in __rtc_read_alarm()
|
/linux-4.4.14/scripts/coccinelle/locks/ |
D | mini_lock.cocci | 1 /// Find missing unlocks. This semantic match considers the specific case 2 /// where the unlock is missing from an if branch, and there is a lock
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ |
D | rockchip,rk3288-cru.txt | 18 If missing pll rates are not changable, due to the missing pll lock status.
|
D | rockchip,rk3188-cru.txt | 19 If missing pll rates are not changable, due to the missing pll lock status.
|
D | rockchip,rk3368-cru.txt | 18 If missing, pll rates are not changeable, due to the missing pll lock status.
|
D | clk-palmas-clk32kg-clocks.txt | 19 Option 0 or missing this property means the clock is enabled/disabled
|
D | xgene.txt | 21 - clock-names : shall be the name of the PLL. If missing, use the device name. 35 - clock-names : shall be the name of the device clock. If missing, use the
|
/linux-4.4.14/Documentation/devicetree/bindings/ |
D | ABI.txt | 12 then default to the previous behaviour if it is missing. If a binding 29 behaviour when a newly added property is missing.
|
/linux-4.4.14/Documentation/hwmon/ |
D | pc87427 | 39 (including stalled or missing fan). 48 setting, and the configuration interface is missing.
|
D | smsc47m192 | 59 in4_input - +12V voltage input (may be missing if used as VID4)
|
D | submitting-patches | 24 Sometimes a patch can not or not completely be tested because of missing
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-buildid-cache.txt | 46 --missing=:: 47 List missing build ids in the cache for the specified file.
|
D | perf-annotate.txt | 93 --skip-missing::
|
/linux-4.4.14/tools/usb/usbip/ |
D | .gitignore | 18 missing
|
/linux-4.4.14/Documentation/video4linux/bttv/ |
D | CONTRIBUTORS | 20 + many more (please mail me if you are missing in this list and would
|
/linux-4.4.14/fs/ubifs/ |
D | orphan.c | 741 unsigned long missing; member 849 ci->missing += 1; in dbg_orphan_check() 923 ci.missing = 0; in dbg_check_orphans() 942 if (ci.missing) { in dbg_check_orphans() 943 ubifs_err(c, "%lu missing orphan(s)", ci.missing); in dbg_check_orphans()
|
/linux-4.4.14/Documentation/ |
D | init.txt | 24 missing interrupt-based configuration). 27 /lib/ld-linux.so.2 missing or broken. Use readelf -d <INIT>|grep NEEDED
|
D | ldm.txt | 40 N.B. The missing 1MiB at the end of the disk is where the LDM database is
|
D | md.txt | 60 is degraded means that some datablocks are missing and cannot reliably 104 'unclean', or with some devices missing so that the kernel md driver 494 failed/missing device 526 single failed/missing drive will show '1', etc. 528 in the count of missing devices will trigger an event.
|
D | lzo.txt | 70 IMPORTANT NOTE : in the code some length checks are missing because certain
|
D | this_cpu_ops.txt | 328 missing local cache line of a per cpu area, its performance and hence
|
D | unshare.txt | 207 1) Check flags to force missing, but implied, flags
|
D | svga.txt | 77 well (some of these might be missing or unusable on your machine as different
|
D | cpu-hotplug.txt | 208 In such cases you will also notice that the online file is missing under cpu0.
|
D | kobject.txt | 240 One important thing still missing from the discussion is what happens to a
|
D | atomic_ops.txt | 313 A missing memory barrier in the cases where they are required by the
|
D | SubmittingPatches | 684 patch in the permanent changelog. If the "from" line is missing,
|
D | devices.txt | 408 191 = /dev/pcl181 <information missing>
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | st,sta32x.txt | 27 If parameter is missing, mode 0 will be enabled. 36 If parameter is missing, channel 1 is chosen.
|
D | st,sta350.txt | 27 If parameter is missing, mode 0 will be enabled. 36 If parameter is missing, channel 1 is chosen.
|
/linux-4.4.14/include/uapi/linux/ |
D | auto_fs4.h | 124 struct autofs_packet_missing missing; member
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-bus-iio-frequency-ad9523 | 12 '0' means that the clock is missing.
|
D | sysfs-bus-pci | 292 source. If that is missing or incorrect, this file can be
|
/linux-4.4.14/Documentation/devicetree/bindings/usb/ |
D | ci-hdrc-usb2.txt | 41 "ahb-burst-config" is set to 0, if this property is missing the reset 47 "ahb-burst-config" is set to 0, if this property is missing the reset
|
/linux-4.4.14/Documentation/devicetree/bindings/mmc/ |
D | ti-omap-hsmmc.txt | 61 [workaround for missing swakeup on am33xx] 63 This SOC is missing the swakeup line, it will not detect SDIO irq
|
D | synopsys-dw-mshc.txt | 46 If the biu clock is missing we'll simply skip enabling it. If the 47 ciu clock is missing we'll just assume that the clock is running at
|
/linux-4.4.14/Documentation/devicetree/bindings/mfd/ |
D | twl4030-audio.txt | 24 missing or it is 0, the vibra functionality is disabled.
|
/linux-4.4.14/arch/xtensa/ |
D | Kconfig.debug | 10 This check can spot missing TLB invalidation/wrong PTE permissions/
|
/linux-4.4.14/Documentation/s390/ |
D | monreader.txt | 173 moment. There is no data missing or corrupted, just try again or rather 176 read with 0 size is valid but subsequent records may be missing. 178 In the last case (EOVERFLOW) there may be missing data, in the first two cases 179 (EIO, EFAULT) there will be missing data. It's up to the application if it will
|
D | DASD | 23 only some smart data structures are missing to make the support
|
/linux-4.4.14/drivers/staging/media/bcm2048/ |
D | TODO | 12 missing features, but that is easy enough to add). Since the RDS data is
|
/linux-4.4.14/scripts/ |
D | Makefile.extrawarn | 28 warning-1 += $(call cc-disable-warning, missing-field-initializers)
|
D | Kbuild.include | 276 # (2) - due to target missing 279 # (5) - due to missing .cmd file 298 - due to missing .cmd file, \ 304 - due to target missing \
|
/linux-4.4.14/Documentation/filesystems/cifs/ |
D | TODO | 8 is a partial list of the known problems and missing features: 10 a) SMB3 (and SMB3.02) missing optional features:
|
D | CHANGES | 163 mount helper is missing convert make sure that UNC name 478 minor fixes pointed out by the Stanford SWAT checker (mostly missing 683 Add missing mount options including iocharset. SMP fixes in write and open. 780 cifs_partialpagewrite caused by missing spinlock protection 920 Fixes from Zwane Mwaikambo for adding missing return code checking in a few places. 1011 Fixed major problem with dentry corruption (missing call to dput)
|
/linux-4.4.14/fs/btrfs/ |
D | dev-replace.c | 380 src_device->missing ? "<missing disk>" : in btrfs_dev_replace_start() 527 src_device->missing ? "<missing disk>" : in btrfs_dev_replace_finishing() 544 src_device->missing ? "<missing disk>" : in btrfs_dev_replace_finishing() 813 dev_replace->srcdev->missing ? "<missing disk>" : in btrfs_dev_replace_kthread()
|
D | volumes.h | 75 int missing; member
|
D | volumes.c | 682 if (device->missing) { in device_list_add() 684 device->missing = 0; in device_list_add() 1841 if (device->missing) in btrfs_rm_device() 1971 if (srcdev->missing) in btrfs_rm_dev_replace_remove_srcdev() 4962 if (map->stripes[i].dev->missing) { in btrfs_chunk_readonly() 5937 if (device->missing || !device->bdev) { in btrfs_schedule_bio() 6136 device->missing = 1; in add_missing_dev() 6399 if(!device->bdev && !device->missing) { in read_one_dev() 6407 device->missing = 1; in read_one_dev() 6412 ASSERT(device->missing); in read_one_dev() [all …]
|
D | scrub.c | 2301 if (dev->missing) { in scrub_pages() 2631 if (dev->missing) { in scrub_extent_for_parity() 3840 if (!dev || (dev->missing && !is_dev_replace)) { in btrfs_scrub_dev()
|
D | super.c | 2152 if (dev->missing) in btrfs_show_devname()
|
D | disk-io.c | 3474 if (dev->missing) in barrier_all_devices() 3490 if (dev->missing) in barrier_all_devices()
|
/linux-4.4.14/scripts/coccinelle/api/ |
D | resource_size.cocci | 92 msg="WARNING: Suspicious code. resource_size is maybe missing with %s" % (x)
|
/linux-4.4.14/arch/cris/arch-v32/mm/ |
D | mmu.S | 177 8: ; PMD missing, let the mm subsystem fix it up. 179 9: ; PTE missing, let the mm subsystem fix it up.
|
/linux-4.4.14/Documentation/devicetree/bindings/net/ |
D | qca-qca7000-spi.txt | 24 If the property is missing the driver defaults to burst mode.
|
/linux-4.4.14/Documentation/video4linux/ |
D | hauppauge-wintv-cx88-ir.txt | 18 What's missing from the data sheet:
|
/linux-4.4.14/Documentation/video4linux/cx88/ |
D | hauppauge-wintv-cx88-ir.txt | 18 What's missing from the data sheet:
|
/linux-4.4.14/Documentation/arm/SA1100/ |
D | Brutus | 57 A full PCMCIA support is still missing, although it's possible to hack
|
/linux-4.4.14/Documentation/scsi/ |
D | ChangeLog.sym53c8xx_2 | 32 missing free of this memory on instance detach. 46 - Add a missing cpu_to_scr() (np->abort_tbl.addr)
|
D | ChangeLog.lpfc | 301 * Add missing spaces to the parameter descriptions for 440 * Integrate Christoph Hellwig's patch for 8.0.14: Add missing 510 * Use DID not SCSI target id as a port_id and add some missing 828 * Fixing missing static and removing dead code. 918 allocation routines a little and fixes a missing mempool_destroy and 919 some missing error handling." 936 * Removed missing function = 0 in tmo routine in lpfc_els.c. 1178 * Fixing some missing static lpfc_nportdisc.c. 1549 * lpfc_online() was missing some timer routines that were 1833 * Fix a 2.6 kernel check to be >= 2.6.0 instead of > (was missing
|
D | ChangeLog.megaraid_sas | 12 4. Add missing initial call to megasas_get_ld_vf_affiliation(). 153 2. Add missing check_and_restore_queue_depth() call in
|
D | ChangeLog.sym53c8xx | 60 - Add a missing endian-ization (abrt_tbl.addr). 438 _indeed_ missing in the data manuals.
|
D | ChangeLog.ncr53c8xx | 372 - Print out the whole driver set-up. Some options were missing and
|
D | ChangeLog.1992-1997 | 145 * scsi.h: Update and add a bunch of missing commands which we
|
/linux-4.4.14/Documentation/filesystems/ |
D | btrfs.txt | 92 Allow mounts to continue with missing devices. A read-write mount may 93 fail with too many devices missing, for example if a stripe member 94 is completely missing.
|
D | path-lookup.txt | 72 - lookup and create missing parts of the path on demand. 115 lookup of the old list veering off into the new (incorrect) list and missing 344 element, nodentry for missing dentry, revalidate for filesystem revalidate
|
D | debugfs.txt | 52 error, or ERR_PTR(-ENODEV) if debugfs support is missing.
|
D | ntfs.txt | 115 To be sure you are not missing any files, you are
|
D | Locking | 8 Thing currently missing here: socket operations. Alexey?
|
D | vfs.txt | 40 some bits of the cache are missing. In order to resolve your pathname
|
D | proc.txt | 566 files are there, and which are missing.
|
/linux-4.4.14/Documentation/dvb/ |
D | udev.txt | 12 creating the DVB device nodes manually up to now due to the missing sysfs
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ti/ |
D | mux.txt | 33 supplied. If the shift value is missing it is the same as supplying
|
D | divider.txt | 47 is missing it is the same as supplying a zero shift.
|
/linux-4.4.14/Documentation/devicetree/bindings/hsi/ |
D | omap-ssi.txt | 38 property. If it's missing the port will not be
|
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/ |
D | meson,pinctrl.txt | 17 when it is missing the "pull" registers are used instead
|
/linux-4.4.14/arch/mips/ |
D | Makefile | 380 $(Q)$(MAKE) $(build)=. missing-syscalls missing_syscalls_flags="-mabi=n32" 384 $(Q)$(MAKE) $(build)=. missing-syscalls missing_syscalls_flags="-mabi=32"
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | compress_offload.txt | 142 - Addition of set_params for decoders (missing in OpenMAX AL) 143 - Addition of AMR/AMR-WB encoding modes (missing in OpenMAX AL) 146 - Addition of rateControlSupported (missing in OpenMAX AL)
|
D | README.maya44 | 14 …by experiment and conjecture. Some information (in particular, several GPIO bits) is still missing.
|
D | HD-Audio.txt | 256 The capture problems are often because of missing setups of mixers.
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | sun8i-a33-sinlinx-sina33.dts | 116 /* eMMC is missing pull-ups */
|
D | sun6i-a31-hummingbird.dts | 136 /* external pull-ups missing for some pins */
|
/linux-4.4.14/Documentation/acpi/ |
D | method-customizing.txt | 12 2. insert a completely new method in order to create a missing
|
/linux-4.4.14/sound/ |
D | Kconfig | 43 device numbers and opening a missing device will generate only the
|
/linux-4.4.14/Documentation/video4linux/cx2341x/ |
D | README.hm12 | 36 missing macroblocks at the end and is unusable. So the height must be a
|
/linux-4.4.14/Documentation/bus-devices/ |
D | ti-gpmc.txt | 117 some of the gpmc timings are missing above), and it will result in
|
/linux-4.4.14/Documentation/usb/ |
D | mass-storage.txt | 129 parameter. If the file parameter is missing as well, one is 188 module parameters may be missing, or the parameters may have
|
D | usb-serial.txt | 317 -- Add everything else that is missing :) 413 still missing. Notably, serial ioctls are sometimes faked or not yet
|
D | proc_usb_info.txt | 62 the file for the missing bytes. This information is also shown
|
D | power-management.txt | 714 missing or wrong.
|
/linux-4.4.14/Documentation/locking/ |
D | lockstat.txt | 127 con-bounces point is missing in the statistics.
|
/linux-4.4.14/scripts/kconfig/ |
D | Makefile | 218 -Wno-missing-prototypes
|
D | zconf.tab.c_shipped | 1357 fprintf(stderr, "%s:%d: missing end statement for this entry\n", 1367 fprintf(stderr, "%s:%d: missing end statement for this entry\n", 1377 fprintf(stderr, "%s:%d: missing end statement for this entry\n",
|
/linux-4.4.14/arch/arc/kernel/ |
D | entry.S | 294 ; (and we don't end up missing a NEED_RESCHED/SIGPENDING due to an
|
/linux-4.4.14/Documentation/i2c/busses/ |
D | i2c-parport | 31 parameter is missing, the driver will simply fail to initialize.
|
D | i2c-i801 | 131 function asus_hides_smbus_hostbridge.) If the SMBus device is missing,
|
/linux-4.4.14/Documentation/networking/ |
D | ray_cs.txt | 137 Known Problems and missing features
|
D | openvswitch.txt | 216 header, so that the TCP header is missing. The flow key for this 234 missing or malformed VLAN TCI.
|
D | arcnet-hardware.txt | 2580 because there are missing two pages in the manual booklet. (The table
|
/linux-4.4.14/tools/perf/config/ |
D | Makefile | 120 dummy := $(error Error: $(FLEX) is missing on this system, please install it) 124 dummy := $(error Error: $(BISON) is missing on this system, please install it)
|
/linux-4.4.14/Documentation/filesystems/nfs/ |
D | nfsroot.txt | 90 If this parameter is missing from the kernel command line, all fields are 110 will not be triggered if it is missing and NFS root is not
|
/linux-4.4.14/Documentation/laptops/ |
D | sony-laptop.txt | 57 Note that some files may be missing if they are not supported
|
D | laptop-mode.txt | 771 …ning "You are using laptop mode and your battery interface $BATT_INFO is missing. This may lead to…
|
D | thinkpad-acpi.txt | 803 are not in the dock), or if you notice that there are missing LEDs,
|
/linux-4.4.14/fs/autofs4/ |
D | waitq.c | 117 struct autofs_packet_missing *mp = &pkt.v4_pkt.missing; in autofs4_notify_daemon()
|
/linux-4.4.14/drivers/clocksource/ |
D | Kconfig | 159 hardware anomalies of missing events.
|
/linux-4.4.14/Documentation/arm/ |
D | kernel_user_helpers.txt | 33 New helpers may be added over time, so an older kernel may be missing some
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | vexpress.txt | 135 When this property is missing, the motherboard is using the original
|
/linux-4.4.14/sound/oss/ |
D | CHANGELOG | 290 Something may still be missing. If you notice such things, please let me 344 - Stereo recording for SB Pro. Somehow it was missing and nobody
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | nested-vmx.txt | 12 The "Nested VMX" feature adds this missing capability - of running guest
|
D | mmu.txt | 95 - access to missing or protected translations 279 - access to a missing translation 306 instantiating missing intermediate page tables as necessary
|
D | msr.txt | 188 be used to notify a guest when missing page becomes
|
D | api.txt | 3415 runs in "hypervisor" privilege mode with a few missing features.
|
/linux-4.4.14/drivers/net/wireless/libertas/ |
D | README | 135 Value field specifies the number of consecutive missing beacons which
|
/linux-4.4.14/drivers/gpu/drm/ |
D | Kconfig | 168 # !PREEMPT because of missing ioctl locking
|
/linux-4.4.14/Documentation/m68k/ |
D | kernel-options.txt | 20 incomplete or missing. Please update the information and send in the 43 add new such options, and some may be missing in older versions. 453 video memory. If it's missing, the size is calculated from <xres>, 489 If you're missing a corresponding yres_virtual: the external part is legacy,
|
/linux-4.4.14/Documentation/scheduler/ |
D | sched-deadline.txt | 194 EDF is clearly able to schedule the two tasks without missing any deadline 255 guarantee that global EDF schedules the tasks without missing any deadline 459 Still missing:
|
/linux-4.4.14/Documentation/devicetree/bindings/media/ |
D | video-interfaces.txt | 152 /* If hsync-active/vsync-active are missing,
|
/linux-4.4.14/Documentation/isdn/ |
D | syncPPP.FAQ | 207 tries to talk with you. Maybe only a missing
|
/linux-4.4.14/Documentation/input/ |
D | joystick-api.txt | 158 missing events since the queue is finite, and older events will get
|
/linux-4.4.14/Documentation/device-mapper/ |
D | dm-raid.txt | 124 If a drive has failed or is missing at creation time, a '-' can be
|
/linux-4.4.14/Documentation/filesystems/caching/ |
D | object.txt | 109 what's found and that create on disk any missing metadata.
|
/linux-4.4.14/Documentation/nvdimm/ |
D | btt.txt | 251 - Rebuilding free list from the flog reveals missing/duplicate/impossible
|
/linux-4.4.14/Documentation/ide/ |
D | ChangeLog.ide-tape.1995-2002 | 178 * added ide-tape: where missing. I would also
|
/linux-4.4.14/arch/cris/arch-v10/kernel/ |
D | entry.S | 387 2: ; PMD or PTE missing, let the mm subsystem fix it up.
|
/linux-4.4.14/Documentation/arm/OMAP/ |
D | DSS | 354 - Lots of checks are missing or implemented just as BUG()
|
/linux-4.4.14/Documentation/netlabel/ |
D | draft-ietf-cipso-ipsecurity-01.txt | 632 is set to "option missing" (code 1) and the ICMP pointer is set to 134 633 (the value of the option type for the missing CIPSO option).
|
/linux-4.4.14/Documentation/ioctl/ |
D | ioctl-number.txt | 60 most drivers up to 2.6.31, but I know I am missing some. There has been
|
/linux-4.4.14/Documentation/hid/ |
D | hid-transport.txt | 287 it is missing.
|
/linux-4.4.14/Documentation/power/ |
D | swsusp.txt | 123 Q: Maybe I'm missing something, but why don't the regular I/O paths work?
|
/linux-4.4.14/tools/power/cpupower/po/ |
D | de.po | 765 #. if sysfs file is missing it's: errno == ENOENT
|
D | it.po | 763 #. if sysfs file is missing it's: errno == ENOENT
|
D | cs.po | 754 #. if sysfs file is missing it's: errno == ENOENT
|
D | fr.po | 754 #. if sysfs file is missing it's: errno == ENOENT
|
D | pt.po | 765 #. if sysfs file is missing it's: errno == ENOENT
|
/linux-4.4.14/sound/pci/ |
D | Kconfig | 875 for the Xense, missing.
|
/linux-4.4.14/Documentation/arm64/ |
D | arm-acpi.txt | 447 be avoided if possible. If there are features missing from ACPI that preclude
|
/linux-4.4.14/drivers/message/fusion/lsi/ |
D | mpi_history.txt | 682 * 11-15-02 01.02.08 Added missing MsgContext field to MSG_MAILBOX_REQUEST.
|
/linux-4.4.14/arch/powerpc/ |
D | Kconfig | 344 This is also useful to emulate missing (optional) instructions
|
/linux-4.4.14/arch/arm/mm/ |
D | Kconfig | 1021 However, drivers may be missing the necessary barriers for ARMv6,
|
/linux-4.4.14/Documentation/cgroups/ |
D | unified-hierarchy.txt | 472 use when per-device setting is missing.
|
/linux-4.4.14/fs/nls/ |
D | Kconfig | 418 (and Manx Gaelic) that were missing in Latin 1.
|
/linux-4.4.14/Documentation/RCU/ |
D | whatisRCU.txt | 588 missing much. But here they are anyway. And whatever you do, don't
|
/linux-4.4.14/arch/x86/ |
D | Kconfig | 620 PC chipset, so all "standard" peripherals are missing. If this 674 a paravirt_op is missing when it is called.
|
/linux-4.4.14/Documentation/block/ |
D | biodoc.txt | 323 usable? Or _last for that matter. I must be missing something>
|
/linux-4.4.14/Documentation/devicetree/ |
D | booting-without-of.txt | 756 "ranges" property is missing at a given level, it's assumed that
|
/linux-4.4.14/init/ |
D | Kconfig | 62 when they load they cannot be used due to missing HW support),
|
/linux-4.4.14/Documentation/sound/oss/ |
D | README.OSS | 90 There are probably many other names missing. If you have sent me some
|