Home
last modified time | relevance | path

Searched refs:missing (Results 1 – 165 of 165) sorted by relevance

/linux-4.1.27/arch/mn10300/lib/
Dchecksum.c74 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.1.27/arch/m32r/lib/
Dcsum_partial_copy.c48 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.1.27/arch/c6x/lib/
Dchecksum.c19 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.1.27/arch/score/lib/
Dchecksum_copy.c43 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.1.27/arch/metag/lib/
Dchecksum.c145 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.1.27/arch/parisc/lib/
Dchecksum.c139 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.1.27/arch/powerpc/lib/
Dchecksum_wrappers_64.c50 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.1.27/lib/
Dchecksum.c159 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()
DKconfig.debug925 Say Y here and build SMP to catch missing spinlock initialization
/linux-4.1.27/
DKbuild6 # 3) Check for missing system calls
68 # 3) Check for missing system calls
71 always += missing-syscalls
72 targets += missing-syscalls
77 missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE
DMakefile306 -Wno-missing-field-initializers -fno-delete-null-pointer-checks
/linux-4.1.27/Documentation/devicetree/bindings/regulator/
Dtps62360-regulator.txt15 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).
Dfixed-regulator.txt10 If this property is missing, the default assumed is Active low.
12 If this property is missing then default assumption is false.
Dregulator.txt45 this child node is intended to configure. If this property is missing,
/linux-4.1.27/drivers/staging/media/mn88473/
DTODO9 * 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.1.27/drivers/staging/media/mn88472/
DTODO9 * 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.1.27/scripts/coccinelle/free/
Dpci_free_consistent.cocci1 /// 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…
Diounmap.cocci1 /// 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…
Dclk_put.cocci1 /// 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…
/linux-4.1.27/drivers/usb/wusbcore/
Dwa-nep.c95 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.1.27/drivers/spi/
Dspidev.c180 unsigned long missing; in spidev_read() local
182 missing = copy_to_user(buf, spidev->rx_buffer, status); in spidev_read()
183 if (missing == status) in spidev_read()
186 status = status - missing; in spidev_read()
200 unsigned long missing; in spidev_write() local
209 missing = copy_from_user(spidev->tx_buffer, buf, count); in spidev_write()
210 if (missing == 0) in spidev_write()
/linux-4.1.27/scripts/coccinelle/locks/
Dmini_lock.cocci1 /// 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.1.27/Documentation/devicetree/bindings/clock/
Drockchip,rk3288-cru.txt18 If missing pll rates are not changable, due to the missing pll lock status.
Drockchip,rk3188-cru.txt19 If missing pll rates are not changable, due to the missing pll lock status.
Dclk-palmas-clk32kg-clocks.txt19 Option 0 or missing this property means the clock is enabled/disabled
Dxgene.txt21 - 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.1.27/drivers/rtc/
Dinterface.c166 enum { none, day, month, year } missing = none; in __rtc_read_alarm() local
252 missing = day; in __rtc_read_alarm()
256 if (missing == none) in __rtc_read_alarm()
257 missing = month; in __rtc_read_alarm()
261 if (missing == none) in __rtc_read_alarm()
262 missing = year; in __rtc_read_alarm()
271 switch (missing) { in __rtc_read_alarm()
/linux-4.1.27/Documentation/hwmon/
Dpc8742739 (including stalled or missing fan).
48 setting, and the configuration interface is missing.
Dsmsc47m19259 in4_input - +12V voltage input (may be missing if used as VID4)
Dsubmitting-patches24 Sometimes a patch can not or not completely be tested because of missing
/linux-4.1.27/Documentation/devicetree/bindings/
DABI.txt12 then default to the previous behaviour if it is missing. If a binding
29 behaviour when a newly added property is missing.
/linux-4.1.27/tools/perf/Documentation/
Dperf-buildid-cache.txt46 --missing=::
47 List missing build ids in the cache for the specified file.
Dperf-annotate.txt93 --skip-missing::
/linux-4.1.27/tools/usb/usbip/
D.gitignore18 missing
/linux-4.1.27/Documentation/video4linux/bttv/
DCONTRIBUTORS20 + many more (please mail me if you are missing in this list and would
/linux-4.1.27/fs/ubifs/
Dorphan.c741 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.1.27/Documentation/devicetree/bindings/sound/
Dst,sta32x.txt27 If parameter is missing, mode 0 will be enabled.
36 If parameter is missing, channel 1 is chosen.
Dst,sta350.txt27 If parameter is missing, mode 0 will be enabled.
36 If parameter is missing, channel 1 is chosen.
/linux-4.1.27/Documentation/
Dinit.txt24 missing interrupt-based configuration).
27 /lib/ld-linux.so.2 missing or broken. Use readelf -d <INIT>|grep NEEDED
Dldm.txt40 N.B. The missing 1MiB at the end of the disk is where the LDM database is
Dmd.txt60 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.
Dlzo.txt70 IMPORTANT NOTE : in the code some length checks are missing because certain
Dthis_cpu_ops.txt328 missing local cache line of a per cpu area, its performance and hence
Dunshare.txt207 1) Check flags to force missing, but implied, flags
Dsvga.txt77 well (some of these might be missing or unusable on your machine as different
Dcpu-hotplug.txt208 In such cases you will also notice that the online file is missing under cpu0.
Dkobject.txt240 One important thing still missing from the discussion is what happens to a
Datomic_ops.txt311 A missing memory barrier in the cases where they are required by the
DSubmittingPatches682 patch in the permanent changelog. If the "from" line is missing,
Ddevices.txt408 191 = /dev/pcl181 <information missing>
/linux-4.1.27/include/uapi/linux/
Dauto_fs4.h124 struct autofs_packet_missing missing; member
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-bus-iio-frequency-ad952312 '0' means that the clock is missing.
Dsysfs-bus-pci292 source. If that is missing or incorrect, this file can be
/linux-4.1.27/Documentation/devicetree/bindings/mmc/
Dti-omap-hsmmc.txt61 [workaround for missing swakeup on am33xx]
63 This SOC is missing the swakeup line, it will not detect SDIO irq
Dsynopsys-dw-mshc.txt46 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.1.27/Documentation/devicetree/bindings/mfd/
Dtwl4030-audio.txt24 missing or it is 0, the vibra functionality is disabled.
/linux-4.1.27/arch/xtensa/
DKconfig.debug10 This check can spot missing TLB invalidation/wrong PTE permissions/
/linux-4.1.27/scripts/
DKbuild.include272 # (2) - due to target missing
275 # (5) - due to missing .cmd file
294 - due to missing .cmd file, \
300 - due to target missing \
DMakefile.extrawarn28 warning-1 += $(call cc-disable-warning, missing-field-initializers)
/linux-4.1.27/Documentation/s390/
Dmonreader.txt173 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
DDASD23 only some smart data structures are missing to make the support
/linux-4.1.27/drivers/staging/media/bcm2048/
DTODO12 missing features, but that is easy enough to add). Since the RDS data is
/linux-4.1.27/Documentation/filesystems/cifs/
DTODO8 is a partial list of the known problems and missing features:
10 a) SMB3 (and SMB3.02) missing optional features:
DCHANGES163 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.1.27/fs/btrfs/
Ddev-replace.c381 src_device->missing ? "<missing disk>" : in btrfs_dev_replace_start()
525 src_device->missing ? "<missing disk>" : in btrfs_dev_replace_finishing()
542 src_device->missing ? "<missing disk>" : in btrfs_dev_replace_finishing()
812 dev_replace->srcdev->missing ? "<missing disk>" : in btrfs_dev_replace_kthread()
Dvolumes.h75 int missing; member
Dvolumes.c545 if (device->missing) { in device_list_add()
547 device->missing = 0; in device_list_add()
716 if (device->missing) in __btrfs_close_devices()
1697 if (device->missing) in btrfs_rm_device()
1827 if (srcdev->missing) in btrfs_rm_dev_replace_remove_srcdev()
4694 if (map->stripes[i].dev->missing) { in btrfs_chunk_readonly()
5674 if (device->missing || !device->bdev) { in btrfs_schedule_bio()
5949 device->missing = 1; in add_missing_dev()
6209 if(!device->bdev && !device->missing) { in read_one_dev()
6217 device->missing = 1; in read_one_dev()
[all …]
Dsuper.c2018 if (dev->missing) in btrfs_show_devname()
Ddisk-io.c3388 if (dev->missing) in barrier_all_devices()
3404 if (dev->missing) in barrier_all_devices()
Dscrub.c3661 if (!dev || (dev->missing && !is_dev_replace)) { in btrfs_scrub_dev()
/linux-4.1.27/scripts/coccinelle/api/
Dresource_size.cocci92 msg="WARNING: Suspicious code. resource_size is maybe missing with %s" % (x)
/linux-4.1.27/arch/cris/arch-v32/mm/
Dmmu.S177 8: ; PMD missing, let the mm subsystem fix it up.
179 9: ; PTE missing, let the mm subsystem fix it up.
/linux-4.1.27/Documentation/devicetree/bindings/net/
Dqca-qca7000-spi.txt24 If the property is missing the driver defaults to burst mode.
/linux-4.1.27/Documentation/video4linux/cx88/
Dhauppauge-wintv-cx88-ir.txt18 What's missing from the data sheet:
/linux-4.1.27/Documentation/video4linux/
Dhauppauge-wintv-cx88-ir.txt18 What's missing from the data sheet:
/linux-4.1.27/Documentation/arm/SA1100/
DBrutus57 A full PCMCIA support is still missing, although it's possible to hack
/linux-4.1.27/Documentation/scsi/
DChangeLog.sym53c8xx_232 missing free of this memory on instance detach.
46 - Add a missing cpu_to_scr() (np->abort_tbl.addr)
DChangeLog.lpfc301 * 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
DChangeLog.megaraid_sas12 4. Add missing initial call to megasas_get_ld_vf_affiliation().
153 2. Add missing check_and_restore_queue_depth() call in
DChangeLog.sym53c8xx60 - Add a missing endian-ization (abrt_tbl.addr).
438 _indeed_ missing in the data manuals.
DChangeLog.ncr53c8xx372 - Print out the whole driver set-up. Some options were missing and
DChangeLog.1992-1997145 * scsi.h: Update and add a bunch of missing commands which we
/linux-4.1.27/Documentation/filesystems/
Dbtrfs.txt92 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.
Dpath-lookup.txt72 - 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
Ddebugfs.txt52 error, or ERR_PTR(-ENODEV) if debugfs support is missing.
DLocking8 Thing currently missing here: socket operations. Alexey?
Dntfs.txt115 To be sure you are not missing any files, you are
Dvfs.txt40 some bits of the cache are missing. In order to resolve your pathname
Dproc.txt548 files are there, and which are missing.
/linux-4.1.27/Documentation/dvb/
Dudev.txt12 creating the DVB device nodes manually up to now due to the missing sysfs
/linux-4.1.27/Documentation/devicetree/bindings/clock/ti/
Dmux.txt33 supplied. If the shift value is missing it is the same as supplying
Ddivider.txt47 is missing it is the same as supplying a zero shift.
/linux-4.1.27/Documentation/devicetree/bindings/hsi/
Domap-ssi.txt38 property. If it's missing the port will not be
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/
Dmeson,pinctrl.txt17 when it is missing the "pull" registers are used instead
/linux-4.1.27/arch/mips/
DMakefile383 $(Q)$(MAKE) $(build)=. missing-syscalls missing_syscalls_flags="-mabi=n32"
387 $(Q)$(MAKE) $(build)=. missing-syscalls missing_syscalls_flags="-mabi=32"
/linux-4.1.27/Documentation/sound/alsa/
Dcompress_offload.txt142 - 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)
DREADME.maya4414 …by experiment and conjecture. Some information (in particular, several GPIO bits) is still missing.
DHD-Audio.txt256 The capture problems are often because of missing setups of mixers.
/linux-4.1.27/arch/arm/boot/dts/
Dsun6i-a31-hummingbird.dts120 /* external pull-ups missing for some pins */
/linux-4.1.27/Documentation/acpi/
Dmethod-customizing.txt12 2. insert a completely new method in order to create a missing
/linux-4.1.27/sound/
DKconfig43 device numbers and opening a missing device will generate only the
/linux-4.1.27/Documentation/video4linux/cx2341x/
DREADME.hm1236 missing macroblocks at the end and is unusable. So the height must be a
/linux-4.1.27/Documentation/bus-devices/
Dti-gpmc.txt117 some of the gpmc timings are missing above), and it will result in
/linux-4.1.27/Documentation/usb/
Dmass-storage.txt129 parameter. If the file parameter is missing as well, one is
188 module parameters may be missing, or the parameters may have
Dusb-serial.txt317 -- Add everything else that is missing :)
413 still missing. Notably, serial ioctls are sometimes faked or not yet
Dproc_usb_info.txt62 the file for the missing bytes. This information is also shown
Dpower-management.txt702 missing or wrong.
/linux-4.1.27/scripts/kconfig/
DMakefile206 -Wno-missing-prototypes
Dzconf.tab.c_shipped1335 fprintf(stderr, "%s:%d: missing end statement for this entry\n",
1345 fprintf(stderr, "%s:%d: missing end statement for this entry\n",
1355 fprintf(stderr, "%s:%d: missing end statement for this entry\n",
/linux-4.1.27/Documentation/locking/
Dlockstat.txt127 con-bounces point is missing in the statistics.
/linux-4.1.27/tools/perf/config/
DMakefile115 dummy := $(error Error: $(FLEX) is missing on this system, please install it)
119 dummy := $(error Error: $(BISON) is missing on this system, please install it)
/linux-4.1.27/Documentation/filesystems/nfs/
Dnfsroot.txt90 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.1.27/drivers/clocksource/
DKconfig127 hardware anomalies of missing events.
/linux-4.1.27/Documentation/i2c/busses/
Di2c-parport30 parameter is missing, the driver will simply fail to initialize.
Di2c-i801128 function asus_hides_smbus_hostbridge.) If the SMBus device is missing,
/linux-4.1.27/Documentation/networking/
Dray_cs.txt137 Known Problems and missing features
Dopenvswitch.txt216 header, so that the TCP header is missing. The flow key for this
234 missing or malformed VLAN TCI.
Darcnet-hardware.txt2580 because there are missing two pages in the manual booklet. (The table
/linux-4.1.27/Documentation/laptops/
Dsony-laptop.txt57 Note that some files may be missing if they are not supported
Dlaptop-mode.txt771 …ning "You are using laptop mode and your battery interface $BATT_INFO is missing. This may lead to…
Dthinkpad-acpi.txt803 are not in the dock), or if you notice that there are missing LEDs,
/linux-4.1.27/fs/autofs4/
Dwaitq.c117 struct autofs_packet_missing *mp = &pkt.v4_pkt.missing; in autofs4_notify_daemon()
/linux-4.1.27/drivers/gpu/drm/
DKconfig127 # !PREEMPT because of missing ioctl locking
/linux-4.1.27/Documentation/devicetree/bindings/arm/
Dvexpress.txt135 When this property is missing, the motherboard is using the original
/linux-4.1.27/Documentation/vm/
Dhwpoison.txt183 - Right now hugepage support is missing.
Dtranshuge.txt308 missing after pmd_offset returns the pmd. Thanks to the graceful
/linux-4.1.27/Documentation/arm/
Dkernel_user_helpers.txt33 New helpers may be added over time, so an older kernel may be missing some
/linux-4.1.27/sound/oss/
DCHANGELOG290 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.1.27/Documentation/virtual/kvm/
Dnested-vmx.txt12 The "Nested VMX" feature adds this missing capability - of running guest
Dmmu.txt95 - access to missing or protected translations
273 - access to a missing translation
300 instantiating missing intermediate page tables as necessary
Dmsr.txt188 be used to notify a guest when missing page becomes
Dapi.txt3340 runs in "hypervisor" privilege mode with a few missing features.
/linux-4.1.27/drivers/net/wireless/libertas/
DREADME135 Value field specifies the number of consecutive missing beacons which
/linux-4.1.27/Documentation/m68k/
Dkernel-options.txt20 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.1.27/Documentation/device-mapper/
Ddm-raid.txt124 If a drive has failed or is missing at creation time, a '-' can be
/linux-4.1.27/Documentation/isdn/
DsyncPPP.FAQ207 tries to talk with you. Maybe only a missing
/linux-4.1.27/Documentation/devicetree/bindings/media/
Dvideo-interfaces.txt152 /* If hsync-active/vsync-active are missing,
/linux-4.1.27/Documentation/input/
Djoystick-api.txt158 missing events since the queue is finite, and older events will get
/linux-4.1.27/arch/arc/kernel/
Dentry.S561 ; (and we don't end up missing a NEED_RESCHED/SIGPENDING due to an
/linux-4.1.27/Documentation/filesystems/caching/
Dobject.txt109 what's found and that create on disk any missing metadata.
/linux-4.1.27/Documentation/ide/
DChangeLog.ide-tape.1995-2002178 * added ide-tape: where missing. I would also
/linux-4.1.27/arch/cris/arch-v10/kernel/
Dentry.S387 2: ; PMD or PTE missing, let the mm subsystem fix it up.
/linux-4.1.27/Documentation/arm/OMAP/
DDSS354 - Lots of checks are missing or implemented just as BUG()
/linux-4.1.27/Documentation/netlabel/
Ddraft-ietf-cipso-ipsecurity-01.txt632 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.1.27/Documentation/ioctl/
Dioctl-number.txt60 most drivers up to 2.6.31, but I know I am missing some. There has been
/linux-4.1.27/Documentation/hid/
Dhid-transport.txt287 it is missing.
/linux-4.1.27/Documentation/power/
Dswsusp.txt123 Q: Maybe I'm missing something, but why don't the regular I/O paths work?
/linux-4.1.27/Documentation/scheduler/
Dsched-deadline.txt335 Still missing:
/linux-4.1.27/tools/power/cpupower/po/
Dde.po765 #. if sysfs file is missing it's: errno == ENOENT
Dcs.po754 #. if sysfs file is missing it's: errno == ENOENT
Dit.po763 #. if sysfs file is missing it's: errno == ENOENT
Dfr.po754 #. if sysfs file is missing it's: errno == ENOENT
Dpt.po765 #. if sysfs file is missing it's: errno == ENOENT
/linux-4.1.27/sound/pci/
DKconfig873 for the Xense, missing.
/linux-4.1.27/drivers/message/fusion/lsi/
Dmpi_history.txt682 * 11-15-02 01.02.08 Added missing MsgContext field to MSG_MAILBOX_REQUEST.
/linux-4.1.27/Documentation/arm64/
Darm-acpi.txt447 be avoided if possible. If there are features missing from ACPI that preclude
/linux-4.1.27/arch/powerpc/
DKconfig337 This is also useful to emulate missing (optional) instructions
/linux-4.1.27/arch/arm/mm/
DKconfig1002 However, drivers may be missing the necessary barriers for ARMv6,
/linux-4.1.27/fs/nls/
DKconfig418 (and Manx Gaelic) that were missing in Latin 1.
/linux-4.1.27/Documentation/RCU/
DwhatisRCU.txt586 missing much. But here they are anyway. And whatever you do, don't
/linux-4.1.27/arch/x86/
DKconfig610 PC chipset, so all "standard" peripherals are missing. If this
664 a paravirt_op is missing when it is called.
/linux-4.1.27/Documentation/block/
Dbiodoc.txt323 usable? Or _last for that matter. I must be missing something>
/linux-4.1.27/init/
DKconfig62 when they load they cannot be used due to missing HW support),
/linux-4.1.27/Documentation/devicetree/
Dbooting-without-of.txt756 "ranges" property is missing at a given level, it's assumed that
/linux-4.1.27/Documentation/sound/oss/
DREADME.OSS90 There are probably many other names missing. If you have sent me some