mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Fixed disordering of busdma* and swi_vm.
This commit is contained in:
parent
e29b867bd6
commit
af3b301b36
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=33008
2 changed files with 8 additions and 8 deletions
|
@ -26,7 +26,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: md_var.h,v 1.21 1998/01/15 07:32:56 gibbs Exp $
|
||||
* $Id: md_var.h,v 1.22 1998/01/21 18:28:46 gibbs Exp $
|
||||
*/
|
||||
|
||||
#ifndef _MACHINE_MD_VAR_H_
|
||||
|
@ -42,6 +42,7 @@ extern u_int atdevbase; /* offset in virtual memory of ISA io mem */
|
|||
extern char *bouncememory;
|
||||
extern int bouncepages;
|
||||
#endif
|
||||
extern int busdma_swi_pending;
|
||||
extern u_long cpu_feature;
|
||||
extern u_long cpu_high;
|
||||
extern u_long cpu_id;
|
||||
|
@ -55,13 +56,13 @@ extern void (*netisrs[32]) __P((void));
|
|||
extern int nfs_diskless_valid;
|
||||
extern char sigcode[];
|
||||
extern int szsigcode;
|
||||
extern int busdma_swi_pending;
|
||||
|
||||
typedef void alias_for_inthand_t __P((u_int cs, u_int ef, u_int esp, u_int ss));
|
||||
struct proc;
|
||||
struct reg;
|
||||
|
||||
void bcopyb __P((const void *from, void *to, size_t len));
|
||||
void busdma_swi __P((void));
|
||||
void cpu_reset __P((void));
|
||||
void cpu_halt __P((void));
|
||||
void cpu_power_down __P((void));
|
||||
|
@ -79,11 +80,10 @@ int is_physical_memory __P((vm_offset_t addr));
|
|||
u_long kvtop __P((void *addr));
|
||||
void setidt __P((int idx, alias_for_inthand_t *func, int typ, int dpl,
|
||||
int selec));
|
||||
void swi_vm __P((void));
|
||||
void userconfig __P((void));
|
||||
void vm_bounce_init __P((void));
|
||||
int vm_page_zero_idle __P((void));
|
||||
void swi_vm __P((void));
|
||||
void busdma_swi __P((void));
|
||||
|
||||
#ifdef PC98
|
||||
extern int need_pre_dma_flush;
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: md_var.h,v 1.21 1998/01/15 07:32:56 gibbs Exp $
|
||||
* $Id: md_var.h,v 1.22 1998/01/21 18:28:46 gibbs Exp $
|
||||
*/
|
||||
|
||||
#ifndef _MACHINE_MD_VAR_H_
|
||||
|
@ -42,6 +42,7 @@ extern u_int atdevbase; /* offset in virtual memory of ISA io mem */
|
|||
extern char *bouncememory;
|
||||
extern int bouncepages;
|
||||
#endif
|
||||
extern int busdma_swi_pending;
|
||||
extern u_long cpu_feature;
|
||||
extern u_long cpu_high;
|
||||
extern u_long cpu_id;
|
||||
|
@ -55,13 +56,13 @@ extern void (*netisrs[32]) __P((void));
|
|||
extern int nfs_diskless_valid;
|
||||
extern char sigcode[];
|
||||
extern int szsigcode;
|
||||
extern int busdma_swi_pending;
|
||||
|
||||
typedef void alias_for_inthand_t __P((u_int cs, u_int ef, u_int esp, u_int ss));
|
||||
struct proc;
|
||||
struct reg;
|
||||
|
||||
void bcopyb __P((const void *from, void *to, size_t len));
|
||||
void busdma_swi __P((void));
|
||||
void cpu_reset __P((void));
|
||||
void cpu_halt __P((void));
|
||||
void cpu_power_down __P((void));
|
||||
|
@ -79,11 +80,10 @@ int is_physical_memory __P((vm_offset_t addr));
|
|||
u_long kvtop __P((void *addr));
|
||||
void setidt __P((int idx, alias_for_inthand_t *func, int typ, int dpl,
|
||||
int selec));
|
||||
void swi_vm __P((void));
|
||||
void userconfig __P((void));
|
||||
void vm_bounce_init __P((void));
|
||||
int vm_page_zero_idle __P((void));
|
||||
void swi_vm __P((void));
|
||||
void busdma_swi __P((void));
|
||||
|
||||
#ifdef PC98
|
||||
extern int need_pre_dma_flush;
|
||||
|
|
Loading…
Reference in a new issue