Home
last modified time | relevance | path

Searched full:might (Results 1 – 25 of 624) sorted by relevance

12345678910>>...25

/Documentation/livepatch/
Dcumulative-patches.rst5 There might be dependencies between livepatches. If multiple patches need
10 This might become a maintenance nightmare. Especially when more patches
36 As a result, the livepatch authors might maintain sources only for one
42 actually in use. Also the livepatch might then be seen as a "normal"
83 As a result, it might be dangerous to replace newer cumulative patches by
84 older ones. The old livepatches might not provide the necessary callbacks.
86 This might be seen as a limitation in some scenarios. But it makes life
101 A good practice might be to remove shadow variables in the post-unpatch
Dsystem-state.rst13 The problems might come with shadow variables and callbacks. They might
31 The state of the system might get modified either by several livepatch callbacks
99 It might be the original system state or the state modification
113 - Allocate *state->data* when necessary. The allocation might fail
125 - Clean up its own mess in case of error. It might be done by a custom
154 state. It might mean doing nothing.
166 It might be called also during the transition reverse. Therefore it
Dlivepatch.rst61 the same way to the rest of the system. In this case, the functions might
64 But there are more complex fixes. For example, a patch might change
66 might exchange meaning of some temporary structures and update
236 might want to access functions or data from the original source file
270 together. Note that patched modules might be loaded later than
271 the patch itself and the relevant functions might be patched
307 Second, the error code might be used to refuse loading the module when
336 Note that functions might be patched multiple times. The ftrace handler
344 functions might be patched two times only during the transition period.
350 All enabled patches might get replaced by a cumulative patch that
[all …]
/Documentation/admin-guide/
Dreporting-issues.rst21 In all other cases try your best guess which kernel part might be causing the
55 developers. It might be all that's needed for people already familiar with
89 kernel modules on-the-fly, which solutions like DKMS might be doing locally
93 that made the kernel set this flag might be causing the issue you face.
111 thoroughly for reports that might match your issue. If you find anything,
119 situations; during the merge window that actually might be even the best
149 link to it. Include or upload all other information that might be relevant,
188 the issue might have already been fixed there. If you first noticed the
212 might not get the issue solved in older releases: the fix might be too big
219 the issue in mainline, as its commit message might tell you if the fix is
[all …]
Dquickly-build-trimmed-linux.rst18 which might be relevant for you.]*
32 # Hint: at this point you might want to adjust the build configuration; you'll
47 # Reminder: you might want to add or modify a build tag at this point.
73 that might occur at a particular point -- and how to then get things rolling
78 might want to switch to a rendered version, as it makes it a lot easier to
224 aspect in mind when using a kernel built with this make target, as it might
231 * Check if you might want to or have to adjust some kernel configuration
235 might need to decode a stack trace found for example in a 'panic', 'Oops',
296 version you care about, as git otherwise might retrieve the entire commit
307 At this point you might want to patch the sources again or set/modify a build
[all …]
/Documentation/driver-api/soundwire/
Derror_handling.rst21 and after a number of such errors are detected the bus might be reset. Note
38 backtracking and restarting the entire programming sequence might be a
39 solution. Alternatively some implementations might directly issue a bus
58 hard-reset might be the best solution.
62 that the Slave might behave in implementation-defined ways. The bus
/Documentation/networking/
Dipv6.rst23 its functionality. This might be used when another module
45 on all interfaces. This might be used when one does not wish
65 This might be used when no IPv6 addresses are desired.
/Documentation/userspace-api/media/rc/
Dlirc-set-wideband-receiver.rst39 This might be useful of receivers that have otherwise narrow band receiver
40 that prevents them to be used with some remotes. Wide band receiver might
46 Wide band receiver might be implicitly enabled if you enable
/Documentation/ABI/stable/
Dsysfs-hypervisor-xen7 Might return "<denied>" in case of special security settings
16 Might return "<denied>" in case of special security settings
25 Might return "<denied>" in case of special security settings
56 Might return "<denied>" in case of special security settings
73 Might return "0" in case of special security settings
105 Might return "<denied>" in case of special security settings
/Documentation/ABI/testing/
Dsysfs-bus-iio-dma-buffer6 buffers. If this alignment requirement is not met samples might
15 that the alignment requirement in samples sets might change
Dsysfs-memory-page-offline15 this might change.
40 this might change.
/Documentation/core-api/
Dprintk-index.rst21 is not always trivial. Various changes might be backported. Various kernel
22 versions might be used on different monitored systems.
24 This is where the printk index feature might become useful. It provides
44 might appear in "vmlinux" when the module is built-in.
68 between various kernels. Especially the line number might change
118 interface might then show the printk formats including these prefixes.
Ddma-attributes.rst50 buffer from CPU domain to device domain. Some advanced use cases might
61 might be a time consuming operation, especially if the buffers are
85 pages). You might want to specify this if:
88 You might know that the accesses are likely to be sequential or
95 might be the case.
Dmemory-allocation.rst96 might deplete the memory and the next user might hit the more aggressive
129 This might be really dangerous especially for larger orders.
169 should be used if a part of the cache might be copied to the userspace.
177 or `kvfree`, where the latter two might be more convenient thanks to not
/Documentation/power/
Dtricks.rst7 If you want to trick swsusp/S3 into working, you might want to try:
19 * use vga text console, shut down X. [If you really want X, you might
/Documentation/dev-tools/kunit/
Dfaq.rst34 (``tools/testing/kunit/kunit.py``) that might not support some architectures
37 In short, yes, you can run KUnit on other architectures, but it might require
55 usually just two or three. For example, someone might write an integration
62 code under test. For example, someone might write an end-to-end test for the
74 parameter. This might show details or error messages hidden by the kunit_tool
90 It also preserves any config changes you might make, so you can
/Documentation/process/
Dvolatile-considered-harmful.rst36 change unexpectedly while the_lock is held. Any other code which might
40 compiler might think it knows what will be in shared_data, but the
61 Another situation where one might be tempted to use volatile is
76 - The above-mentioned accessor functions might use volatile on
92 - Pointers to data structures in coherent memory which might be modified
/Documentation/RCU/
Drcu_dereference.rst113 can now be speculated, such that it might happen before the
195 might provide, especially if you are making use of feedback-based
260 You might be surprised that the outcome (r1 == 143 && r2 == 44) is possible,
261 but you should not be. After all, the updater might have been invoked
333 first pointer might be. This lack of knowledge prevents the compiler
334 from carrying out optimizations that otherwise might destroy the ordering
338 But without rcu_dereference(), the compiler knows more than you might
400 2. If the access might be within an RCU read-side critical section
408 3. If the access might be within an RCU read-side critical section
427 is appropriate. In addition, rcu_dereference_raw() might be
[all …]
DNMI-RCU.rst59 …Why might the rcu_dereference_sched() be necessary on Alpha, given that the code referenced by the…
107 …Why might the rcu_dereference_sched() be necessary on Alpha, given that the code referenced by the…
109 The caller to set_nmi_callback() might well have
113 just after the new handler was set might see the pointer
Drcubarrier.rst12 delete an element p from the linked list from IRQ context might then be
19 IRQ context. The function p_callback() might be defined as follows::
43 One might be tempted to try several back-to-back synchronize_rcu()
45 heavy RCU-callback load, then some of the callbacks might be deferred in
166 Is there any other situation where rcu_barrier() might
171 Your module might have additional complications. For example, if your
296 Is there any other situation where rcu_barrier() might
341 Nevertheless, that extra count might still be a good idea.
377 as might well happen due to real-time latency considerations,
/Documentation/driver-api/media/drivers/
Dbttv-devel.rst27 If your card isn't listed there, you might check the source code for
34 example. If your board has one, you might have to load a helper
37 you might want to check the video4linux mailing list archive first...
87 card installed, you might to check out if you can read these registers
91 You might also dig around in the ``*.ini`` files of the Windows applications.
/Documentation/hwmon/
Dsl28cpld.rst21 supervisor. In the future there might be other flavours and additional
22 hardware monitoring might be supported.
/Documentation/sound/designs/
Dpowersave.rst34 Note that you might hear click noise/pop when changing the power
42 consumption, but might result in longer wake-up time and click noise.
/Documentation/devicetree/bindings/sound/
Dcirrus,cs42l42.yaml78 debounce, the tip sense pin might be noisy on a plug event.
97 debounce, the tip sense pin might be noisy on an unplug event.
146 For different hardware setups, a designer might want to tweak this.
183 headset type. For different hardware setups, a designer might want
/Documentation/arch/arm64/
Damu.rst73 returned by the register reads might not correctly reflect reality. Most
102 - Security reasons: they might expose information about code executed in
115 - Security reasons: they might expose information about code executed

12345678910>>...25