~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/mips/sgi-ip27/ip27-klconfig.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 /*
  3  * Copyright (C) 1999, 2000 Ralf Baechle (ralf@gnu.org)
  4  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  5  */
  6 #include <linux/kernel.h>
  7 #include <linux/sched.h>
  8 #include <linux/interrupt.h>
  9 #include <linux/kernel_stat.h>
 10 #include <linux/param.h>
 11 #include <linux/timex.h>
 12 #include <linux/mm.h>
 13 
 14 #include <asm/sn/klconfig.h>
 15 #include <asm/sn/arch.h>
 16 #include <asm/sn/gda.h>
 17 
 18 klinfo_t *find_component(lboard_t *brd, klinfo_t *kli, unsigned char struct_type)
 19 {
 20         int index, j;
 21 
 22         if (kli == (klinfo_t *)NULL) {
 23                 index = 0;
 24         } else {
 25                 for (j = 0; j < KLCF_NUM_COMPS(brd); j++)
 26                         if (kli == KLCF_COMP(brd, j))
 27                                 break;
 28                 index = j;
 29                 if (index == KLCF_NUM_COMPS(brd)) {
 30                         printk("find_component: Bad pointer: 0x%p\n", kli);
 31                         return (klinfo_t *)NULL;
 32                 }
 33                 index++;                /* next component */
 34         }
 35 
 36         for (; index < KLCF_NUM_COMPS(brd); index++) {
 37                 kli = KLCF_COMP(brd, index);
 38                 if (KLCF_COMP_TYPE(kli) == struct_type)
 39                         return kli;
 40         }
 41 
 42         /* Didn't find it. */
 43         return (klinfo_t *)NULL;
 44 }
 45 
 46 klinfo_t *find_first_component(lboard_t *brd, unsigned char struct_type)
 47 {
 48         return find_component(brd, (klinfo_t *)NULL, struct_type);
 49 }
 50 
 51 lboard_t *find_lboard(lboard_t *start, unsigned char brd_type)
 52 {
 53         /* Search all boards stored on this node. */
 54         while (start) {
 55                 if (start->brd_type == brd_type)
 56                         return start;
 57                 start = KLCF_NEXT(start);
 58         }
 59         /* Didn't find it. */
 60         return (lboard_t *)NULL;
 61 }
 62 
 63 lboard_t *find_lboard_class(lboard_t *start, unsigned char brd_type)
 64 {
 65         /* Search all boards stored on this node. */
 66         while (start) {
 67                 if (KLCLASS(start->brd_type) == KLCLASS(brd_type))
 68                         return start;
 69                 start = KLCF_NEXT(start);
 70         }
 71 
 72         /* Didn't find it. */
 73         return (lboard_t *)NULL;
 74 }
 75 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php