Linux kernel & device driver programming

Cross-Referenced Linux and Device Driver Code

[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ]
Version: [ 2.6.11.8 ] [ 2.6.25 ] [ 2.6.25.8 ] [ 2.6.31.13 ] Architecture: [ i386 ]

Diff markup

Differences between /linux/fs/ocfs2/sysfile.c (Version 2.6.25) and /linux/fs/ocfs2/sysfile.c (Version 2.6.25.8)


  1 /* -*- mode: c; c-basic-offset: 8; -*-              1 /* -*- mode: c; c-basic-offset: 8; -*-
  2  * vim: noexpandtab sw=8 ts=8 sts=0:                2  * vim: noexpandtab sw=8 ts=8 sts=0:
  3  *                                                  3  *
  4  * sysfile.c                                        4  * sysfile.c
  5  *                                                  5  *
  6  * Initialize, read, write, etc. system files.      6  * Initialize, read, write, etc. system files.
  7  *                                                  7  *
  8  * Copyright (C) 2002, 2004 Oracle.  All right      8  * Copyright (C) 2002, 2004 Oracle.  All rights reserved.
  9  *                                                  9  *
 10  * This program is free software; you can redi     10  * This program is free software; you can redistribute it and/or
 11  * modify it under the terms of the GNU Genera     11  * modify it under the terms of the GNU General Public
 12  * License as published by the Free Software F     12  * License as published by the Free Software Foundation; either
 13  * version 2 of the License, or (at your optio     13  * version 2 of the License, or (at your option) any later version.
 14  *                                                 14  *
 15  * This program is distributed in the hope tha     15  * This program is distributed in the hope that it will be useful,
 16  * but WITHOUT ANY WARRANTY; without even the      16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR     17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 18  * General Public License for more details.        18  * General Public License for more details.
 19  *                                                 19  *
 20  * You should have received a copy of the GNU      20  * You should have received a copy of the GNU General Public
 21  * License along with this program; if not, wr     21  * License along with this program; if not, write to the
 22  * Free Software Foundation, Inc., 59 Temple P     22  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 23  * Boston, MA 021110-1307, USA.                    23  * Boston, MA 021110-1307, USA.
 24  */                                                24  */
 25                                                    25 
 26 #include <linux/fs.h>                              26 #include <linux/fs.h>
 27 #include <linux/types.h>                           27 #include <linux/types.h>
 28 #include <linux/slab.h>                            28 #include <linux/slab.h>
 29 #include <linux/highmem.h>                         29 #include <linux/highmem.h>
 30                                                    30 
 31 #define MLOG_MASK_PREFIX ML_INODE                  31 #define MLOG_MASK_PREFIX ML_INODE
 32 #include <cluster/masklog.h>                       32 #include <cluster/masklog.h>
 33                                                    33 
 34 #include "ocfs2.h"                                 34 #include "ocfs2.h"
 35                                                    35 
 36 #include "alloc.h"                                 36 #include "alloc.h"
 37 #include "dir.h"                                   37 #include "dir.h"
 38 #include "inode.h"                                 38 #include "inode.h"
 39 #include "journal.h"                               39 #include "journal.h"
 40 #include "sysfile.h"                               40 #include "sysfile.h"
 41                                                    41 
 42 #include "buffer_head_io.h"                        42 #include "buffer_head_io.h"
 43                                                    43 
 44 static struct inode * _ocfs2_get_system_file_i     44 static struct inode * _ocfs2_get_system_file_inode(struct ocfs2_super *osb,
 45                                                    45                                                    int type,
 46                                                    46                                                    u32 slot);
 47                                                    47 
 48 static inline int is_global_system_inode(int t     48 static inline int is_global_system_inode(int type);
 49 static inline int is_in_system_inode_array(str     49 static inline int is_in_system_inode_array(struct ocfs2_super *osb,
 50                                            int     50                                            int type,
 51                                            u32     51                                            u32 slot);
 52                                                    52 
 53 static inline int is_global_system_inode(int t     53 static inline int is_global_system_inode(int type)
 54 {                                                  54 {
 55         return type >= OCFS2_FIRST_ONLINE_SYST     55         return type >= OCFS2_FIRST_ONLINE_SYSTEM_INODE &&
 56                 type <= OCFS2_LAST_GLOBAL_SYST     56                 type <= OCFS2_LAST_GLOBAL_SYSTEM_INODE;
 57 }                                                  57 }
 58                                                    58 
 59 static inline int is_in_system_inode_array(str     59 static inline int is_in_system_inode_array(struct ocfs2_super *osb,
 60                                            int     60                                            int type,
 61                                            u32     61                                            u32 slot)
 62 {                                                  62 {
 63         return slot == osb->slot_num || is_glo     63         return slot == osb->slot_num || is_global_system_inode(type);
 64 }                                                  64 }
 65                                                    65 
 66 struct inode *ocfs2_get_system_file_inode(stru     66 struct inode *ocfs2_get_system_file_inode(struct ocfs2_super *osb,
 67                                           int      67                                           int type,
 68                                           u32      68                                           u32 slot)
 69 {                                                  69 {
 70         struct inode *inode = NULL;                70         struct inode *inode = NULL;
 71         struct inode **arr = NULL;                 71         struct inode **arr = NULL;
 72                                                    72 
 73         /* avoid the lookup if cached in local     73         /* avoid the lookup if cached in local system file array */
 74         if (is_in_system_inode_array(osb, type     74         if (is_in_system_inode_array(osb, type, slot))
 75                 arr = &(osb->system_inodes[typ     75                 arr = &(osb->system_inodes[type]);
 76                                                    76 
 77         if (arr && ((inode = *arr) != NULL)) {     77         if (arr && ((inode = *arr) != NULL)) {
 78                 /* get a ref in addition to th     78                 /* get a ref in addition to the array ref */
 79                 inode = igrab(inode);              79                 inode = igrab(inode);
 80                 BUG_ON(!inode);                    80                 BUG_ON(!inode);
 81                                                    81 
 82                 return inode;                      82                 return inode;
 83         }                                          83         }
 84                                                    84 
 85         /* this gets one ref thru iget */          85         /* this gets one ref thru iget */
 86         inode = _ocfs2_get_system_file_inode(o     86         inode = _ocfs2_get_system_file_inode(osb, type, slot);
 87                                                    87 
 88         /* add one more if putting into array      88         /* add one more if putting into array for first time */
 89         if (arr && inode) {                        89         if (arr && inode) {
 90                 *arr = igrab(inode);               90                 *arr = igrab(inode);
 91                 BUG_ON(!*arr);                     91                 BUG_ON(!*arr);
 92         }                                          92         }
 93         return inode;                              93         return inode;
 94 }                                                  94 }
 95                                                    95 
 96 static struct inode * _ocfs2_get_system_file_i     96 static struct inode * _ocfs2_get_system_file_inode(struct ocfs2_super *osb,
 97                                                    97                                                    int type,
 98                                                    98                                                    u32 slot)
 99 {                                                  99 {
100         char namebuf[40];                         100         char namebuf[40];
101         struct inode *inode = NULL;               101         struct inode *inode = NULL;
102         u64 blkno;                                102         u64 blkno;
103         int status = 0;                           103         int status = 0;
104                                                   104 
105         ocfs2_sprintf_system_inode_name(namebu    105         ocfs2_sprintf_system_inode_name(namebuf,
106                                         sizeof    106                                         sizeof(namebuf),
107                                         type,     107                                         type, slot);
108                                                   108 
109         status = ocfs2_lookup_ino_from_name(os    109         status = ocfs2_lookup_ino_from_name(osb->sys_root_inode, namebuf,
110                                             st    110                                             strlen(namebuf), &blkno);
111         if (status < 0) {                         111         if (status < 0) {
112                 goto bail;                        112                 goto bail;
113         }                                         113         }
114                                                   114 
115         inode = ocfs2_iget(osb, blkno, OCFS2_F    115         inode = ocfs2_iget(osb, blkno, OCFS2_FI_FLAG_SYSFILE, type);
116         if (IS_ERR(inode)) {                      116         if (IS_ERR(inode)) {
117                 mlog_errno(PTR_ERR(inode));       117                 mlog_errno(PTR_ERR(inode));
118                 inode = NULL;                     118                 inode = NULL;
119                 goto bail;                        119                 goto bail;
120         }                                         120         }
121 bail:                                             121 bail:
122                                                   122 
123         return inode;                             123         return inode;
124 }                                                 124 }
125                                                   125 
126                                                   126 
  This page was automatically generated by the LXR engine.