summaryrefslogtreecommitdiffstats
path: root/kernel/async.c
AgeCommit message (Expand)Author
2019-06-05treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 441Thomas Gleixner
2019-04-09treewide: Switch printk users from %pf and %pF to %ps and %pS, respectivelySakari Ailus
2019-01-31async: Add support for queueing on specific NUMA nodeAlexander Duyck
2018-02-06kernel/async.c: revert "async: simplify lowest_in_progress()"Rasmus Villemoes
2017-05-23async: Adjust system_state checksThomas Gleixner
2015-11-19async: export current_is_async()Lukas Wunner
2014-10-09kernel/async.c: switch to pr_foo()Ionut Alexa
2013-03-12async: rename and redefine async_func_ptrLai Jiangshan
2013-03-12async: simplify lowest_in_progress()Lai Jiangshan
2013-01-25async: initialise list heads to fix crashJames Hogan
2013-01-23async: replace list of active domains with global list of pending itemsTejun Heo
2013-01-23async: keep pending tasks on async_domain and remove async_pendingTejun Heo
2013-01-23async: use ULLONG_MAX for infinity cookie valueTejun Heo
2013-01-23async: bring sanity to the use of words domain and runningTejun Heo
2013-01-23Merge branch 'master' into for-3.9-asyncTejun Heo
2013-01-22async: fix __lowest_in_progress()Tejun Heo
2013-01-18workqueue: implement current_is_async()Tejun Heo
2013-01-16module, async: async_synchronize_full() on module init iff async is usedTejun Heo
2012-07-20[SCSI] async: make async_synchronize_full() flush all work regardless of domainDan Williams
2012-07-20[SCSI] async: introduce 'async_domain' typeDan Williams
2012-01-13kernel/async: remove redundant declaration.Rusty Russell
2011-10-31kernel: Map most files to use export.h instead of module.hPaul Gortmaker
2011-09-15async: uninitialized warning correctionsVitaliy Ivanov
2011-06-14async: Fixed an include coding style issuePaul McQuade
2010-07-14async: use workqueue for worker poolTejun Heo
2010-03-30include cleanup: Update gfp.h and slab.h includes to prepare for breaking imp...Tejun Heo
2009-06-08async: Fix lack of boot-time console due to insufficient synchronizationLinus Torvalds
2009-05-24async: make sure independent async domains can't accidentally entangleJames Bottomley
2009-03-28async: remove the temporary (2.6.29) "async is off by default" codeArjan van de Ven
2009-02-08async: use list_move_tailStefan Richter
2009-02-08async: Rename _special -> _domain for clarity.Cornelia Huck
2009-02-08async: Add some documentation.Cornelia Huck
2009-02-08async: Handle kthread_run() return codes.Cornelia Huck
2009-02-08async: Fix running list handling.Cornelia Huck
2009-02-05kernel/async.c: fix printk warningsAndrew Morton
2009-01-12async: fix __lowest_in_progress()Arjan van de Ven
2009-01-09async: make async a command line option for nowArjan van de Ven
2009-01-08async: make async_synchronize_full() more serializingArjan van de Ven
2009-01-07async: don't do the initcall stuff post bootArjan van de Ven
2009-01-07async: Asynchronous function calls to speed up kernel bootArjan van de Ven
an>/* 832x624, 75Hz */ #define VMODE_1024_768_60 14 /* 1024x768, 60Hz */ #define VMODE_1024_768_70 15 /* 1024x768, 70Hz (or 72Hz?) */ #define VMODE_1024_768_75V 16 /* 1024x768, 75Hz (VESA) */ #define VMODE_1024_768_75 17 /* 1024x768, 75Hz */ #define VMODE_1152_870_75 18 /* 1152x870, 75Hz */ #define VMODE_1280_960_75 19 /* 1280x960, 75Hz */ #define VMODE_1280_1024_75 20 /* 1280x1024, 75Hz */ #define VMODE_1152_768_60 21 /* 1152x768, 60Hz Titanium PowerBook */ #define VMODE_1600_1024_60 22 /* 1600x1024, 60Hz 22" Cinema Display */ #define VMODE_MAX 22 #define VMODE_CHOOSE 99 #define CMODE_NVRAM -1 #define CMODE_CHOOSE -2 #define CMODE_8 0 /* 8 bits/pixel */ #define CMODE_16 1 /* 16 (actually 15) bits/pixel */ #define CMODE_32 2 /* 32 (actually 24) bits/pixel */ extern int mac_vmode_to_var(int vmode, int cmode, struct fb_var_screeninfo *var); extern int mac_var_to_vmode(const struct fb_var_screeninfo *var, int *vmode, int *cmode); extern int mac_map_monitor_sense(int sense); extern int mac_find_mode(struct fb_var_screeninfo *var, struct fb_info *info, const char *mode_option, unsigned int default_bpp); /* * Addresses in NVRAM where video mode and pixel size are stored. */ #define NV_VMODE 0x140f #define NV_CMODE 0x1410 #endif /* _VIDEO_MACMODES_H */