Whamcloud - gitweb
landing b_cmobd_merge on HEAD
[fs/lustre-release.git] / lustre / ptlrpc / pers.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2004 Cluster File Systems, Inc.
5  *
6  *   This file is part of Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  */
21
22 #define DEBUG_SUBSYSTEM S_RPC
23 #ifndef __KERNEL__
24 #include <errno.h>
25 #include <signal.h>
26 #include <liblustre.h>
27 #endif
28
29 #include <linux/obd_support.h>
30 #include <linux/obd_class.h>
31 #include <linux/lustre_lib.h>
32 #include <linux/lustre_ha.h>
33 #include <linux/lustre_import.h>
34
35 #include "ptlrpc_internal.h"
36
37 #ifdef __KERNEL__
38 #ifndef CRAY_PORTALS
39 void ptlrpc_fill_bulk_md (ptl_md_t *md, struct ptlrpc_bulk_desc *desc)
40 {
41         LASSERT (desc->bd_iov_count <= PTLRPC_MAX_BRW_PAGES);
42         LASSERT (!(md->options & (PTL_MD_IOVEC | PTL_MD_KIOV | PTL_MD_PHYS)));
43
44         md->options |= PTL_MD_KIOV;
45         md->start = &desc->bd_iov[0];
46         md->length = desc->bd_iov_count;
47 }
48
49 void ptlrpc_add_bulk_page(struct ptlrpc_bulk_desc *desc, struct page *page,
50                           int pageoffset, int len)
51 {
52         ptl_kiov_t *kiov = &desc->bd_iov[desc->bd_iov_count];
53
54         kiov->kiov_page = page;
55         kiov->kiov_offset = pageoffset;
56         kiov->kiov_len = len;
57
58         desc->bd_iov_count++;
59 }
60 #else
61 void ptlrpc_fill_bulk_md (ptl_md_t *md, struct ptlrpc_bulk_desc *desc)
62 {
63         LASSERT (desc->bd_iov_count <= PTLRPC_MAX_BRW_PAGES);
64         LASSERT (!(md->options & (PTL_MD_IOVEC | PTL_MD_KIOV | PTL_MD_PHYS)));
65         
66         md->options |= (PTL_MD_IOVEC | PTL_MD_PHYS);
67         md->start = &desc->bd_iov[0];
68         md->length = desc->bd_iov_count;
69 }
70
71 void ptlrpc_add_bulk_page(struct ptlrpc_bulk_desc *desc, struct page *page,
72                           int pageoffset, int len)
73 {
74         ptl_md_iovec_t *iov = &desc->bd_iov[desc->bd_iov_count];
75
76         /* Should get a compiler warning if sizeof(physaddr) > sizeof(void *) */
77         iov->iov_base = (void *)(page_to_phys(page) + pageoffset);
78         iov->iov_len = len;
79
80         desc->bd_iov_count++;
81 }
82 #endif
83
84 #else /* !__KERNEL__ */
85 void ptlrpc_fill_bulk_md(ptl_md_t *md, struct ptlrpc_bulk_desc *desc)
86 {
87         LASSERT (!(md->options & (PTL_MD_IOVEC | PTL_MD_KIOV | PTL_MD_PHYS)));
88
89         if (desc->bd_iov_count == 1) {
90                 md->start = desc->bd_iov[0].iov_base;
91                 md->length = desc->bd_iov[0].iov_len;
92                 return;
93         }
94         
95 #if CRAY_PORTALS
96         LBUG();
97 #endif
98         md->options |= PTL_MD_IOVEC;
99         md->start = &desc->bd_iov[0];
100         md->length = desc->bd_iov_count;
101 }
102
103 static int can_merge_iovs(ptl_md_iovec_t *existing, ptl_md_iovec_t *candidate)
104 {
105         if (existing->iov_base + existing->iov_len == candidate->iov_base) 
106                 return 1;
107
108         CERROR("Can't merge iovs %p for %x, %p for %x\n",
109                existing->iov_base, existing->iov_len,
110                candidate->iov_base, candidate->iov_len);
111         return 0;
112 }
113
114 void ptlrpc_add_bulk_page(struct ptlrpc_bulk_desc *desc, struct page *page, 
115                           int pageoffset, int len)
116 {
117         ptl_md_iovec_t *iov = &desc->bd_iov[desc->bd_iov_count];
118
119         iov->iov_base = page->addr + pageoffset;
120         iov->iov_len = len;
121
122         if (desc->bd_iov_count > 0 && can_merge_iovs(iov - 1, iov)) {
123                 (iov - 1)->iov_len += len;
124         } else {
125                 desc->bd_iov_count++;
126         }
127 }
128 #endif