Whamcloud - gitweb
LU-3963 libcfs: convert lod, mdt, and gss to linux list api
[fs/lustre-release.git] / lustre / ptlrpc / gss / gss_api.h
index 10986a7..a5bbaea 100644 (file)
@@ -1,6 +1,4 @@
-/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
- * vim:expandtab:shiftwidth=8:tabstop=8:
- *
+/*
  * Modifications for Lustre
  *
  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
@@ -101,14 +99,14 @@ struct subflavor_desc {
 
 /* Each mechanism is described by the following struct: */
 struct gss_api_mech {
-        cfs_list_t              gm_list;
-        cfs_module_t           *gm_owner;
-        char                   *gm_name;
-        rawobj_t                gm_oid;
-        cfs_atomic_t            gm_count;
-        struct gss_api_ops     *gm_ops;
-        int                     gm_sf_num;
-        struct subflavor_desc  *gm_sfs;
+       struct list_head        gm_list;
+       struct module          *gm_owner;
+       char                   *gm_name;
+       rawobj_t                gm_oid;
+       atomic_t                gm_count;
+       struct gss_api_ops     *gm_ops;
+       int                     gm_sf_num;
+       struct subflavor_desc  *gm_sfs;
 };
 
 /* and must provide the following operations: */