Home | History | Annotate | Download | only in tests-mx32

Lines Matching refs:maxnode

48 print_nodes(const unsigned long maxnode, unsigned int offset)
50 unsigned int nlongs = NLONGS(maxnode);
60 long rc = syscall(__NR_set_mempolicy, 0, nodemask, maxnode);
85 if (maxnode)
91 printf(", %lu) = %s\n", maxnode, errstr);
97 unsigned long maxnode = get_page_size() * 8;
99 print_nodes(maxnode, offset);
100 print_nodes(maxnode + 1, offset);
101 print_nodes(maxnode + 2, offset);
103 maxnode = sizeof(long) * 8;
107 print_nodes(maxnode - 1, offset);
108 print_nodes(maxnode , offset);
109 print_nodes(maxnode + 1, offset);
110 print_nodes(maxnode + 2, offset);
111 print_nodes(maxnode * 2 - 1, offset);
112 print_nodes(maxnode * 2 , offset);
113 print_nodes(maxnode * 2 + 1, offset);
114 print_nodes(maxnode * 2 + 2, offset);
115 print_nodes(maxnode * 3 - 1, offset);
116 print_nodes(maxnode * 3 , offset);
117 print_nodes(maxnode * 3 + 1, offset);
118 print_nodes(maxnode * 3 + 2, offset);
119 print_nodes(maxnode * 4 + 2, offset);
130 const unsigned long maxnode = (unsigned long) 0xcafef00dbadc0dedULL;
131 long rc = syscall(__NR_set_mempolicy, 1, nodemask, maxnode);
133 nodemask, maxnode, sprintrc(rc));