Home
last modified time | relevance | path

Searched refs:at (Results 1 – 200 of 2637) sorted by relevance

12345678910>>...14

/linux-4.1.27/arch/xtensa/include/asm/
Dasmmacro.h48 .macro __loopi ar, at, size, incr
51 movi \at, ((\size + \incr - 1) / (\incr))
52 loop \at, 99f
54 addi \at, \ar, \size
64 .macro __loops ar, as, at, incr_log2, mask_log2, cond, ncond
68 addi \at, \as, (1 << \incr_log2) - 1
70 extui \at, \at, \incr_log2, \mask_log2
72 srli \at, \at, \incr_log2
75 loop\cond \at, 99f
78 extui \at, \as, \incr_log2, \mask_log2
[all …]
Dcacheasm.h34 .macro __loop_cache_all ar at insn size line_width
38 __loopi \ar, \at, \size, (4 << (\line_width))
43 __endla \ar, \at, 4 << (\line_width)
48 .macro __loop_cache_range ar as at insn line_width
50 extui \at, \ar, 0, \line_width
51 add \as, \as, \at
53 __loops \ar, \as, \at, \line_width
55 __endla \ar, \at, (1 << (\line_width))
60 .macro __loop_cache_page ar at insn line_width
62 __loopi \ar, \at, PAGE_SIZE, 4 << (\line_width)
[all …]
Duaccess.h73 .macro set_fs at, av, sp
74 GET_CURRENT(\at,\sp)
75 s32i \av, \at, THREAD_CURRENT_DS
101 .macro kernel_ok at, sp, success
102 get_fs \at, \sp
103 beqz \at, \success
129 .macro user_ok aa, as, at, error
130 movi \at, __XTENSA_UL_CONST(TASK_SIZE)
131 bgeu \as, \at, \error
132 sub \at, \at, \as
[all …]
/linux-4.1.27/drivers/scsi/
D53c700_d.h_shipped12 ;; (at your option) any later version.
146 at 0x00000000 : */ 0x41000000,0x00000020,
150 at 0x00000002 : */ 0x830b0000,0x00000460,
154 at 0x00000004 : */ 0x860a0000,0x000001b0,
158 at 0x00000006 : */ 0x98080000,0x00000110,
164 at 0x00000008 : */ 0x50000000,0x00000058,
168 at 0x0000000a : */ 0x9f0b0000,0x00001000,
172 at 0x0000000c : */ 0x98080000,0x00002002,
179 at 0x0000000e : */ 0x0f000001,0x00000000,
183 at 0x00000010 : */ 0x98080000,0x00001003,
[all …]
/linux-4.1.27/drivers/staging/lustre/lustre/include/
Dlustre_import.h351 static inline void at_reset(struct adaptive_timeout *at, int val) in at_reset() argument
353 spin_lock(&at->at_lock); in at_reset()
354 at->at_current = val; in at_reset()
355 at->at_worst_ever = val; in at_reset()
356 at->at_worst_time = get_seconds(); in at_reset()
357 spin_unlock(&at->at_lock); in at_reset()
359 static inline void at_init(struct adaptive_timeout *at, int val, int flags) in at_init() argument
361 memset(at, 0, sizeof(*at)); in at_init()
362 spin_lock_init(&at->at_lock); in at_init()
363 at->at_flags = flags; in at_init()
[all …]
/linux-4.1.27/drivers/ata/
Dpata_ns87410.c68 struct ata_timing at; in ns87410_set_piomode() local
87 if (ata_timing_compute(adev, adev->pio_mode, &at, 30303, 1) < 0) { in ns87410_set_piomode()
92 at.active = clamp_val(at.active, 2, 16) - 2; in ns87410_set_piomode()
93 at.setup = clamp_val(at.setup, 1, 4) - 1; in ns87410_set_piomode()
94 at.recover = clamp_val(at.recover, 1, 12) - 1; in ns87410_set_piomode()
96 idetcr = (at.setup << 6) | (recoverbits[at.recover] << 3) | activebits[at.active]; in ns87410_set_piomode()
Dpata_amd.c51 struct ata_timing at, apeer; in timing_setup() local
61 if (ata_timing_compute(adev, speed, &at, T, UT) < 0) { in timing_setup()
70 ata_timing_merge(&apeer, &at, &at, ATA_TIMING_8BIT); in timing_setup()
73 ata_timing_merge(&apeer, &at, &at, ATA_TIMING_8BIT); in timing_setup()
76 if (speed == XFER_UDMA_5 && amd_clock <= 33333) at.udma = 1; in timing_setup()
77 if (speed == XFER_UDMA_6 && amd_clock <= 33333) at.udma = 15; in timing_setup()
85 t = (t & ~(3 << ((3 - dn) << 1))) | ((clamp_val(at.setup, 1, 4) - 1) << ((3 - dn) << 1)); in timing_setup()
90 ((clamp_val(at.act8b, 1, 16) - 1) << 4) | (clamp_val(at.rec8b, 1, 16) - 1)); in timing_setup()
94 ((clamp_val(at.active, 1, 16) - 1) << 4) | (clamp_val(at.recover, 1, 16) - 1)); in timing_setup()
98 t = at.udma ? (0xc0 | (clamp_val(at.udma, 2, 5) - 2)) : 0x03; in timing_setup()
[all …]
/linux-4.1.27/net/netfilter/
Dxt_u32.c27 u_int32_t at; in u32_match_it() local
35 at = 0; in u32_match_it()
60 if (at + val < at) in u32_match_it()
62 at += val; in u32_match_it()
64 if (at + 4 < at || skb->len < at + 4 || in u32_match_it()
65 pos > skb->len - at - 4) in u32_match_it()
68 if (skb_copy_bits(skb, at + pos, &n, in u32_match_it()
/linux-4.1.27/drivers/staging/lustre/lustre/ptlrpc/
Dimport.c544 struct adaptive_timeout *at = &imp->imp_at.iat_net_latency; in import_select_connection() local
545 if (at_get(at) < CONNECTION_SWITCH_MAX) { in import_select_connection()
546 at_measured(at, at_get(at) + CONNECTION_SWITCH_INC); in import_select_connection()
547 if (at_get(at) > CONNECTION_SWITCH_MAX) in import_select_connection()
548 at_reset(at, CONNECTION_SWITCH_MAX); in import_select_connection()
552 imp->imp_obd->obd_name, at_get(at)); in import_select_connection()
1533 int at_measured(struct adaptive_timeout *at, unsigned int val) in at_measured() argument
1535 unsigned int old = at->at_current; in at_measured()
1539 LASSERT(at); in at_measured()
1541 val, at, now - at->at_binstart, at->at_current, in at_measured()
[all …]
/linux-4.1.27/drivers/net/appletalk/
Dipddp.c166 ddp->deh_dnet = rt->at.s_net; /* FIXME more hops?? */ in ipddp_xmit()
169 ddp->deh_dnode = rt->at.s_node; in ipddp_xmit()
181 aarp_send_ddp(rt->dev, skb, &rt->at, NULL); in ipddp_xmit()
200 rt->at = new_rt->at; in ipddp_create()
202 if ((rt->dev = atrtr_get_dev(&rt->at)) == NULL) { in ipddp_create()
235 tmp->at.s_net == rt->at.s_net && in ipddp_delete()
236 tmp->at.s_node == rt->at.s_node) in ipddp_delete()
260 f->at.s_net == rt->at.s_net && in __ipddp_find_route()
261 f->at.s_node == rt->at.s_node) in __ipddp_find_route()
/linux-4.1.27/Documentation/misc-devices/
Deeprom20 24C01 1K 0x50 (shadows at 0x51 - 0x57)
24 (additional data at 0x51, 0x53, 0x55, 0x57)
25 24C08 8K 0x50, 0x54 (additional data at 0x51, 0x52,
27 24C16 16K 0x50 (additional data at 0x51 - 0x57)
30 Atmel 34C02B 2K 0x50 - 0x57, SW write protect at 0x30-37
31 Catalyst 34FC02 2K 0x50 - 0x57, SW write protect at 0x30-37
32 Catalyst 34RC02 2K 0x50 - 0x57, SW write protect at 0x30-37
33 Fairchild 34W02 2K 0x50 - 0x57, SW write protect at 0x30-37
34 Microchip 24AA52 2K 0x50 - 0x57, SW write protect at 0x30-37
35 ST M34C02 2K 0x50 - 0x57, SW write protect at 0x30-37
[all …]
Dc2port.txt9 (at your option) any later version.
31 The C2 Interface main references are at (http://www.silabs.com)
34 - AN127: FLASH Programming via the C2 Interface at
37 - C2 Specification at
Dmax687563 The configuration registers are at addresses 0x00 - 0x45.
76 The configuration EEPROM is at addresses 0x8000 - 0x8045.
77 The user EEPROM is at addresses 0x8100 - 0x82ff.
96 To read data starting at offset 0x8100, first set the address:
/linux-4.1.27/Documentation/ja_JP/
Dstable_kernel_rules.txt11 file at first.
20 翻訳者: Tsugikazu Shibata <tshibata at ab dot jp dot nec dot com>
21 校正者: 武井伸光さん、<takei at webmasters dot gr dot jp>
22 かねこさん (Seiji Kaneko) <skaneko at a2 dot mbn dot or dot jp>
23 小林 雅典さん (Masanori Kobayasi) <zap03216 at nifty dot ne dot jp>
24 野口さん (Kenji Noguchi) <tokyo246 at gmail dot com>
25 神宮信太郎さん <jin at libjingu dot jp>
Dstable_api_nonsense.txt21 原著作者: Greg Kroah-Hartman < greg at kroah dot com >
22 翻訳者 : 池田 宗広 < m-ikeda at ds dot jp dot nec dot com >
23 校正者 : Masanori Kobayashi さん < zap03216 at nifty dot ne dot jp >
24 Seiji Kaneko さん < skaneko at a2 dot mbn dot or dot jp >
32 Greg Kroah-Hartman <greg at kroah dot com>
DHOWTO22 翻訳者: Tsugikazu Shibata <tshibata at ab dot jp dot nec dot com>
23 校正者: 松倉さん <nbh--mats at nifty dot com>
24 小林 雅典さん (Masanori Kobayasi) <zap03216 at nifty dot ne dot jp>
25 武井伸光さん、<takei at webmasters dot gr dot jp>
26 かねこさん (Seiji Kaneko) <skaneko at a2 dot mbn dot or dot jp>
27 野口さん (Kenji Noguchi) <tokyo246 at gmail dot com>
28 河内さん (Takayoshi Kochi) <t-kochi at bq dot jp dot nec dot com>
29 岩本さん (iwamoto) <iwamoto.kn at ncos dot nec dot co dot jp>
30 内田さん (Satoshi Uchida) <s-uchida at ap dot jp dot nec dot com>
/linux-4.1.27/Documentation/hwmon/
Dlm908 Datasheet: Publicly available at the National Semiconductor website
13 Datasheet: Publicly available at the National Semiconductor website
18 Datasheet: Publicly available at the National Semiconductor website
23 Datasheet: Publicly available at the National Semiconductor website
28 Datasheet: Publicly available at the ON Semiconductor website
33 Datasheet: Publicly available at the ON Semiconductor website
38 Datasheet: Publicly available at the ON Semiconductor website
43 Datasheet: Publicly available at the ON Semiconductor website
48 Datasheet: Publicly available at the Maxim website
53 Datasheet: Publicly available at the Maxim website
[all …]
Dlm758 Datasheet: Publicly available at the National Semiconductor website
13 Datasheet: Publicly available at the National Semiconductor website
18 Datasheet: Publicly available at the Maxim website
23 Datasheet: Publicly available at the Maxim website
28 Datasheet: Publicly available at the Microchip website
33 Datasheet: Publicly available at the Microchip website
38 Datasheet: Publicly available at the Analog Devices website
43 Datasheet: Publicly available at the ST website
48 Datasheet: Publicly available at the Texas Instruments website
59 Datasheet: Publicly available at the NXP website
Dina2xx8 Datasheet: Publicly available at the Texas Instruments website
14 Datasheet: Publicly available at the Texas Instruments website
20 Datasheet: Publicly available at the Texas Instruments website
26 Datasheet: Publicly available at the Texas Instruments website
32 Datasheet: Publicly available at the Texas Instruments website
54 The shunt value in micro-ohms can be set via platform data or device tree at
55 compile-time or via the shunt_resistor attribute in sysfs at run-time. Please
Dadm10218 Datasheet: Publicly available at the Analog Devices website
12 Datasheet: Publicly available at the Analog Devices website
20 Datasheet: Publicly available at the Maxim website
24 Datasheet: Publicly available at the Maxim website
28 Datasheet: Publicly available at the National Semiconductor website
32 Datasheet: Publicly available at the Philips website
36 Datasheet: Publicly available at the Philips website
40 Datasheet: Publicly available at the TI website
44 Datasheet: Publicly available at the Onsemi website
82 is read at least once. This means that the cause for the alarm may already
Dad73147 Datasheet: Publicly available at Analog Devices website.
10 Datasheet: Publicly available at Analog Devices website.
13 Datasheet: Publicly available at Analog Devices website.
Dadt74758 Datasheet: Publicly available at the On Semiconductors website
12 Datasheet: Publicly available at the On Semiconductors website
16 Datasheet: Publicly available at the On Semiconductors website
20 Datasheet: Publicly available at the On Semiconductors website
98 point1: Set the PWM speed at the lower temperature bound
99 point2: Set the PWM speed at the higher temperature bound
106 for a channel at a given time, in which case the maximum value (fastest
Dadt74108 Datasheet: Publicly available at the Analog Devices website
13 Datasheet: Publicly available at the Analog Devices website
18 Datasheet: Publicly available at the Analog Devices website
23 Datasheet: Publicly available at the Analog Devices website
32 -55°C to +150°C. It has a high accuracy of +/-0.5°C and can be operated at a
Dlm638 Datasheet: Publicly available at the National Semiconductor website
13 Datasheet: Publicly available at the National Semiconductor website
18 Datasheet: Publicly available at the National Semiconductor website
52 83 RPM, at least in theory.
73 support these GPIO lines at present.
Dsht218 Datasheet: Publicly available at the Sensirion website
14 Datasheet: Publicly available at the Sensirion website
46 e.g. maximum two measurements per second at the given resolution.
Dadc128d8188 Datasheet: Publicly available at the TI website
36 is read at least once. This means that the cause for the alarm may
38 caches the alarm status for each sensor until it is at least reported
Dg7628 For additional information, a detailed datasheet is available at
51 it run at full speed.
56 entry (0 stops the fan, 255 makes it run at full speed). In closed-loop mode
65 Note that the driver will update its values at most once per second.
Dadm10318 Datasheet: Publicly available at the Analog Devices website
14 Datasheet: Publicly available at the Analog Devices website
Dit8716 Datasheet: Once publicly available at the ITE website, but no longer
20 Datasheet: Once publicly available at the ITE website, but no longer
24 Datasheet: Once publicly available at the ITE website, but no longer
28 Datasheet: Once publicly available at the ITE website, but no longer
87 at power on will be the actual battery voltage (which the chip does
89 the chip so can be read at any time. Excessive reading may decrease
131 this value can currently only be read once at initialization time, so
194 is read at least once. This means that the cause for the alarm may already
209 Give 0 for unused sensor. Any other value is invalid. To configure this at
238 at full speed) while the PWM output of the other 3 trip points can be
Dadt74628 Datasheet: Publicly available at the Analog Devices website
60 point1: Set the pwm speed at a lower temperature bound.
61 point2: Set the pwm speed at a higher temperature bound.
Dadt74118 Datasheet: Publicly available at the Analog Devices website
36 fast_sampling - Sample at 22.5 kHz instead of 1.4 kHz, but drop filters
Dw83781d82 hysteresis value for temp1 to 127 at initialization.
145 is read at least once. This means that the cause for the alarm may
359 AS99127F revision 2 seems to have two PWM registers at 0x59 and 0x5A,
360 and a temperature sensor type selector at 0x5B (which basically means
363 Revision 1 of the chip also has the temperature sensor type selector at
375 is below a given limit, the fan runs at low speed. If the value is above
376 the limit, the fan runs at full speed. We have no clue as to what the limit
384 at full speed, while if it is above the limit it runs at low speed (so this
393 fans run at low speed, and 0x7F or 0x80 to make them run at full speed.
397 AS99127F chips at all.
[all …]
/linux-4.1.27/arch/mips/math-emu/
Dsp_mul.c36 unsigned at; in ieee754sp_mul() local
139 at = lrm + (t << 16); in ieee754sp_mul()
140 hrm += at < lrm; in ieee754sp_mul()
141 lrm = at; in ieee754sp_mul()
145 at = lrm + (t << 16); in ieee754sp_mul()
146 hrm += at < lrm; in ieee754sp_mul()
147 lrm = at; in ieee754sp_mul()
Ddp_mul.c36 u64 at; in ieee754dp_mul() local
144 at = lrm + (t << 32); in ieee754dp_mul()
145 hrm += at < lrm; in ieee754dp_mul()
146 lrm = at; in ieee754dp_mul()
152 at = lrm + (t << 32); in ieee754dp_mul()
153 hrm += at < lrm; in ieee754dp_mul()
154 lrm = at; in ieee754dp_mul()
/linux-4.1.27/drivers/media/dvb-frontends/drx39xyj/
Ddrx_dap_fasi.h201 #error DRXDAP_MAX_WCHUNKSIZE must be at least 3 in single master mode
204 #error DRXDAP_MAX_WCHUNKSIZE must be at least 5 in multi master mode
209 #error DRXDAP_MAX_WCHUNKSIZE must be at least 5 in single master mode
212 #error DRXDAP_MAX_WCHUNKSIZE must be at least 7 in multi master mode
225 #error DRXDAP_MAX_RCHUNKSIZE must be at least 2
/linux-4.1.27/net/appletalk/
Dddp.c99 struct atalk_sock *at = at_sk(s); in atalk_search_socket() local
101 if (to->sat_port != at->src_port) in atalk_search_socket()
108 if (to->sat_addr.s_net == at->src_net && in atalk_search_socket()
109 (to->sat_addr.s_node == at->src_node || in atalk_search_socket()
118 atif->address.s_node == at->src_node) { in atalk_search_socket()
143 struct atalk_sock *at; in atalk_find_or_insert_socket() local
147 at = at_sk(s); in atalk_find_or_insert_socket()
149 if (at->src_net == sat->sat_addr.s_net && in atalk_find_or_insert_socket()
150 at->src_node == sat->sat_addr.s_node && in atalk_find_or_insert_socket()
151 at->src_port == sat->sat_port) in atalk_find_or_insert_socket()
[all …]
Datalk_proc.c169 struct atalk_sock *at; in atalk_seq_socket_show() local
178 at = at_sk(s); in atalk_seq_socket_show()
182 s->sk_type, ntohs(at->src_net), at->src_node, at->src_port, in atalk_seq_socket_show()
183 ntohs(at->dest_net), at->dest_node, at->dest_port, in atalk_seq_socket_show()
/linux-4.1.27/Documentation/networking/
Dspider_net.txt42 descriptor pointer (GDACTDPA). The GDACTDPA points at the descr
51 hardware is ahead, the tail pointer will be pointing at a "full"
61 When traffic is flowing, then the head pointer will be pointing at
69 pointer, at which point the OS will notice that the head descr is
73 all be pointing at the same descr, which should be "empty". All of the
78 of the ring, starting at the tail pointer, and listing the status
84 net eth1: Chain tail located at descr=20
85 net eth1: Chain head is at 20
86 net eth1: HW curr desc (GDACTDPA) is at 21
88 net eth1: HW next desc (GDACNEXTDA) is at 22
[all …]
Dfore200e.txt12 The intent is to enable the use of different models of FORE adapters at the
31 uploaded to the ATM adapters at system boot time or at module loading time.
39 You can also get the latest firmware images from FORE Systems at
48 Name and location of the new firmware images can be set at kernel
Digbvf.txt27 This driver is only supported as a loadable module at this time. Intel is
45 Driver ID Guide at:
63 strongly recommend downloading the latest version at:
70 For general information, go to the Intel support website at:
74 or the Intel Wired Networking project hosted by Sourceforge at:
Di40evf.txt26 Driver ID Guide at:
37 For general information, go to the Intel support website at:
41 or the Intel Wired Networking project hosted by Sourceforge at:
Dixgbevf.txt31 Driver ID Guide at:
42 For general information, go to the Intel support website at:
46 or the Intel Wired Networking project hosted by Sourceforge at:
Digb.txt21 Driver ID Guide at:
57 - Using Jumbo frames at 10 or 100 Mbps is not supported and may result in
64 version of ethtool can be found at:
89 interrupt. The moderation value should be at least as large as the expected
119 For general information, go to the Intel support website at:
123 or the Intel Wired Networking project hosted by Sourceforge at:
Di40e.txt24 Driver ID Guide at:
37 The driver is located in the menu structure at:
95 An excellent article on performance tuning can be found at:
107 For general information, go to the Intel support website at:
111 or the Intel Wired Networking project hosted by Sourceforge at:
Dray_cs.txt7 802.11 compatible wireless network connectivity at 1 and 2 megabits/second.
10 bugs and limitations at the end of this document for more information.
15 source. My web page for the development of ray_cs is at
17 and I can be emailed at corey@world.std.com
21 The driver at my web page is intended to be used as an add on to
31 Information on card services is available at:
Ddccp.txt22 modules called CCIDs. Like pluggable TCP congestion control, at least one CCID
32 is at http://www.ietf.org/html.charters/dccp-charter.html
40 The known bugs are at:
87 DCCP_SOCKOPT_CCID is write-only and sets both the TX and RX CCIDs at the same
91 understood. This socket option takes as argument at least one uint8_t value, or
111 be enabled at the receiver, too with suitable choice of CsCov.
128 optlen must be set to at least sizeof(struct tfrc_rx_info).
131 optlen must be set to at least sizeof(struct tfrc_tx_info).
205 DCCP does not travel through NAT successfully at present on many boxes. This is
/linux-4.1.27/arch/cris/boot/compressed/
DREADME11 burned into a flash or executed directly at the DRAM origin.
21 assumes the DRAM starts at 0x40000000 and that it is at least 8 MB,
22 so it puts its code at 0x40700000, and initial stack at 0x40800000.
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
Dgddr5.c38 int WL, CL, WR, at[2], dt, ds; in nvkm_gddr5_calc() local
60 at[0] = ram->next->bios.timing_20_2e_c0; in nvkm_gddr5_calc()
61 at[1] = ram->next->bios.timing_20_2e_30; in nvkm_gddr5_calc()
81 ram->mr[1] |= (at[0] & 0x03) << 4; in nvkm_gddr5_calc()
91 ram->mr[1] |= (at[1] & 0x03) << 4; in nvkm_gddr5_calc()
/linux-4.1.27/arch/arm/mach-sti/
DKconfig20 More information at Documentation/arm/STiH41x and
21 at Documentation/devicetree
32 Electronics family StiH415 parts, primarily targeted at set-top-box
42 Electronics family StiH416 parts, primarily targeted at set-top-box
52 Electronics family StiH407 parts, targetted at set-top-box
/linux-4.1.27/arch/powerpc/kernel/
Dio-workarounds.c114 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) \ argument
115 static ret iowa_##name at \
124 #define DEF_PCI_AC_NORET(name, at, al, space, aa) \ argument
125 static void iowa_##name at \
143 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) .name = iowa_##name, argument
144 #define DEF_PCI_AC_NORET(name, at, al, space, aa) .name = iowa_##name, argument
/linux-4.1.27/Documentation/cpu-freq/
Dboost.txt10 Reading or writing 1 does not mean that the system is boosting at this
11 very moment, but only that the CPU _may_ raise the frequency at it's
20 budget. The decision about boost disable/enable is made either at hardware
32 functionality at all, but a more fine-grained and dynamic control would
37 functionality at least for the benchmark's run-time the system will run
38 at a fixed frequency and results are reproducible again.
61 whole system (0) or will allow the software or hardware to boost at will
65 CPU to boost at their discretion. Some implementations take external
77 Though the per CPU existence hints at a more fine grained control, the
91 Technically it is possible to switch the boosting functionality at least
Duser-guide.txt136 the processor shall run at.
146 mounted it at /sys, the cpufreq interface is located in a subdirectory
151 frequency the processor can run at(in kHz)
153 frequency the processor can run at(in kHz)
181 the CPU actually runs at.
204 at.
/linux-4.1.27/arch/x86/kernel/cpu/
Dperf_event_intel_ds.c503 struct bts_record *at, *top; in intel_pmu_drain_bts_buffer() local
515 at = (struct bts_record *)(unsigned long)ds->bts_buffer_base; in intel_pmu_drain_bts_buffer()
518 if (top <= at) in intel_pmu_drain_bts_buffer()
534 if (perf_output_begin(&handle, event, header.size * (top - at))) in intel_pmu_drain_bts_buffer()
537 for (; at < top; at++) { in intel_pmu_drain_bts_buffer()
538 data.ip = at->from; in intel_pmu_drain_bts_buffer()
539 data.addr = at->to; in intel_pmu_drain_bts_buffer()
973 struct pebs_record_core *at, *top; in intel_pmu_drain_pebs_core() local
979 at = (struct pebs_record_core *)(unsigned long)ds->pebs_buffer_base; in intel_pmu_drain_pebs_core()
995 n = top - at; in intel_pmu_drain_pebs_core()
[all …]
/linux-4.1.27/Documentation/filesystems/
Dsharedsubtree.txt52 The above command replicates the mount at /mnt to the mountpoint /tmp
61 Now let's say we mount a device at /tmp/a
70 Note that the mount has propagated to the mount at /mnt as well.
89 the new mount at /tmp becomes a shared mount and it is a replica of
90 the mount at /mnt.
92 Now let's make the mount at /tmp; a slave of /mnt
104 Note the mount event has propagated to the mount at /tmp
106 However let's see what happens if we mount something on the mount at /tmp
115 Note how the mount event has not propagated to the mount at
126 let's say we have a mount at /mnt and we make is unbindable
[all …]
Dgfs2.txt20 The dlm is found at linux/fs/dlm/
23 at the URL above.
39 The following man pages can be found at the URL above:
Domfs.txt16 More information is available at:
21 omfsprogs, available at:
79 hashed then prepended into the bucket list beginning at OMFS_DIR_START.
84 A file is an omfs_inode structure followed by an extent table beginning at
Dxfs.txt12 Refer to the documentation at http://oss.sgi.com/projects/xfs/
102 to create inodes at any location in the filesystem,
136 systems, then it may be reduced at some cost to performance
148 stripe unit configured at mkfs time.
161 Data allocations will not be aligned at stripe unit
231 None at present.
255 The interval at which the filesystem flushes metadata
259 The interval at which the filesystem ages filestreams cache
265 The interval at which the background scanning for inodes
335 is to control the rate at which the allocator moves between
[all …]
/linux-4.1.27/Documentation/virtual/kvm/
Dnested-vmx.txt20 available at:
234 Abel Gordon, abelg <at> il.ibm.com
235 Nadav Har'El, nyh <at> il.ibm.com
236 Orit Wasserman, oritw <at> il.ibm.com
237 Ben-Ami Yassor, benami <at> il.ibm.com
238 Muli Ben-Yehuda, muli <at> il.ibm.com
241 Anthony Liguori, aliguori <at> us.ibm.com
242 Mike Day, mdday <at> us.ibm.com
243 Michael Factor, factor <at> il.ibm.com
244 Zvi Dubitzky, dubi <at> il.ibm.com
[all …]
Dmsr.txt29 guaranteed to update this data at the moment of MSR write.
37 sec: number of seconds for wallclock at time of boot.
39 nsec: number of nanoseconds for wallclock at time of boot.
70 The hypervisor may update this structure at any time it sees fit until
79 tsc_timestamp: the tsc value at the current VCPU at the time
85 time at the time this structure was last updated. Unit is
175 the hypervisor at the time of asynchronous page fault (APF)
217 The hypervisor may update this structure at any time it sees fit until
243 written to by the hypervisor, typically at the time of interrupt
258 However, hypervisor can set and clear this memory bit at any time:
Dmmu.txt59 addresses for the guest. Different translations are required at different
85 host at any time.
115 Leaf ptes point at guest pages.
139 The linear range starts at (gfn << PAGE_SHIFT) and its size is determined
183 at the shadow page structure.
184 sptes in spt point either at guest pages, or at lower-level shadow pages.
186 at __pa(sp2->spt). sp2 will point back at sp1 through parent_pte.
196 pdptrs) are now pointing at the page. While this counter is nonzero, the
199 The reverse mapping for the pte/ptes pointing at this page's spt. If
200 parent_ptes bit 0 is zero, only one spte points at this pages and
[all …]
/linux-4.1.27/drivers/net/wimax/i2400m/
DKconfig30 By default, this is disabled at runtime and can be
31 selectively enabled at runtime for different parts of the
34 If set at zero, this will compile out all the debug code.
36 It is recommended that it is left at 8.
/linux-4.1.27/Documentation/scsi/
Dscsi-generic.txt31 The most recent documentation of the sg driver is kept at the Linux
36 and pdf. This document can also be found at:
40 be found at http://sg.danny.cz/sg/. A larger version
41 is at: http://sg.danny.cz/sg/p/scsi-generic_long.txt.
44 found at http://www.torque.net/sg/p/original/SCSI-Programming-HOWTO.txt
51 can be found at the top of the /usr/src/linux/drivers/scsi/sg.c file.
54 part can be found at http://www.tldp.org/HOWTO/SCSI-2.4-HOWTO .
64 capabilities. They can be found at: http://sg.danny.cz/sg/sg3_utils.html and
67 Another approach is to look at the applications that use the sg driver.
Dbfa.txt34 The latest Firmware package for 3.0.2.2 bfa driver can be found at:
49 be found at:
65 driver can be found at:
80 For general product and support info, go to the Brocade website at:
DFlashPoint.txt15 drivers and information will be available on October 15th at
29 System, Emacs, and TCP/IP networking. Further information is available at
52 headquartered at 34551 Ardenwood Blvd., Fremont, CA.
107 BusLogic is not prepared at this time to release the information necessary
112 are people at BusLogic who would rather not release the details of the
113 FlashPoint architecture at all, that debate has not yet been settled either
127 upgrade has been set at US $45 plus shipping and handling, and the upgrade
129 be reached by electronic mail at techsup@buslogic.com, by Voice at +1 408
130 654-0760, or by FAX at +1 408 492-1542.
136 price for this upgrade has been set at US $65 plus shipping and handling.
[all …]
Dg_NCR5380.txt11 modes at a time but it does support both of these chips at the same time.
12 The next release of this driver will support port & memory mapped cards at
36 /proc/scsi/g_NCR5380/x where x is the scsi card number as detected at boot
/linux-4.1.27/drivers/net/ethernet/intel/
DKconfig30 Use the above information and the Adapter & Driver ID Guide at:
52 to the Adapter & Driver ID Guide at:
57 website at:
76 identify your adapter, go to the Adapter & Driver ID Guide at:
81 website at:
97 to the Adapter & Driver ID Guide at:
102 website at:
138 Driver ID Guide at:
143 website at:
160 to the Adapter & Driver ID Guide at:
[all …]
/linux-4.1.27/security/apparmor/
DKconfig12 distribution) and further information may be found at
25 at boot. If this option is set to 0 (zero), the AppArmor
26 kernel parameter will default to 0, disabling AppArmor at
28 kernel parameter will default to 1, enabling AppArmor at
/linux-4.1.27/drivers/cpufreq/
DKconfig.x8624 For details, take a look at:
44 For details, take a look at <file:Documentation/cpu-freq/>.
81 For details, take a look at <file:Documentation/cpu-freq/>.
91 For details, take a look at <file:Documentation/cpu-freq/>.
103 For details, take a look at <file:Documentation/cpu-freq/>.
113 For details, take a look at <file:Documentation/cpu-freq/>.
134 For details, take a look at <file:Documentation/cpu-freq/>.
160 For details, take a look at <file:Documentation/cpu-freq/>.
179 For details, take a look at <file:Documentation/cpu-freq/>.
202 For details, take a look at <file:Documentation/cpu-freq/>.
[all …]
DKconfig15 For details, take a look at <file:Documentation/cpu-freq>.
54 This option sets which CPUFreq governor shall be loaded at
91 governor. If unsure have a look at the help section of the
103 governor. If unsure have a look at the help section of the
140 For details, take a look at <file:Documentation/cpu-freq/>.
158 For details, take a look at linux/Documentation/cpu-freq.
182 For details, take a look at linux/Documentation/cpu-freq.
231 For details, take a look at <file:Documentation/cpu-freq/>.
245 For details, take a look at <file:Documentation/cpu-freq/>.
255 For details, take a look at <file:Documentation/cpu-freq/>.
[all …]
DKconfig.powerpc7 For details, take a look at <file:Documentation/cpu-freq/>.
16 frequencies. Using PMI, the processor will not only be able to run at
17 lower speed, but also at lower core voltage.
/linux-4.1.27/drivers/net/ethernet/chelsio/
DKconfig32 our website at <http://www.chelsio.com>.
34 For customer support, please visit our customer support page at
59 our website at <http://www.chelsio.com>.
61 For customer support, please visit our customer support page at
79 our website at <http://www.chelsio.com>.
81 For customer support, please visit our customer support page at
120 our website at <http://www.chelsio.com>.
122 For customer support, please visit our customer support page at
/linux-4.1.27/scripts/
Dunifdef.c746 static Linetype op_strict(int *p, int v, Linetype at, Linetype bt) { in op_strict() argument
747 if(at == LT_IF || bt == LT_IF) return (LT_IF); in op_strict()
750 static Linetype op_lt(int *p, Linetype at, int a, Linetype bt, int b) { in op_lt() argument
751 return op_strict(p, a < b, at, bt); in op_lt()
753 static Linetype op_gt(int *p, Linetype at, int a, Linetype bt, int b) { in op_gt() argument
754 return op_strict(p, a > b, at, bt); in op_gt()
756 static Linetype op_le(int *p, Linetype at, int a, Linetype bt, int b) { in op_le() argument
757 return op_strict(p, a <= b, at, bt); in op_le()
759 static Linetype op_ge(int *p, Linetype at, int a, Linetype bt, int b) { in op_ge() argument
760 return op_strict(p, a >= b, at, bt); in op_ge()
[all …]
/linux-4.1.27/Documentation/video4linux/
Dfimc.txt12 availability, LCD writeback support, etc. The driver is located at
27 - dynamic pipeline re-configuration at runtime (re-attachment of any FIMC
60 The driver supports Media Controller API as defined at
65 to the SoC peripheral camera input at runtime and optionally to control internal
77 V4L2 memory-to-memory interface at /dev/video? device node. This is standalone
85 The driver supports V4L2 Video Capture Interface as defined at:
95 node is also created per each available and enabled at the platform level
107 When we configure these devices through sub-device API at user space, the
111 devices belonging to the pipeline is done at the video node driver.
114 when the last configuration steps at the video node is performed.
[all …]
DREADME.cx8818 at least for some standards.
49 (2) You can try to create a new entry yourself, have a look at
52 (3) Or you can mail me the config information. I need at least the
59 know which one the card has you can also have a look at the
Dcafe_ccic6 RGB565, and RGB444 formats. (Anybody looking at the code will see RGB32 as
9 sensor is known to work with this controller at this time.
23 then worst-case-sized buffers will be allocated at module load time.
29 allocated at run time, they will be sized appropriately for the current
DREADME.davinci-vpbe41 controller port is done at init time based on default output and standard
42 selection or at run time when application change the output through
56 setting timings at LCD controller port when external encoders are connected
57 at the port or LCD panel timings required. When external encoder/LCD panel
86 - add support for selecting external encoder as default at probe time.
Dhauppauge-wintv-cx88-ir.txt30 GP_SAMPLE register is at 0x35C058
32 Bits are then right shifted into the GP_SAMPLE register at the specified
41 over time, so don't assume any sample starts at any particular place.
DREADME.cpia27 stream at up to vga size. It implements the Video4Linux interface as much as
37 available at compile time.
71 If the driver is compiled into the kernel, at boot time specify them
81 The compression engine starts out at maximum compression, and will
89 any alternate at frame rates down to 15fps. For lower frame rates, it may
108 this case use 2 buffers. You are probably not reading at the full frame rate.
/linux-4.1.27/arch/x86/
DMakefile.um34 echo $(call cc-option,-fno-unit-at-a-time); \
35 else echo $(call cc-option,-funit-at-a-time); fi ;)
59 KBUILD_CFLAGS += $(call cc-option,-funit-at-a-time)
/linux-4.1.27/drivers/devfreq/
DKconfig40 values to the governor with data field at devfreq_add_device().
45 Sets the frequency at the maximum available frequency.
48 at any time.
53 Sets the frequency at the minimum available frequency.
56 at any time.
61 Sets the frequency at the user specified one.
65 given at the initialization.
/linux-4.1.27/Documentation/
Dcrc32.txt31 Just like with ordinary division, you proceed one digit (bit) at a time.
49 Notice how, to get at bit 32 of the shifted remainder, we look
50 at bit 31 of the remainder *before* shifting it.
55 Also, to add the CRC to a message, we need a 32-bit-long hole for it at
56 the end, so we have to add 32 extra cycles shifting in zeros at the
84 We can do it 8 bits at a time rather than 1 bit at a time:
103 word at a time and increase the inner loop count to 32.
106 bulk of a message byte-at-a-time and adding bit-at-a-time processing
107 for any fractional bytes at the end.
110 the byte-at-a-time table method, popularized by Dilip V. Sarwate,
[all …]
Drobust-futex-ABI.txt17 2) internal kernel code at exit, to handle any listed locks held
53 The first word in the memory structure at 'head' contains a
71 Each 'lock entry' on the single linked list starting at 'head' consists
74 entry', at an offset from the 'lock entry' specified by the 'offset'
85 'lock entry' on this list, with its associated 'lock word' at the
112 up locks held at the time of (a perhaps unexpectedly) exit.
122 memory, on various data structures, at a given point in time. Only those
127 at different times by any of the threads with access to that region. The
142 of the 'lock word', to the linked list starting at 'head', and
154 the list starting at 'head'. For each such address, if the bottom 29
[all …]
Dmono.txt13 packages for several distributions can be found at:
17 Instructions for compiling Mono can be found at:
34 to be run at system startup:
44 # is not needed at all.
Dedac.txt22 and maintained at sourceforge.net. When it was pushed into 2.6.16 for the
25 The bluesmoke project at sourceforge.net is now utilized as a 'staging area'
345 must occur in userland at this time.
378 must occur in userland at this time.
416 On Header Type 00 devices the primary status is looked at
420 looked at to see if parity occurred on the bus on the other side of
547 the 'test_device_edac' device (found at the bluesmoke.sourceforget.net website)
563 The test_device_edac device adds at least one of its own custom control:
623 The 'test_device_edac' sample driver is located at the
634 were done at i7core_edac driver. This chapter will cover those differences
[all …]
Dbus-virt-phys-mapping.txt15 at memory addresses, and in this case we actually want the third, the
47 Now, that looks simple enough. However, when you look at the same thing from
119 So why do we care about the physical address at all? We do need the physical
139 conceptually in the same memory space as "real memory" at all, so you cannot
148 * read first 32 bits from ISA memory at 0xC0000, aka
155 * remap framebuffer PCI memory area at 0xFC000000,
169 /* get the 6-byte Ethernet address at ISA address E000:0040 */
192 at the top of their source files, and then they can use the right names
Dbad_memory.txt30 memmap is already in the kernel and usable as kernel-parameter at
37 Example: memtest86+ reported here errors at address 0x18691458, 0x18698424 and
Drobust-futexes.txt23 completely forgets that there ever was a futex at that address. This
62 - they have to scan _every_ vma at sys_exit() time, per thread!
88 registration happens at most once per thread lifetime]. At do_exit()
92 In the common case, at do_exit() time, there is no list registered, so
101 The list is guaranteed to be private and per-thread at do_exit() time,
123 - it's much, much faster: at thread exit time, there's no need to loop
158 (1 million held locks are unheard of - we expect at most a handful of
159 locks to be held at a time. Nevertheless it's nice to know that this
187 If a futex is found to be held at exit time, the kernel sets the
209 i386 and x86_64 syscalls are wired up at the moment, and Ulrich has
Dunicode.txt5 The current version can be found at:
69 they are added at U+23BA, U+23BB, U+23BC, U+23BD. Linux now uses the
93 For more information, contact them at:
99 located it at the end, on a 16-cell boundary in keeping with standard
103 Registry. The normative reference is at:
165 The ConScript Unicode Registry is accessible at:
169 The ranges used fall at the low end of the End User Zone and can hence
Dsysfs-rules.txt30 - sysfs is always at /sys
47 at device creation and removal
48 - the unique key to the device at that point in time
55 kernel used at event time.
88 Always look at the parent devices themselves for determining device
108 classification directories into one place at /sys/subsystem,
113 "devices" directory at /sys/subsystem/<name>/devices.
126 The converted block subsystem at /sys/class/block or
128 at the same level, never in a hierarchy. Assuming the block subsystem to
Dbcache.txt4 Wiki and git repositories are at:
12 designed to avoid random writes at all costs; it fills up an erase block
16 off, but can be switched on and off arbitrarily at runtime. Bcache goes to
25 Since random IO is what SSDs excel at, there generally won't be much benefit
44 make-bcache has the ability to format multiple devices at the same time - if
45 you format your backing devices and cache device at the same time, you won't
74 You can control bcache devices through sysfs at /sys/block/bcache<N>/bcache .
101 partition, the bcache directory would be at /sys/block/sdb/sdb2/bcache)
119 invalidating the data at that lba in the cache (i.e. the same thing we do for
198 Available at /sys/block/<bdev>/bcache, /sys/block/bcache*/bcache and
[all …]
/linux-4.1.27/Documentation/security/
Dtomoyo.txt5 LiveCD-based tutorials are available at
20 User <-> Kernel interface documentation is available at
23 Materials we prepared for seminars and symposiums are available at
49 multiple LSM modules at the same time. We feel sorry that you have to give up
53 version of TOMOYO, available at http://tomoyo.sourceforge.jp/1.7/ .
/linux-4.1.27/Documentation/devicetree/bindings/clock/ti/
Dmux.txt23 into the register, instead indexing begins at 1. The optional property
24 "index-starts-at-one" modified the scheme as follows:
47 - ti,index-starts-at-one : valid input select programming starts at 1, not
59 ti,index-starts-at-one;
Ddivider.txt17 ti,index-starts-at-one - valid divisor values start at 1, not the default
69 - ti,index-starts-at-one : valid divisor programming starts at 1, not zero,
86 ti,index-starts-at-one;
104 ti,index-starts-at-one;
/linux-4.1.27/Documentation/cgroups/
Dmemcg_test.txt15 Allocated at boot or memory hotplug. Freed at memory hot removal.
18 Allocated at swapon(). Freed at swapoff().
25 a page/swp_entry may be charged (usage += PAGE_SIZE) at
45 at this point, usage += PAGE_SIZE.
54 Anonymous page is newly allocated at
77 Finally, at task exit,
81 Page Cache is charged at
97 - Both on radix-tree and SwapCache. This happens at swap-in
190 create/delete following groups at random while jobs are running.
208 call path of swap-in at swapoff is not same as usual swap-in path..
[all …]
/linux-4.1.27/Documentation/timers/
Dhpet.txt4 by Intel and Microsoft which can be found at
8 Each HPET has one fixed-rate counter (at 10+ MHz, hence "High Precision")
10 each of which can generate oneshot interrupts and at least one of which has
17 role. Many x86 BIOS writers don't route HPET interrupts at all, which
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/
Dmpic.txt19 Revision Registers BRR1 and BRR2 at offset 0x0 and
54 directed at other cores. This ensures that the client
71 non-IPI interrupts to a single CPU at a time (EG: Freescale MPIC).
116 region. So interrupt 0 is at offset 0x0,
117 interrupt 1 is at offset 0x20, and so on.
165 * registers at 0x5_0560.
168 * at 0x5_0000.
175 * at 0x5_0000, and so the i2c vector/priority registers
176 * are at 0x5_0560.
/linux-4.1.27/Documentation/trace/
Duprobetracer.txt34 @ADDR : Fetch memory at ADDR (ADDR should be in userspace)
35 @+OFFSET : Fetch memory at OFFSET (OFFSET from same file as PATH)
39 +|-offs(FETCHARG) : Fetch memory at FETCHARG +|- offs address.(**)
71 as below: (sets a uprobe at an offset of 0x4245c0 in the executable /bin/bash)
92 at the probed text address. Probe zfree function in /bin/zsh:
100 0x46420 is the offset of zfree in object /bin/zsh that is loaded at
110 in the object. We can see the events that are registered by looking at the
158 and contents of ax register being 79. And uretprobe was triggered with ip at
159 0x446540 with counterpart function entry at 0x446420.
/linux-4.1.27/arch/arm/boot/dts/
Domap54xx-clocks.dtsi124 ti,index-starts-at-one;
167 ti,index-starts-at-one;
197 ti,index-starts-at-one;
222 ti,index-starts-at-one;
231 ti,index-starts-at-one;
240 ti,index-starts-at-one;
249 ti,index-starts-at-one;
258 ti,index-starts-at-one;
267 ti,index-starts-at-one;
276 ti,index-starts-at-one;
[all …]
Daks-cdu.dts33 linux,rs485-enabled-at-boot-time;
39 linux,rs485-enabled-at-boot-time;
45 linux,rs485-enabled-at-boot-time;
Ddra7xx-clocks.dtsi211 ti,index-starts-at-one;
231 ti,index-starts-at-one;
242 ti,index-starts-at-one;
274 ti,index-starts-at-one;
300 ti,index-starts-at-one;
342 ti,index-starts-at-one;
376 ti,index-starts-at-one;
410 ti,index-starts-at-one;
421 ti,index-starts-at-one;
455 ti,index-starts-at-one;
[all …]
Domap44xx-clocks.dtsi156 ti,index-starts-at-one;
193 ti,index-starts-at-one;
225 ti,index-starts-at-one;
236 ti,index-starts-at-one;
255 ti,index-starts-at-one;
292 ti,index-starts-at-one;
310 ti,index-starts-at-one;
327 ti,index-starts-at-one;
343 ti,index-starts-at-one;
375 ti,index-starts-at-one;
[all …]
Dam43xx-clocks.dtsi218 ti,index-starts-at-one;
229 ti,index-starts-at-one;
240 ti,index-starts-at-one;
258 ti,index-starts-at-one;
276 ti,index-starts-at-one;
294 ti,index-starts-at-one;
313 ti,index-starts-at-one;
596 ti,index-starts-at-one;
672 ti,index-starts-at-one;
/linux-4.1.27/net/wimax/
DKconfig33 By default, debug messages are disabled at runtime and can
37 If set at zero, this will compile out all the debug code.
39 It is recommended that it is left at 8.
/linux-4.1.27/arch/mips/netlogic/
DKconfig11 pointer to the kernel. The corresponding DTS file is at
21 pointer to the kernel. The corresponding DTS file is at
31 pointer to the kernel. The corresponding DTS file is at
41 pointer to the kernel. The corresponding DTS file is at
50 pointer to the kernel. The corresponding DTS file is at
/linux-4.1.27/security/selinux/
DKconfig17 to be disabled at boot. If this option is selected, SELinux
32 'selinux', which allows SELinux to be disabled at boot. If this
34 default to 0, disabling SELinux at bootup. If this option is
36 enabling SELinux at bootup.
46 allows SELinux to be disabled at runtime prior to the policy load.
92 'checkreqprot=' boot parameter. It may also be changed at runtime
104 to userspace via /selinux/policyvers and used at policy load time.
130 running 'checkpolicy -V'. Or look at what policy you have
/linux-4.1.27/drivers/dma/
Ds3c24xx-dma.c172 struct list_head *at; member
223 struct s3c24xx_txd *at; member
381 struct s3c24xx_txd *txd = s3cchan->at; in s3c24xx_dma_getbytes_chan()
453 struct s3c24xx_sg *dsg = list_entry(txd->at, struct s3c24xx_sg, node); in s3c24xx_dma_start_next_sg()
519 s3cchan->at = txd; in s3c24xx_dma_start_next_txd()
526 txd->at = txd->dsg_list.next; in s3c24xx_dma_start_next_txd()
679 txd = s3cchan->at; in s3c24xx_dma_irq()
682 if (!list_is_last(txd->at, &txd->dsg_list)) { in s3c24xx_dma_irq()
683 txd->at = txd->at->next; in s3c24xx_dma_irq()
688 s3cchan->at = NULL; in s3c24xx_dma_irq()
[all …]
/linux-4.1.27/arch/arm/nwfpe/
Dsoftfloat-macros9 International Computer Science Institute, located at Suite 600, 1947 Center
13 processor in collaboration with the University of California at Berkeley,
88 _plus_ the number of bits given in `count'. The shifted result is at most
89 64 nonzero bits; this is stored at the location pointed to by `z0Ptr'. The
98 integer part of the result is returned at the location pointed to by
100 described above, and is returned at the location pointed to by `z1Ptr'.)
138 which are stored at the locations pointed to by `z0Ptr' and `z1Ptr'.
173 nonzero. The result is broken into two 64-bit pieces which are stored at
213 at most 128 nonzero bits; these are broken into two 64-bit pieces which are
214 stored at the locations pointed to by `z0Ptr' and `z1Ptr'. The bits shifted
[all …]
/linux-4.1.27/Documentation/usb/
Dusb-serial.txt13 Currently the driver can handle up to 256 different serial interfaces at
45 Connect Tech's Support Department at support@connecttech.com
85 There is a webpage and mailing lists for this portion of the driver at:
89 Kroah-Hartman at greg@kroah.com
114 To use Pocket IE, follow the instructions given at
117 packets unlike Win98. Another modification is required at least for the
137 NOTE: This has NOT been tested. Use at your own risk.
168 Warner at warner@lothar.com
178 have been pretty thoroughly tested at various baud rates with 8-N-1
186 More information is available at:
[all …]
Dusb-help.txt8 mirrors at http://usb.in.tum.de/linux-usb/
14 The Linux-USB mailing list is at linux-usb@vger.kernel.org
Drio.txt38 power well at all.
48 The main page for the project is hosted at sourceforge.net in the following
50 sourceforge home page at: <http://sourceforge.net/projects/rio500/>.
91 I/O ports at ....
99 Memory at .....
129 That's it. The Rio500 Utils at: http://rio500.sourceforge.net should
Dehci.txt57 at this writing no Linux drivers have been using that support.
78 behave quite right at the moment.
100 take over (at lower speed) all the devices that were previously handled
117 pending, usually one qtd per urb. (Look at it with
131 periodic transfers) use different encodings when operating at high speed.
150 and at most 13 of those fit into one USB 2.0 microframe. Eight USB 2.0
160 At this writing, individual USB 2.0 devices tend to max out at around
165 at around 28 MByte/sec aggregate transfer rate. While this is clearly
166 enough for a single device at 20 MByte/sec, putting three such devices
174 more silicon real estate at the problem so that new motherboard chip
/linux-4.1.27/Documentation/devicetree/bindings/serial/
Drs485.txt16 - linux,rs485-enabled-at-boot-time: empty property telling to enable the rs485
17 feature at boot time. It can be disabled later with proper ioctl.
28 linux,rs485-enabled-at-boot-time;
Dqcom,msm-uart.txt6 character at a time.
17 A uart device at 0xa9c00000 with interrupt 11.
/linux-4.1.27/arch/mips/jazz/
DKconfig9 the MIPS architecture, check out the Linux/MIPS FAQ on the WWW at
21 the MIPS architecture, check out the Linux/MIPS FAQ on the WWW at
32 the MIPS architecture, check out the Linux/MIPS FAQ on the WWW at
/linux-4.1.27/Documentation/virtual/uml/
DUserModeLinux-HOWTO.txt304 The sources are also available from cvs at the project's cvs page,
721 appear to hang. In reality, it's waiting for a telnet to connect, at
824 Look at the boot log to see what pty it got (this example will assume
980 You can also add devices to a UML and remove them at runtime. See the
1066 You should be able to ping the host at this point.
1092 is for UML to just blindly throw all packets at the host and let it
1266 These were pointed out by Tim Robinson <timro at trkr dot net> in
1339 devices at boot time.
1567 renamed so the network weenies of the world would stop growling at me.
1679 you specified on the command line. These problems will be fixed at
[all …]
/linux-4.1.27/fs/ext3/
Dnamei.c125 struct dx_entry *at; member
333 struct dx_entry *at, *entries, *p, *q, *m; in dx_probe() local
420 at = entries; in dx_probe()
424 if (dx_get_hash(++at) > hash) in dx_probe()
426 at--; in dx_probe()
430 assert (at == p - 1); in dx_probe()
433 at = p - 1; in dx_probe()
434 dxtrace(printk(" %x->%u\n", at == entries? 0: dx_get_hash(at), dx_get_block(at))); in dx_probe()
437 frame->at = at; in dx_probe()
439 if (!(bh = ext3_dir_bread(NULL, dir, dx_get_block(at), 0, err))) { in dx_probe()
[all …]
DKconfig12 at the time the system crashed, and can ensure that your file system
26 (available at <http://sourceforge.net/projects/e2fsprogs/>).
60 <http://acl.bestbits.at/> for details).
75 Linux website <http://acl.bestbits.at/>.
/linux-4.1.27/Documentation/isdn/
DREADME.hfc-pci24 at the hisax module load command line. Supply the load command with the desired
27 There tree cards installed in your machine at IO-base addresses 0xd000, 0xd400
29 If you want to use the card at 0xd400 standalone you should supply the insmod
31 If you want to use all three cards, but the order needs to be at 0xdc00,0xd400,
DREADME.FAQ10 you can have a look at my website:
20 Please have a look at the FAQ before posting anything in the Mailinglist,
/linux-4.1.27/Documentation/fb/
Dsh7760fb.txt11 * Framebuffer memory must be a large chunk allocated at the top
13 make the driver a module since at runtime it may become impossible to
20 a) if you're using 15/16bit color modes at >= 640x480 px resolutions,
35 DMARSRA register somewhere at boot).
49 Suggest you take a closer look at the SH7760 Manual, Section 30.
/linux-4.1.27/Documentation/cris/
DREADME51 (not all interfaces are available at the same time due to chip pin
111 ttyS0 at 0xb0000060 is a builtin UART with DMA
112 ttyS1 at 0xb0000068 is a builtin UART with DMA
113 ttyS2 at 0xb0000070 is a builtin UART with DMA
114 ttyS3 at 0xb0000078 is a builtin UART with DMA
115 Axis flash mapping: 200000 at 50000000
116 Axis flash: Found 1 x16 CFI device at 0x0 in 16 bit mode
117 Amd/Fujitsu Extended Query Table v1.0 at 0x0040
/linux-4.1.27/Documentation/devicetree/bindings/input/
Dimx-keypad.txt20 - pinctrl-names: The definition can be found at
23 - pinctrl-0: The definition can be found at
26 - linux,keymap: The definition can be found at
Datmel,maxtouch.txt17 starting at the LSB. Linux keycodes are defined in
20 Note: the numbering of the GPIOs and the bit they start at varies between
Dmatrix-keymap.txt1 A simple common binding for matrix-connected key boards. Currently targeted at
3 standardized interface at this time.
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-class-net-grcan11 or set by the module parameter grcan.enable0 and can be read at
23 or set by the module parameter grcan.enable1 and can be read at
34 set by the module parameter grcan.select and can be read at
Dpstore40 persistent storage until at least this amount is reached.
43 Pstore only supports one backend at a time. If multiple
45 set by passing the pstore.backend= argument to the kernel at
Dsysfs-bus-pci-drivers-ehci_hcd16 at full speed, which can be accomplished by forcing the
24 port 4 on bus 2 to run at full speed:
40 connect at full speed.
/linux-4.1.27/Documentation/devicetree/bindings/i2c/
Di2c-exynos5.txt4 at various speeds ranging from 100khz to 3.4Mhz.
30 -> If not specified, the bus operates in fast-speed mode at
31 at 100khz.
/linux-4.1.27/Documentation/arm/sunxi/
Dclocks.txt49 you can find it at
53 The authoritative source for information at this time is the ccmu driver
54 released by Allwinner, you can find it at
/linux-4.1.27/Documentation/block/
Dioprio.txt36 IOPRIO_CLASS_IDLE: This is the idle scheduling class, processes running at this
48 are inherited on fork, so you can use ionice to start the process at a given
53 will run ls at the best-effort scheduling class at the highest priority.
58 will change pid 100 to run at the realtime scheduling class, at priority 2.
Dcfq-iosched.txt71 This parameter forces idling at the CFQ group level instead of CFQ
79 multiple queues in the group at the same time and achieve higher throughput
154 whole is entitled to at its parent's level while the latter two
174 compete with. They always get 100% of what the cgroup won at the
189 Distribution below root. The total active weight at this level is
197 the implicit leaf node. The total active weight at this level is
210 request queue at a time. In such scenario, it is not possible to measure time
214 single queue and also allow dispatch from multiple cfq queue at the same time.
254 media which can support higher queue depth (multiple requests at in
255 flight at a time), then it cuts down on idling of individual queues and
[all …]
/linux-4.1.27/Documentation/thermal/
Dexynos_thermal32 TI1: Trimming info for 25 degree Celsius (stored at TRIMINFO register)
33 Temperature code measured at 25 degree Celsius which is unchanged
34 TI2: Trimming info for 85 degree Celsius (stored at TRIMINFO register)
35 Temperature code measured at 85 degree Celsius which is unchanged
/linux-4.1.27/Documentation/leds/
Dledtrig-oneshot.txt12 event, while in the latter it keeps blinking at constant rate, as to signal
26 delay_on - specifies for how many milliseconds the LED has to stay at
30 delay_off - specifies for how many milliseconds the LED has to stay at
46 echo 33 > delay_on # blink at 1 / (33 + 33) Hz on continuous traffic
/linux-4.1.27/drivers/net/wireless/p54/
DKconfig11 These devices require softmac firmware which can be found at
23 These devices require softmac firmware which can be found at
37 This driver requires softmac firmware which can be found at
61 file is put at the right place. (usually /lib/firmware.)
/linux-4.1.27/Documentation/devicetree/bindings/net/
Dallwinner,sun4i-mdio.txt11 Example at the SoC level:
19 And at the board level:
Dmarvell-orion-mdio.txt20 Example at the SoC level:
29 And at the board level:
/linux-4.1.27/Documentation/fmc/
Didentifiers.txt11 live at offset 0 of the EEPROM, and typically extends for a few hundred
17 paired at run time. EEPROM programming uses tools that are part of this
33 back at run time, but we are not able to either generate or parse more
108 The SDB entry point (which acts as a directory listing) cannot live at
112 record at address 256, 512 and 1024.
117 at the beginning of the storage device. If needed, you can also place
118 other files at a special offset (we sometimes do it for backward
128 EEPROM: the FRU information, at offset zero, with a suggested filename
140 the fine-delay driver, and must live at a known address of 0x1800. By
166 FRU information blob. The fd-calib file lives at offset 0x1800 and is
Dfmc-write-eeprom.txt24 at offset 0.
43 This is a real example: that writes 5 bytes at position 0x110:
49 [19983.391498] spec 0000:03:00.0: write 5 bytes at 0x0110
53 EEPROM image, at least if your mezzanines are being used in the White
59 the image starting at offset 0, it will deregister and register again
/linux-4.1.27/drivers/media/rc/keymaps/
DKconfig12 The ir-keytable program, available at v4l-utils package
14 userspace. Its available at
/linux-4.1.27/arch/x86/kernel/apic/
Dvector.c69 struct irq_cfg *alloc_irq_and_cfg_at(unsigned int at, int node) in alloc_irq_and_cfg_at() argument
71 int res = irq_alloc_desc_at(at, node); in alloc_irq_and_cfg_at()
77 cfg = irq_cfg(at); in alloc_irq_and_cfg_at()
82 cfg = alloc_irq_cfg(at, node); in alloc_irq_and_cfg_at()
84 irq_set_chip_data(at, cfg); in alloc_irq_and_cfg_at()
86 irq_free_desc(at); in alloc_irq_and_cfg_at()
90 static void free_irq_cfg(unsigned int at, struct irq_cfg *cfg) in free_irq_cfg() argument
94 irq_set_chip_data(at, NULL); in free_irq_cfg()
/linux-4.1.27/drivers/scsi/csiostor/
DKconfig11 our website at <http://www.chelsio.com>.
13 For customer support, please visit our customer support page at
/linux-4.1.27/fs/jffs2/
DKconfig12 available at <http://sources.redhat.com/jffs2/>.
22 enable a few assertions and will print debugging messages at the
25 areas which at one point needed debugging, but when the bugs were
29 messages at debug level 1 while the misbehaviour was occurring.
72 <http://acl.bestbits.at/> for details).
86 Linux website <http://acl.bestbits.at/>.
186 decompression) at the expense of size.
/linux-4.1.27/arch/m68k/hp300/
DREADME.hp3004 The Linux/HP web page is at <http://www.tazenda.demon.co.uk/phil/linux-hp/>
9 The serial console is probably broken at the moment but the Topcat/HIL keyboard
/linux-4.1.27/arch/arm/include/debug/
Dvexpress.S30 @ should use UART at 0x10009000
32 @ at 0x1c090000
/linux-4.1.27/drivers/infiniband/hw/cxgb4/
DKconfig10 our website at <http://www.chelsio.com>.
12 For customer support, please visit our customer support page at
/linux-4.1.27/arch/mn10300/kernel/
Dprofile-low.S11 # 2 of the Licence, or (at your option) any later version.
30 # - intended to run at interrupt priority 1
Dmn10300-serial-low.S11 # 2 of the Licence, or (at your option) any later version.
37 # - intended to run at interrupt priority 1 (not affected by local_irq_disable)
60 # - intended to run at interrupt priority 1 (not affected by local_irq_disable)
107 # - intended to run at interrupt priority 1 (not affected by local_irq_disable)
/linux-4.1.27/Documentation/devicetree/
Dchangesets.txt9 at once before emitting OF_RECONFIG notifiers. This is so that the
20 a set of changes. No changes to the active tree are made at this point.
25 ensures there can only be one editor at a time.
/linux-4.1.27/Documentation/filesystems/nfs/
Dnfsd-admin-interfaces.txt8 which is normally mounted at /proc/fs/nfsd/.
22 udp and one tcp listener at port 2049 (see nfsd_init_socks).
27 are thrown away at that point.
/linux-4.1.27/Documentation/arm/
DPorting1 Taken from list archive at http://lists.arm.linux.org.uk/pipermail/linux-arm-kernel/2001-July/00406…
18 virtual or physical addresses here, since the MMU will be off at
20 the kernel at this address to start it booting. This doesn't have
26 This must be pointing at RAM. The decompressor will zero initialise
68 always starts at zero, this is the maximum address that a user
85 it must be located at 32768 bytes into a 128MB region. Previous
/linux-4.1.27/Documentation/x86/
Dboot.txt152 following header at offset 0x01f1. The real-mode code can total up to
210 If the "HdrS" (0x53726448) magic number is not found at offset 0x202,
216 Real-mode kernel must be located at 0x90000.
232 (obligatory). Boot loaders who want to load the kernel at a
345 number string can be found at offset 0x1e00 in the kernel file.
406 - If 0, the protected-mode code is loaded at 0x10000.
407 - If 1, the protected-mode code is loaded at 0x100000.
440 loaded at 0x90000, it gets moved there later in the loading
448 if the real-mode code is loaded at 0x90000.
464 relocatable kernel at a nonstandard address it will have to modify
[all …]
/linux-4.1.27/Documentation/sound/oss/
DESS186835 at the beginning and the
37 at the end.)
40 the MPU-401 MIDI port is located at 0x0330. IRQ is IRQ 5, DMA is channel 1.
DCMI833044 sb: CMI8330 sb base located at 0x220
45 sb: CMI8330 mpu base located at 0x330
47 sb: ISAPnP reports CMI 8330 SoundPRO at i/o 0x220, irq 7, dma 1,5
64 you may get a better one I guess at http://www.roestock.demon.co.uk/isapnptools/.
/linux-4.1.27/Documentation/devicetree/bindings/arm/
Dvic.txt22 represents single interrupt source, starting from source 0 at LSb and ending
23 at source 31 at MSb. A bit that is set means that the source is wired and
/linux-4.1.27/Documentation/blockdev/
Dfloppy.txt7 at <http://fdutils.linux.lu/faq.html>.
14 lilo. This option can be typed at the boot prompt, or entered in the
18 at the lilo boot prompt (if you have a thinkpad):
76 The second floppy controller is assumed to be at <address>.
77 This option is not needed if the second controller is at address
97 later are OK. You also need at least a 486 to use nodma.
211 Additional parameters of the floppy driver can be configured at
217 The latest version can be found at fdutils homepage:
220 The fdutils releases can be found at:
229 me at Alain.Knaff@poboxes.com . If you post to Usenet, preferably use
/linux-4.1.27/lib/
DKconfig.kmemcheck20 will insert extra code at *every* read and write to tracked memory
24 or enable kmemcheck at boot-time. If the kernel is started with
28 prompt "kmemcheck: default mode at boot"
91 accesses where not all the bits are initialized at the same time.
/linux-4.1.27/net/sched/
Dact_mirred.c134 u32 at; in tcf_mirred() local
153 at = G_TC_AT(skb->tc_verd); in tcf_mirred()
158 if (!(at & AT_EGRESS)) { in tcf_mirred()
165 skb2->tc_verd = SET_TC_FROM(skb2->tc_verd, at); in tcf_mirred()
/linux-4.1.27/drivers/fmc/
DKconfig15 The framework was born outside of the kernel and at this time
17 is at git://ohwr.org/fmc-projects/fmc-bus.git .
25 that can be rewritten at run time and usef for matching
/linux-4.1.27/Documentation/i2c/busses/
Di2c-piix46 Datasheet: Publicly available at the Intel website
11 SB700 register reference available at:
14 Datasheet: Publicly available at the AMD website
19 Datasheet: Publicly available at the SMSC website http://www.smsc.com
32 Forcibly enable the PIIX4 at the given address. EXTREMELY DANGEROUS!
89 device is located at 00:0f.0.
Di2c-viapro5 Datasheet: Sometimes available at the VIA website
8 Datasheet: Sometimes available at the VIA website
39 Forcibly enable the SMBus at the given address. EXTREMELY DANGEROUS!
Di2c-i80133 Datasheets: Publicly available at the Intel website
64 The ICH chips contain at least SEVEN separate PCI functions in TWO logical
77 The ICH chips are quite similar to Intel's PIIX4 chip, at least in the
109 SMBus device at 00:1f.3 in lspci, and you can't figure out any way in the
138 Memory at fc000000 (32-bit, prefetchable) [size=32M]
145 and then add a case for your subdevice ID at the right place in
/linux-4.1.27/arch/m68k/
DKconfig.machine30 computers (yes, there is experimental support now, at least for part
106 is at <http://www.angelfire.com/ca2/tech68k/sun3.html>.
116 manufactured in Germany. There is an official Q40 home page at
330 Define the address that RAM starts at. On many platforms this is
332 platforms choose to setup their RAM at other addresses within the
340 kernel will try to probe the RAM size at runtime. This is not
348 put at the start of RAM, but it doesn't have to be. On ColdFire
378 Typically on m68k systems the kernel will not start at the base
381 processor vectors at the base of RAM and then the start of the
384 a system with the RAM based at address 0, and leaving enough room
[all …]
/linux-4.1.27/arch/sh/lib/
Dmemcpy-sh4.S27 ! Read a long word and write a long word at once
73 ! Finally, copy a byte at once, if necessary
100 ! Read a long word and write a long word at once
141 ! Finally, copy a byte at once, if necessary
192 ! Check for small copies, and if so do a simple byte at a time copy.
194 ! Deciding on an exact value of 'small' is not easy, as the point at which
196 ! cycle counts for differnet sizes using byte-at-a-time vs. optimised):
197 ! size byte-at-time long word byte
395 ! Size is at least 64 bytes, so will be going round the big loop at least once.
456 ! this can be reversed at the end, so we don't need to save any extra
[all …]
/linux-4.1.27/drivers/net/
DLICENSE.SRC1 Code in this directory written at the IDA Supercomputing Research Center
11 This software was developed at SRC for use in internal research, and the
/linux-4.1.27/drivers/infiniband/hw/cxgb3/
DKconfig10 our website at <http://www.chelsio.com>.
12 For customer support, please visit our customer support page at
/linux-4.1.27/Documentation/video4linux/cx88/
Dhauppauge-wintv-cx88-ir.txt30 GP_SAMPLE register is at 0x35C058
32 Bits are then right shifted into the GP_SAMPLE register at the specified
41 over time, so don't assume any sample starts at any particular place.
/linux-4.1.27/arch/powerpc/boot/dts/
Ddigsy_mtc.dts10 * Free Software Foundation; either version 2 of the License, or (at your
76 compatible = "at,24c08";
114 // 16-bit flash device at LocalPlus Bus CS0
Dpdm360ng.dts12 * Free Software Foundation; either version 2 of the License, or (at your
27 reg = <0x00000000 0x20000000>; // 512MB at 0
101 compatible = "at,24c01";
Dcm5200.dts9 * Free Software Foundation; either version 2 of the License, or (at your
79 // 16-bit flash device at LocalPlus Bus CS0
/linux-4.1.27/drivers/scsi/sym53c8xx_2/
Dsym_misc.h94 struct sym_quehead *at = head->flink; in sym_que_splice() local
99 last->flink = at; in sym_que_splice()
100 at->blink = last; in sym_que_splice()
/linux-4.1.27/drivers/net/plip/
DKconfig18 ports (the connectors at the computers with 25 holes) are connected
20 bits at a time (mode 0) or with special PLIP cables, to be used on
21 bidirectional parallel ports only, which can transmit 8 bits at a
/linux-4.1.27/Documentation/arm/SA1100/
DBrutus14 must be loaded at 0xc0008000 in Brutus's memory and execution started at
58 some drivers in order to drive already inserted cards at boot time with
/linux-4.1.27/Documentation/x86/x86_64/
Dfake-numa-for-cpusets25 Faking node 0 at 0000000000000000-0000000020000000 (512MB)
26 Faking node 1 at 0000000020000000-0000000040000000 (512MB)
27 Faking node 2 at 0000000040000000-0000000060000000 (512MB)
28 Faking node 3 at 0000000060000000-0000000080000000 (512MB)
/linux-4.1.27/Documentation/RCU/
Dlockdep-splat.txt14 So let's look at an example RCU lockdep splat from 3.0-rc5, one that
27 #0: (&shost->scan_mutex){+.+.+.}, at: [<ffffffff8145efca>]
29 #1: (&eq->sysfs_lock){+.+...}, at: [<ffffffff812a5032>]
31 #2: (&(&q->__queue_lock)->rlock){-.-...}, at: [<ffffffff812b6233>]
86 return value from rcu_dereference(), or at least until there is some
/linux-4.1.27/arch/powerpc/boot/dts/fsl/
Dmpc8544si-post.dtsi20 * Foundation, either version 2 of that License or (at your option) any
42 /* controller at 0x8000 */
53 /* controller at 0x9000 */
82 /* controller at 0xa000 */
110 /* controller at 0xb000 */
Dmpc8548si-post.dtsi20 * Foundation, either version 2 of that License or (at your option) any
42 /* controller at 0x8000 */
53 /* controller at 0x9000 */
64 /* controller at 0xa000 */
Dmpc8536si-post.dtsi20 * Foundation, either version 2 of that License or (at your option) any
42 /* controller at 0x8000 */
53 /* controller at 0x9000 */
82 /* controller at 0xa000 */
110 /* controller at 0xb000 */
/linux-4.1.27/Documentation/video4linux/bttv/
DREADME.quirks11 enabled automagically for known-buggy chipsets (look at the kernel
26 the video function at power-up and parks there during no requests for
43 (1) Deassert REQ at the same time as asserting FRAME.
61 responsibility to remove its request at the same time. It is the
64 be removed at the end of the transaction: for example, when the bus is
DREADME5 You'll need at least these config options for bttv:
47 Memory at e2000000 (32-bit, prefetchable) [size=4K]
60 PAL/NTSC/SECAM test signal generator at home, so I often can't
78 at least the country you are living in).
/linux-4.1.27/tools/usb/usbip/
DREADME148 : (Defined at Interface level) / unknown subclass / unknown protocol (00/00/00)
153 : (Defined at Interface level) / unknown subclass / unknown protocol (00/00/00)
158 : (Defined at Interface level) / unknown subclass / unknown protocol (00/00/00)
163 : (Defined at Interface level) / unknown subclass / unknown protocol (00/00/00)
176 Port 00: <Port in Use> at Full Speed(12Mbps)
/linux-4.1.27/tools/perf/Documentation/
Dperf-report.txt76 - dso: name of library or module executed at the time of sample
77 - symbol: name of function executed at the time of sample
80 - cpu: cpu number the task ran at the time of sample
81 - srcline: filename and line number executed at the time of sample. The
129 - symbol_daddr: name of data symbol being executed on at the time of sample
131 on at the time of sample
132 - locked: whether the bus was locked at the time of sample
133 - tlb: type of tlb access for the data at the time of sample
134 - mem: type of memory access for the data at the time of sample
135 - snoop: type of snoop (if any) for the data at the time of sample
[all …]
/linux-4.1.27/Documentation/cpuidle/
Dgovernor.txt11 cpuidle governor is policy routine that decides what idle state to enter at
20 More than one governor can be registered at the same time and
/linux-4.1.27/Documentation/development-process/
D8.Conclusion14 Various web sites discuss kernel development at all levels of detail. Your
17 index at:
31 Rubini, and Greg Kroah-Hartman). Online at
43 Documentation for git can be found at:
/linux-4.1.27/Documentation/ABI/stable/
Dsysfs-class-udc6 Indicates if an OTG A-Host supports HNP at an alternate port.
14 Indicates if an OTG A-Host supports HNP at this port.
30 Indicates the current negotiated speed at this port.
Dfirewire-cdev29 resources (channels, bandwidth) at the bus's IRM
84 prot = at least PROT_READ for reception and at least PROT_WRITE
98 bandwidth at the IRM that were marked for kernel-assisted
Dsysfs-bus-usb24 being autosuspended at all, and writing a negative value
89 KernelVersion: since at least 2.6.18
96 KernelVersion: since at least 2.6.18
129 descriptor at a time until the next config descriptor is found.
135 KernelVersion: since at least 2.6.18
/linux-4.1.27/arch/arm/mach-footbridge/
DKconfig32 prototypes at this time. Information is available at:
74 NetWinder. Information about this machine can be found at:
/linux-4.1.27/arch/arm/mach-ep93xx/
DKconfig26 first SDRAM bank at 0x00000000.
32 first SDRAM bank at 0xc0000000.
38 first SDRAM bank at 0xd0000000.
44 first SDRAM bank at 0xe0000000.
50 first SDRAM bank at 0xf0000000.
/linux-4.1.27/drivers/staging/vme/devices/
DKconfig8 VME windows in a manner at least semi-compatible with the interface
9 provided with the original driver at <http://www.vmelinux.org/>.
/linux-4.1.27/fs/befs/
DKconfig10 available at this time). It is a 64 bit filesystem, so it supports
13 If you use this filesystem, you should also say Y to at least one
/linux-4.1.27/fs/ceph/
DKconfig15 More information at http://ceph.newdream.net/.
38 Linux website <http://acl.bestbits.at/>.
/linux-4.1.27/fs/squashfs/
DKconfig70 Only one block (data or metadata) can be decompressed at any
130 aimed at embedded systems with slower CPUs where the overheads
145 aimed at embedded systems with slower CPUs where the overheads
160 the default zlib compression, at the expense of greater CPU and
205 has to re-read fragments less often from disk, at the expense
207 SquashFS uses less memory at the expense of extra reads from disk.
209 Note there must be at least one cached fragment. Anything
/linux-4.1.27/Documentation/netlabel/
Dcipso_ipv4.txt20 CIPSO label can be changed at any point in time, however, it is recommended
28 The CIPSO/IPv4 protocol engine validates every CIPSO IP option it finds at the
32 This is typically done at the socket layer using the 'socket_sock_rcv_skb()'
/linux-4.1.27/Documentation/arm/Samsung-S3C24XX/
DCPUfreq.txt11 rate the core is running at.
28 framework needs to supply at least basic details of what is required.
30 The core registers with drivers/cpufreq at init time if all the data
DSuspend.txt11 at the relevant CPU datasheet from Samsung.
19 2) Support for at least 1 source for resume
23 4) Any peripherals that are going to be powered down at the same
92 rely on are still enabled at that point.
/linux-4.1.27/arch/cris/boot/rescue/
Dkimagerescue.S48 ;; since etrax actually starts at address 2 when booting from flash, we
71 ;; product and put the sp at the top for now.
75 ;; setup the serial port at 115200 baud
/linux-4.1.27/arch/openrisc/
DREADME.openrisc23 In order to build and run Linux for OpenRISC, you'll need at least a basic
28 a toolchain can be found at:
35 your OpenRISC Linux kernel if you don't have an OpenRISC processor at hand.
/linux-4.1.27/arch/xtensa/
DKconfig.debug27 bool "Perform S32C1I instruction self-test at boot"
30 Enable this option to test S32C1I instruction behavior at boot.
/linux-4.1.27/Documentation/ia64/
Dfsys.txt19 in a pt-regs structure at the top of the kernel memory stack.
34 - execution is at privilege level 0 (most-privileged)
51 privilege level is at level 0, this means that fsys-mode requires some
139 execution may be pre-empted and resumed on another CPU at any given
178 The "epc" instruction doesn't change the contents of PSR at all. This
205 breakpoint that triggers at any privilege level other than 3 (user-mode).
209 such that execution resumes in the gate page at
212 fsyscall-handler, at which point, by definition, a syscall
228 state such that execution resumes in the gate page at
280 The ELF DSO is a pre-linked library that is mapped in by the kernel at
[all …]
/linux-4.1.27/arch/powerpc/include/asm/
Dio.h565 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) ret (*name) at; argument
566 #define DEF_PCI_AC_NORET(name, at, al, space, aa) void (*name) at; argument
576 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) \ argument
577 static inline ret name at \
584 #define DEF_PCI_AC_NORET(name, at, al, space, aa) \ argument
585 static inline void name at \

12345678910>>...14