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

TOMOYO Linux Cross Reference
Linux/fs/dlm/util.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 ] ~

Diff markup

Differences between /fs/dlm/util.c (Version linux-6.11.5) and /fs/dlm/util.c (Version linux-6.8.12)


  1 // SPDX-License-Identifier: GPL-2.0-only            1 // SPDX-License-Identifier: GPL-2.0-only
  2 /*********************************************      2 /******************************************************************************
  3 **********************************************      3 *******************************************************************************
  4 **                                                  4 **
  5 **  Copyright (C) 2005-2008 Red Hat, Inc.  All      5 **  Copyright (C) 2005-2008 Red Hat, Inc.  All rights reserved.
  6 **                                                  6 **
  7 **                                                  7 **
  8 **********************************************      8 *******************************************************************************
  9 **********************************************      9 ******************************************************************************/
 10                                                    10 
 11 #include "dlm_internal.h"                          11 #include "dlm_internal.h"
 12 #include "rcom.h"                                  12 #include "rcom.h"
 13 #include "util.h"                                  13 #include "util.h"
 14                                                    14 
 15 #define DLM_ERRNO_EDEADLK               35         15 #define DLM_ERRNO_EDEADLK               35
 16 #define DLM_ERRNO_EBADR                 53         16 #define DLM_ERRNO_EBADR                 53
 17 #define DLM_ERRNO_EBADSLT               57         17 #define DLM_ERRNO_EBADSLT               57
 18 #define DLM_ERRNO_EPROTO                71         18 #define DLM_ERRNO_EPROTO                71
 19 #define DLM_ERRNO_EOPNOTSUPP            95         19 #define DLM_ERRNO_EOPNOTSUPP            95
 20 #define DLM_ERRNO_ETIMEDOUT            110         20 #define DLM_ERRNO_ETIMEDOUT            110
 21 #define DLM_ERRNO_EINPROGRESS          115         21 #define DLM_ERRNO_EINPROGRESS          115
 22                                                    22 
 23 /* higher errno values are inconsistent across     23 /* higher errno values are inconsistent across architectures, so select
 24    one set of values for on the wire */            24    one set of values for on the wire */
 25                                                    25 
 26 int to_dlm_errno(int err)                          26 int to_dlm_errno(int err)
 27 {                                                  27 {
 28         switch (err) {                             28         switch (err) {
 29         case -EDEADLK:                             29         case -EDEADLK:
 30                 return -DLM_ERRNO_EDEADLK;         30                 return -DLM_ERRNO_EDEADLK;
 31         case -EBADR:                               31         case -EBADR:
 32                 return -DLM_ERRNO_EBADR;           32                 return -DLM_ERRNO_EBADR;
 33         case -EBADSLT:                             33         case -EBADSLT:
 34                 return -DLM_ERRNO_EBADSLT;         34                 return -DLM_ERRNO_EBADSLT;
 35         case -EPROTO:                              35         case -EPROTO:
 36                 return -DLM_ERRNO_EPROTO;          36                 return -DLM_ERRNO_EPROTO;
 37         case -EOPNOTSUPP:                          37         case -EOPNOTSUPP:
 38                 return -DLM_ERRNO_EOPNOTSUPP;      38                 return -DLM_ERRNO_EOPNOTSUPP;
 39         case -ETIMEDOUT:                           39         case -ETIMEDOUT:
 40                 return -DLM_ERRNO_ETIMEDOUT;       40                 return -DLM_ERRNO_ETIMEDOUT;
 41         case -EINPROGRESS:                         41         case -EINPROGRESS:
 42                 return -DLM_ERRNO_EINPROGRESS;     42                 return -DLM_ERRNO_EINPROGRESS;
 43         }                                          43         }
 44         return err;                                44         return err;
 45 }                                                  45 }
 46                                                    46 
 47 int from_dlm_errno(int err)                        47 int from_dlm_errno(int err)
 48 {                                                  48 {
 49         switch (err) {                             49         switch (err) {
 50         case -DLM_ERRNO_EDEADLK:                   50         case -DLM_ERRNO_EDEADLK:
 51                 return -EDEADLK;                   51                 return -EDEADLK;
 52         case -DLM_ERRNO_EBADR:                     52         case -DLM_ERRNO_EBADR:
 53                 return -EBADR;                     53                 return -EBADR;
 54         case -DLM_ERRNO_EBADSLT:                   54         case -DLM_ERRNO_EBADSLT:
 55                 return -EBADSLT;                   55                 return -EBADSLT;
 56         case -DLM_ERRNO_EPROTO:                    56         case -DLM_ERRNO_EPROTO:
 57                 return -EPROTO;                    57                 return -EPROTO;
 58         case -DLM_ERRNO_EOPNOTSUPP:                58         case -DLM_ERRNO_EOPNOTSUPP:
 59                 return -EOPNOTSUPP;                59                 return -EOPNOTSUPP;
 60         case -DLM_ERRNO_ETIMEDOUT:                 60         case -DLM_ERRNO_ETIMEDOUT:
 61                 return -ETIMEDOUT;                 61                 return -ETIMEDOUT;
 62         case -DLM_ERRNO_EINPROGRESS:               62         case -DLM_ERRNO_EINPROGRESS:
 63                 return -EINPROGRESS;               63                 return -EINPROGRESS;
 64         }                                          64         }
 65         return err;                                65         return err;
 66 }                                                  66 }
 67                                                    67 

~ [ 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