Subversion Repositories shark

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
422 giacomo 1
#ifndef _ASM_I386_NODE_H_
2
#define _ASM_I386_NODE_H_
3
 
4
#include <linux/device.h>
5
#include <linux/mmzone.h>
6
#include <linux/node.h>
7
#include <linux/topology.h>
8
 
9
struct i386_node {
10
        struct node node;
11
};
12
extern struct i386_node node_devices[MAX_NUMNODES];
13
 
14
static inline int arch_register_node(int num){
15
        int p_node = parent_node(num);
16
        struct node *parent = NULL;
17
 
18
        if (p_node != num)
19
                parent = &node_devices[p_node].node;
20
 
21
        return register_node(&node_devices[num].node, num, parent);
22
}
23
 
24
#endif /* _ASM_I386_NODE_H_ */