aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/generate_rust_analyzer.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/generate_rust_analyzer.py')
0 files changed, 0 insertions, 0 deletions
ogheader'>2002-08-12Fix and prevent bugs in device_register()Patrick Mochel1-9/+11 When adding to the global device list, we were adding devices just after their parent, while we wanted to add them just before. That way when we iterate over the list on suspend and shutdown, we'll hit all children before the parents. Make sure dev->driver_list and dev->bus_list are initialized when the device is registered Remove device from global and parent's list if registration failed. 2002-08-12[PATCH] Network Options and Network Devices togetherRandy Dunlap14-66/+39 This patch to 2.5.31 pushes "Networking options" and "Network device support" together for all architectures that have them. They shouldn't be split apart by Telephony, I2O, Fusion, etc. 2002-08-12[PATCH] DECLARE_PER_CPU/DEFINE_PER_CPU patchRusty Russell8-22/+44 This old __per_cpu_data define wasn't enough if an arch wants to use the gcc __thread prefix (thread local storage), which needs to go *before* the type in the definition. So we have to go for a DECLARE macro, and while we're there, separate DECLARE and DEFINE, as definitions of per-cpu data cannot live in modules. This also means that accidental direct references to per-cpu variables will be caught at compile time. 2002-08-12[PATCH] get_cpu_var patchRusty Russell10-32/+31 This makes introduces get_cpu_var()/put_cpu_var() which gets a per-cpu variable and disables preemption, and renames the (unsafe under preemption) "this_cpu()" macro to __get_cpu_var(). It also deletes the redundant definitions in linux/smp.h. 2002-08-12[PATCH] Export __per_cpu_offset so modules can use per-cpu data.Rusty Russell1-0/+4 As per Andrew Morton's request. 2002-08-12[PATCH] NUMA-Q relocate early ioremapMartin J. Bligh1-10/+10 This moves the early ioremap call to after cpu_online_map is initialized. Note everything is wrapped in clustered_apic_mode, so should be safe. 2002-08-12[PATCH] UML patch fixupJeff Dike1-4/+0 When you reverted the stringify changes I sent last time, you missed removing a comment, which is now grossly wrong. This patch finishes the job. 2002-08-12M68k fbdev fixesJames Simmons3-74/+70 2002-08-12[PATCH] cciss partitioning stuff, per-disk gendisksAlexander Viro4-119/+78 2002-08-12[PATCH] fix syscall prototypes in init/do_mounts.cChristoph Hellwig1-9/+9 Most syscall take a const char * argument in fact, also mark them extern. 2002-08-12[PATCH] A generic RTC driver [3/3]Tom Rini6-8/+380 This is part 3 of 3 of the genrtc patches. This is my own slight bit of work, as well as some work by Randolph Chung. This changes set_rtc_time(struct *rtc_time) to return an int instead of void. This was done so that the arch-specific code here could do additional checks on the time and return an error if needed. This then introduces include/asm-generic/rtc.h, include/asm-i386/rtc.h and include/asm-alpha/rtc.h. include/asm-generic/rtc.h contains the get_rtc_time and set_rtc_time logic that is in drivers/char/rtc.c and has been tested on SMP i386. This also modifies include/asm-ppc/rtc.h to return -ENODEV if no rtc hardware is present. Additionally, Dave Jones pointed out to me a place where we might not be safe when jiffies wraps, so this switches that to time_after(). From Randolph Chung, support for a 64bit kernel and a 32bit userland.