Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 1 | /* |
| 2 | * (C) 2001 Clemson University and The University of Chicago |
| 3 | * |
| 4 | * See COPYING in top-level directory. |
| 5 | */ |
| 6 | |
| 7 | #include "protocol.h" |
| 8 | #include "pvfs2-kernel.h" |
| 9 | #include "pvfs2-bufmap.h" |
| 10 | |
| 11 | #include <linux/parser.h> |
| 12 | |
| 13 | /* a cache for pvfs2-inode objects (i.e. pvfs2 inode private data) */ |
| 14 | static struct kmem_cache *pvfs2_inode_cache; |
| 15 | |
| 16 | /* list for storing pvfs2 specific superblocks in use */ |
| 17 | LIST_HEAD(pvfs2_superblocks); |
| 18 | |
| 19 | DEFINE_SPINLOCK(pvfs2_superblocks_lock); |
| 20 | |
| 21 | enum { |
| 22 | Opt_intr, |
| 23 | Opt_acl, |
| 24 | Opt_local_lock, |
| 25 | |
| 26 | Opt_err |
| 27 | }; |
| 28 | |
| 29 | static const match_table_t tokens = { |
| 30 | { Opt_acl, "acl" }, |
| 31 | { Opt_intr, "intr" }, |
| 32 | { Opt_local_lock, "local_lock" }, |
| 33 | { Opt_err, NULL } |
| 34 | }; |
| 35 | |
| 36 | |
| 37 | static int parse_mount_options(struct super_block *sb, char *options, |
| 38 | int silent) |
| 39 | { |
| 40 | struct pvfs2_sb_info_s *pvfs2_sb = PVFS2_SB(sb); |
| 41 | substring_t args[MAX_OPT_ARGS]; |
| 42 | char *p; |
| 43 | |
| 44 | /* |
| 45 | * Force any potential flags that might be set from the mount |
| 46 | * to zero, ie, initialize to unset. |
| 47 | */ |
| 48 | sb->s_flags &= ~MS_POSIXACL; |
| 49 | pvfs2_sb->flags &= ~PVFS2_OPT_INTR; |
| 50 | pvfs2_sb->flags &= ~PVFS2_OPT_LOCAL_LOCK; |
| 51 | |
| 52 | while ((p = strsep(&options, ",")) != NULL) { |
| 53 | int token; |
| 54 | |
| 55 | if (!*p) |
| 56 | continue; |
| 57 | |
| 58 | token = match_token(p, tokens, args); |
| 59 | switch (token) { |
| 60 | case Opt_acl: |
| 61 | sb->s_flags |= MS_POSIXACL; |
| 62 | break; |
| 63 | case Opt_intr: |
| 64 | pvfs2_sb->flags |= PVFS2_OPT_INTR; |
| 65 | break; |
| 66 | case Opt_local_lock: |
| 67 | pvfs2_sb->flags |= PVFS2_OPT_LOCAL_LOCK; |
| 68 | break; |
| 69 | default: |
| 70 | goto fail; |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | return 0; |
| 75 | fail: |
| 76 | if (!silent) |
| 77 | gossip_err("Error: mount option [%s] is not supported.\n", p); |
| 78 | return -EINVAL; |
| 79 | } |
| 80 | |
| 81 | static void pvfs2_inode_cache_ctor(void *req) |
| 82 | { |
| 83 | struct pvfs2_inode_s *pvfs2_inode = req; |
| 84 | |
| 85 | inode_init_once(&pvfs2_inode->vfs_inode); |
| 86 | init_rwsem(&pvfs2_inode->xattr_sem); |
| 87 | |
| 88 | pvfs2_inode->vfs_inode.i_version = 1; |
| 89 | } |
| 90 | |
| 91 | static struct inode *pvfs2_alloc_inode(struct super_block *sb) |
| 92 | { |
| 93 | struct pvfs2_inode_s *pvfs2_inode; |
| 94 | |
| 95 | pvfs2_inode = kmem_cache_alloc(pvfs2_inode_cache, |
| 96 | PVFS2_CACHE_ALLOC_FLAGS); |
| 97 | if (pvfs2_inode == NULL) { |
| 98 | gossip_err("Failed to allocate pvfs2_inode\n"); |
| 99 | return NULL; |
| 100 | } |
| 101 | |
| 102 | /* |
| 103 | * We want to clear everything except for rw_semaphore and the |
| 104 | * vfs_inode. |
| 105 | */ |
| 106 | memset(&pvfs2_inode->refn.khandle, 0, 16); |
| 107 | pvfs2_inode->refn.fs_id = PVFS_FS_ID_NULL; |
| 108 | pvfs2_inode->last_failed_block_index_read = 0; |
| 109 | memset(pvfs2_inode->link_target, 0, sizeof(pvfs2_inode->link_target)); |
| 110 | pvfs2_inode->pinode_flags = 0; |
| 111 | |
| 112 | gossip_debug(GOSSIP_SUPER_DEBUG, |
| 113 | "pvfs2_alloc_inode: allocated %p\n", |
| 114 | &pvfs2_inode->vfs_inode); |
| 115 | return &pvfs2_inode->vfs_inode; |
| 116 | } |
| 117 | |
| 118 | static void pvfs2_destroy_inode(struct inode *inode) |
| 119 | { |
| 120 | struct pvfs2_inode_s *pvfs2_inode = PVFS2_I(inode); |
| 121 | |
| 122 | gossip_debug(GOSSIP_SUPER_DEBUG, |
| 123 | "%s: deallocated %p destroying inode %pU\n", |
| 124 | __func__, pvfs2_inode, get_khandle_from_ino(inode)); |
| 125 | |
| 126 | kmem_cache_free(pvfs2_inode_cache, pvfs2_inode); |
| 127 | } |
| 128 | |
| 129 | /* |
| 130 | * NOTE: information filled in here is typically reflected in the |
| 131 | * output of the system command 'df' |
| 132 | */ |
| 133 | static int pvfs2_statfs(struct dentry *dentry, struct kstatfs *buf) |
| 134 | { |
| 135 | int ret = -ENOMEM; |
| 136 | struct pvfs2_kernel_op_s *new_op = NULL; |
| 137 | int flags = 0; |
| 138 | struct super_block *sb = NULL; |
| 139 | |
| 140 | sb = dentry->d_sb; |
| 141 | |
| 142 | gossip_debug(GOSSIP_SUPER_DEBUG, |
| 143 | "pvfs2_statfs: called on sb %p (fs_id is %d)\n", |
| 144 | sb, |
| 145 | (int)(PVFS2_SB(sb)->fs_id)); |
| 146 | |
| 147 | new_op = op_alloc(PVFS2_VFS_OP_STATFS); |
| 148 | if (!new_op) |
| 149 | return ret; |
| 150 | new_op->upcall.req.statfs.fs_id = PVFS2_SB(sb)->fs_id; |
| 151 | |
| 152 | if (PVFS2_SB(sb)->flags & PVFS2_OPT_INTR) |
| 153 | flags = PVFS2_OP_INTERRUPTIBLE; |
| 154 | |
| 155 | ret = service_operation(new_op, "pvfs2_statfs", flags); |
| 156 | |
| 157 | if (new_op->downcall.status < 0) |
| 158 | goto out_op_release; |
| 159 | |
| 160 | gossip_debug(GOSSIP_SUPER_DEBUG, |
| 161 | "pvfs2_statfs: got %ld blocks available | " |
| 162 | "%ld blocks total | %ld block size\n", |
| 163 | (long)new_op->downcall.resp.statfs.blocks_avail, |
| 164 | (long)new_op->downcall.resp.statfs.blocks_total, |
| 165 | (long)new_op->downcall.resp.statfs.block_size); |
| 166 | |
| 167 | buf->f_type = sb->s_magic; |
| 168 | memcpy(&buf->f_fsid, &PVFS2_SB(sb)->fs_id, sizeof(buf->f_fsid)); |
| 169 | buf->f_bsize = new_op->downcall.resp.statfs.block_size; |
| 170 | buf->f_namelen = PVFS2_NAME_LEN; |
| 171 | |
| 172 | buf->f_blocks = (sector_t) new_op->downcall.resp.statfs.blocks_total; |
| 173 | buf->f_bfree = (sector_t) new_op->downcall.resp.statfs.blocks_avail; |
| 174 | buf->f_bavail = (sector_t) new_op->downcall.resp.statfs.blocks_avail; |
| 175 | buf->f_files = (sector_t) new_op->downcall.resp.statfs.files_total; |
| 176 | buf->f_ffree = (sector_t) new_op->downcall.resp.statfs.files_avail; |
| 177 | buf->f_frsize = sb->s_blocksize; |
| 178 | |
| 179 | out_op_release: |
| 180 | op_release(new_op); |
| 181 | gossip_debug(GOSSIP_SUPER_DEBUG, "pvfs2_statfs: returning %d\n", ret); |
| 182 | return ret; |
| 183 | } |
| 184 | |
| 185 | /* |
| 186 | * Remount as initiated by VFS layer. We just need to reparse the mount |
| 187 | * options, no need to signal pvfs2-client-core about it. |
| 188 | */ |
| 189 | static int pvfs2_remount_fs(struct super_block *sb, int *flags, char *data) |
| 190 | { |
| 191 | gossip_debug(GOSSIP_SUPER_DEBUG, "pvfs2_remount_fs: called\n"); |
| 192 | return parse_mount_options(sb, data, 1); |
| 193 | } |
| 194 | |
| 195 | /* |
| 196 | * Remount as initiated by pvfs2-client-core on restart. This is used to |
| 197 | * repopulate mount information left from previous pvfs2-client-core. |
| 198 | * |
| 199 | * the idea here is that given a valid superblock, we're |
| 200 | * re-initializing the user space client with the initial mount |
| 201 | * information specified when the super block was first initialized. |
| 202 | * this is very different than the first initialization/creation of a |
| 203 | * superblock. we use the special service_priority_operation to make |
| 204 | * sure that the mount gets ahead of any other pending operation that |
| 205 | * is waiting for servicing. this means that the pvfs2-client won't |
| 206 | * fail to start several times for all other pending operations before |
| 207 | * the client regains all of the mount information from us. |
| 208 | * NOTE: this function assumes that the request_mutex is already acquired! |
| 209 | */ |
| 210 | int pvfs2_remount(struct super_block *sb) |
| 211 | { |
| 212 | struct pvfs2_kernel_op_s *new_op; |
| 213 | int ret = -EINVAL; |
| 214 | |
| 215 | gossip_debug(GOSSIP_SUPER_DEBUG, "pvfs2_remount: called\n"); |
| 216 | |
| 217 | new_op = op_alloc(PVFS2_VFS_OP_FS_MOUNT); |
| 218 | if (!new_op) |
| 219 | return -ENOMEM; |
| 220 | strncpy(new_op->upcall.req.fs_mount.pvfs2_config_server, |
| 221 | PVFS2_SB(sb)->devname, |
| 222 | PVFS_MAX_SERVER_ADDR_LEN); |
| 223 | |
| 224 | gossip_debug(GOSSIP_SUPER_DEBUG, |
| 225 | "Attempting PVFS2 Remount via host %s\n", |
| 226 | new_op->upcall.req.fs_mount.pvfs2_config_server); |
| 227 | |
| 228 | /* |
| 229 | * we assume that the calling function has already acquire the |
| 230 | * request_mutex to prevent other operations from bypassing |
| 231 | * this one |
| 232 | */ |
| 233 | ret = service_operation(new_op, "pvfs2_remount", |
| 234 | PVFS2_OP_PRIORITY | PVFS2_OP_NO_SEMAPHORE); |
| 235 | gossip_debug(GOSSIP_SUPER_DEBUG, |
| 236 | "pvfs2_remount: mount got return value of %d\n", |
| 237 | ret); |
| 238 | if (ret == 0) { |
| 239 | /* |
| 240 | * store the id assigned to this sb -- it's just a |
| 241 | * short-lived mapping that the system interface uses |
| 242 | * to map this superblock to a particular mount entry |
| 243 | */ |
| 244 | PVFS2_SB(sb)->id = new_op->downcall.resp.fs_mount.id; |
| 245 | PVFS2_SB(sb)->mount_pending = 0; |
| 246 | } |
| 247 | |
| 248 | op_release(new_op); |
| 249 | return ret; |
| 250 | } |
| 251 | |
| 252 | int fsid_key_table_initialize(void) |
| 253 | { |
| 254 | return 0; |
| 255 | } |
| 256 | |
| 257 | void fsid_key_table_finalize(void) |
| 258 | { |
| 259 | } |
| 260 | |
| 261 | /* Called whenever the VFS dirties the inode in response to atime updates */ |
| 262 | static void pvfs2_dirty_inode(struct inode *inode, int flags) |
| 263 | { |
| 264 | struct pvfs2_inode_s *pvfs2_inode = PVFS2_I(inode); |
| 265 | |
| 266 | gossip_debug(GOSSIP_SUPER_DEBUG, |
| 267 | "pvfs2_dirty_inode: %pU\n", |
| 268 | get_khandle_from_ino(inode)); |
| 269 | SetAtimeFlag(pvfs2_inode); |
| 270 | } |
| 271 | |
Mike Marshall | 84d0215 | 2015-07-28 13:27:51 -0400 | [diff] [blame] | 272 | static const struct super_operations pvfs2_s_ops = { |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 273 | .alloc_inode = pvfs2_alloc_inode, |
| 274 | .destroy_inode = pvfs2_destroy_inode, |
| 275 | .dirty_inode = pvfs2_dirty_inode, |
| 276 | .drop_inode = generic_delete_inode, |
| 277 | .statfs = pvfs2_statfs, |
| 278 | .remount_fs = pvfs2_remount_fs, |
| 279 | .show_options = generic_show_options, |
| 280 | }; |
| 281 | |
Mike Marshall | 84d0215 | 2015-07-28 13:27:51 -0400 | [diff] [blame] | 282 | static struct dentry *pvfs2_fh_to_dentry(struct super_block *sb, |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 283 | struct fid *fid, |
| 284 | int fh_len, |
| 285 | int fh_type) |
| 286 | { |
| 287 | struct pvfs2_object_kref refn; |
| 288 | |
| 289 | if (fh_len < 5 || fh_type > 2) |
| 290 | return NULL; |
| 291 | |
| 292 | PVFS_khandle_from(&(refn.khandle), fid->raw, 16); |
| 293 | refn.fs_id = (u32) fid->raw[4]; |
| 294 | gossip_debug(GOSSIP_SUPER_DEBUG, |
| 295 | "fh_to_dentry: handle %pU, fs_id %d\n", |
| 296 | &refn.khandle, |
| 297 | refn.fs_id); |
| 298 | |
| 299 | return d_obtain_alias(pvfs2_iget(sb, &refn)); |
| 300 | } |
| 301 | |
Mike Marshall | 84d0215 | 2015-07-28 13:27:51 -0400 | [diff] [blame] | 302 | static int pvfs2_encode_fh(struct inode *inode, |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 303 | __u32 *fh, |
| 304 | int *max_len, |
| 305 | struct inode *parent) |
| 306 | { |
| 307 | int len = parent ? 10 : 5; |
| 308 | int type = 1; |
| 309 | struct pvfs2_object_kref refn; |
| 310 | |
| 311 | if (*max_len < len) { |
| 312 | gossip_lerr("fh buffer is too small for encoding\n"); |
| 313 | *max_len = len; |
| 314 | type = 255; |
| 315 | goto out; |
| 316 | } |
| 317 | |
| 318 | refn = PVFS2_I(inode)->refn; |
| 319 | PVFS_khandle_to(&refn.khandle, fh, 16); |
| 320 | fh[4] = refn.fs_id; |
| 321 | |
| 322 | gossip_debug(GOSSIP_SUPER_DEBUG, |
| 323 | "Encoding fh: handle %pU, fsid %u\n", |
| 324 | &refn.khandle, |
| 325 | refn.fs_id); |
| 326 | |
| 327 | |
| 328 | if (parent) { |
| 329 | refn = PVFS2_I(parent)->refn; |
| 330 | PVFS_khandle_to(&refn.khandle, (char *) fh + 20, 16); |
| 331 | fh[9] = refn.fs_id; |
| 332 | |
| 333 | type = 2; |
| 334 | gossip_debug(GOSSIP_SUPER_DEBUG, |
| 335 | "Encoding parent: handle %pU, fsid %u\n", |
| 336 | &refn.khandle, |
| 337 | refn.fs_id); |
| 338 | } |
| 339 | *max_len = len; |
| 340 | |
| 341 | out: |
| 342 | return type; |
| 343 | } |
| 344 | |
| 345 | static struct export_operations pvfs2_export_ops = { |
| 346 | .encode_fh = pvfs2_encode_fh, |
| 347 | .fh_to_dentry = pvfs2_fh_to_dentry, |
| 348 | }; |
| 349 | |
Al Viro | 5c0dbbc | 2015-10-08 20:22:43 -0400 | [diff] [blame^] | 350 | static int pvfs2_fill_sb(struct super_block *sb, |
| 351 | struct pvfs2_fs_mount_response *fs_mount, |
| 352 | void *data, int silent) |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 353 | { |
| 354 | int ret = -EINVAL; |
| 355 | struct inode *root = NULL; |
| 356 | struct dentry *root_dentry = NULL; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 357 | struct pvfs2_object_kref root_object; |
| 358 | |
| 359 | /* alloc and init our private pvfs2 sb info */ |
| 360 | sb->s_fs_info = |
| 361 | kmalloc(sizeof(struct pvfs2_sb_info_s), PVFS2_GFP_FLAGS); |
| 362 | if (!PVFS2_SB(sb)) |
| 363 | return -ENOMEM; |
| 364 | memset(sb->s_fs_info, 0, sizeof(struct pvfs2_sb_info_s)); |
| 365 | PVFS2_SB(sb)->sb = sb; |
| 366 | |
Al Viro | 5c0dbbc | 2015-10-08 20:22:43 -0400 | [diff] [blame^] | 367 | PVFS2_SB(sb)->root_khandle = fs_mount->root_khandle; |
| 368 | PVFS2_SB(sb)->fs_id = fs_mount->fs_id; |
| 369 | PVFS2_SB(sb)->id = fs_mount->id; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 370 | |
Al Viro | 5c0dbbc | 2015-10-08 20:22:43 -0400 | [diff] [blame^] | 371 | if (data) { |
| 372 | ret = parse_mount_options(sb, data, silent); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 373 | if (ret) |
| 374 | return ret; |
| 375 | } |
| 376 | |
| 377 | /* Hang the xattr handlers off the superblock */ |
| 378 | sb->s_xattr = pvfs2_xattr_handlers; |
| 379 | sb->s_magic = PVFS2_SUPER_MAGIC; |
| 380 | sb->s_op = &pvfs2_s_ops; |
| 381 | sb->s_d_op = &pvfs2_dentry_operations; |
| 382 | |
| 383 | sb->s_blocksize = pvfs_bufmap_size_query(); |
| 384 | sb->s_blocksize_bits = pvfs_bufmap_shift_query(); |
| 385 | sb->s_maxbytes = MAX_LFS_FILESIZE; |
| 386 | |
| 387 | root_object.khandle = PVFS2_SB(sb)->root_khandle; |
| 388 | root_object.fs_id = PVFS2_SB(sb)->fs_id; |
| 389 | gossip_debug(GOSSIP_SUPER_DEBUG, |
| 390 | "get inode %pU, fsid %d\n", |
| 391 | &root_object.khandle, |
| 392 | root_object.fs_id); |
| 393 | |
| 394 | root = pvfs2_iget(sb, &root_object); |
| 395 | if (IS_ERR(root)) |
| 396 | return PTR_ERR(root); |
| 397 | |
| 398 | gossip_debug(GOSSIP_SUPER_DEBUG, |
| 399 | "Allocated root inode [%p] with mode %x\n", |
| 400 | root, |
| 401 | root->i_mode); |
| 402 | |
| 403 | /* allocates and places root dentry in dcache */ |
| 404 | root_dentry = d_make_root(root); |
Al Viro | b05a785 | 2015-10-08 20:18:00 -0400 | [diff] [blame] | 405 | if (!root_dentry) |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 406 | return -ENOMEM; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 407 | |
| 408 | sb->s_export_op = &pvfs2_export_ops; |
| 409 | sb->s_root = root_dentry; |
| 410 | return 0; |
| 411 | } |
| 412 | |
| 413 | struct dentry *pvfs2_mount(struct file_system_type *fst, |
| 414 | int flags, |
| 415 | const char *devname, |
| 416 | void *data) |
| 417 | { |
| 418 | int ret = -EINVAL; |
| 419 | struct super_block *sb = ERR_PTR(-EINVAL); |
| 420 | struct pvfs2_kernel_op_s *new_op; |
Mike Marshall | 1be21f8 | 2015-09-29 15:26:37 -0400 | [diff] [blame] | 421 | struct dentry *d = ERR_PTR(-EINVAL); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 422 | |
| 423 | gossip_debug(GOSSIP_SUPER_DEBUG, |
| 424 | "pvfs2_mount: called with devname %s\n", |
| 425 | devname); |
| 426 | |
| 427 | if (!devname) { |
| 428 | gossip_err("ERROR: device name not specified.\n"); |
| 429 | return ERR_PTR(-EINVAL); |
| 430 | } |
| 431 | |
| 432 | new_op = op_alloc(PVFS2_VFS_OP_FS_MOUNT); |
| 433 | if (!new_op) |
| 434 | return ERR_PTR(-ENOMEM); |
| 435 | |
| 436 | strncpy(new_op->upcall.req.fs_mount.pvfs2_config_server, |
| 437 | devname, |
| 438 | PVFS_MAX_SERVER_ADDR_LEN); |
| 439 | |
| 440 | gossip_debug(GOSSIP_SUPER_DEBUG, |
| 441 | "Attempting PVFS2 Mount via host %s\n", |
| 442 | new_op->upcall.req.fs_mount.pvfs2_config_server); |
| 443 | |
| 444 | ret = service_operation(new_op, "pvfs2_mount", 0); |
| 445 | gossip_debug(GOSSIP_SUPER_DEBUG, |
| 446 | "pvfs2_mount: mount got return value of %d\n", ret); |
| 447 | if (ret) |
| 448 | goto free_op; |
| 449 | |
| 450 | if (new_op->downcall.resp.fs_mount.fs_id == PVFS_FS_ID_NULL) { |
| 451 | gossip_err("ERROR: Retrieved null fs_id\n"); |
| 452 | ret = -EINVAL; |
| 453 | goto free_op; |
| 454 | } |
| 455 | |
Mike Marshall | 1be21f8 | 2015-09-29 15:26:37 -0400 | [diff] [blame] | 456 | sb = sget(fst, NULL, set_anon_super, flags, NULL); |
| 457 | |
| 458 | if (IS_ERR(sb)) { |
| 459 | d = ERR_CAST(sb); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 460 | goto free_op; |
| 461 | } |
| 462 | |
Mike Marshall | 1be21f8 | 2015-09-29 15:26:37 -0400 | [diff] [blame] | 463 | ret = pvfs2_fill_sb(sb, |
Al Viro | 5c0dbbc | 2015-10-08 20:22:43 -0400 | [diff] [blame^] | 464 | &new_op->downcall.resp.fs_mount, data, |
Mike Marshall | 1be21f8 | 2015-09-29 15:26:37 -0400 | [diff] [blame] | 465 | flags & MS_SILENT ? 1 : 0); |
| 466 | |
| 467 | if (ret) { |
| 468 | d = ERR_PTR(ret); |
| 469 | goto free_op; |
| 470 | } |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 471 | |
| 472 | /* |
| 473 | * on successful mount, store the devname and data |
| 474 | * used |
| 475 | */ |
| 476 | strncpy(PVFS2_SB(sb)->devname, |
| 477 | devname, |
| 478 | PVFS_MAX_SERVER_ADDR_LEN); |
| 479 | |
| 480 | /* mount_pending must be cleared */ |
| 481 | PVFS2_SB(sb)->mount_pending = 0; |
| 482 | |
| 483 | /* |
| 484 | * finally, add this sb to our list of known pvfs2 |
| 485 | * sb's |
| 486 | */ |
| 487 | add_pvfs2_sb(sb); |
| 488 | op_release(new_op); |
Mike Marshall | 1be21f8 | 2015-09-29 15:26:37 -0400 | [diff] [blame] | 489 | return dget(sb->s_root); |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 490 | |
| 491 | free_op: |
| 492 | gossip_err("pvfs2_mount: mount request failed with %d\n", ret); |
| 493 | if (ret == -EINVAL) { |
| 494 | gossip_err("Ensure that all pvfs2-servers have the same FS configuration files\n"); |
| 495 | gossip_err("Look at pvfs2-client-core log file (typically /tmp/pvfs2-client.log) for more details\n"); |
| 496 | } |
| 497 | |
| 498 | op_release(new_op); |
| 499 | |
Mike Marshall | 1be21f8 | 2015-09-29 15:26:37 -0400 | [diff] [blame] | 500 | return d; |
Mike Marshall | 1182fca | 2015-07-17 10:38:15 -0400 | [diff] [blame] | 501 | } |
| 502 | |
| 503 | void pvfs2_kill_sb(struct super_block *sb) |
| 504 | { |
| 505 | gossip_debug(GOSSIP_SUPER_DEBUG, "pvfs2_kill_sb: called\n"); |
| 506 | |
| 507 | /* |
| 508 | * issue the unmount to userspace to tell it to remove the |
| 509 | * dynamic mount info it has for this superblock |
| 510 | */ |
| 511 | pvfs2_unmount_sb(sb); |
| 512 | |
| 513 | /* remove the sb from our list of pvfs2 specific sb's */ |
| 514 | remove_pvfs2_sb(sb); |
| 515 | |
| 516 | /* provided sb cleanup */ |
| 517 | kill_anon_super(sb); |
| 518 | |
| 519 | /* free the pvfs2 superblock private data */ |
| 520 | kfree(PVFS2_SB(sb)); |
| 521 | } |
| 522 | |
| 523 | int pvfs2_inode_cache_initialize(void) |
| 524 | { |
| 525 | pvfs2_inode_cache = kmem_cache_create("pvfs2_inode_cache", |
| 526 | sizeof(struct pvfs2_inode_s), |
| 527 | 0, |
| 528 | PVFS2_CACHE_CREATE_FLAGS, |
| 529 | pvfs2_inode_cache_ctor); |
| 530 | |
| 531 | if (!pvfs2_inode_cache) { |
| 532 | gossip_err("Cannot create pvfs2_inode_cache\n"); |
| 533 | return -ENOMEM; |
| 534 | } |
| 535 | return 0; |
| 536 | } |
| 537 | |
| 538 | int pvfs2_inode_cache_finalize(void) |
| 539 | { |
| 540 | kmem_cache_destroy(pvfs2_inode_cache); |
| 541 | return 0; |
| 542 | } |