aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6/xfs_iops.c
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2006-03-13 22:00:51 -0500
committerNathan Scott <nathans@sgi.com>2006-03-13 22:00:51 -0500
commit416c6d5bcfe8ac2c65a955be62bc42d8b8d5b014 (patch)
treebf8ef73d247c4e44db36d9c742a088e0c4330630 /fs/xfs/linux-2.6/xfs_iops.c
parent3562fd45658fbb696f4546479332d5249c3ad90f (diff)
[XFS] Switch over from linvfs names for inode operations for consistent
naming. SGI-PV: 950556 SGI-Modid: xfs-linux-melb:xfs-kern:25381a Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_iops.c')
-rw-r--r--fs/xfs/linux-2.6/xfs_iops.c160
1 files changed, 80 insertions, 80 deletions
diff --git a/fs/xfs/linux-2.6/xfs_iops.c b/fs/xfs/linux-2.6/xfs_iops.c
index 52b02bd5c283..93b9e6e43f20 100644
--- a/fs/xfs/linux-2.6/xfs_iops.c
+++ b/fs/xfs/linux-2.6/xfs_iops.c
@@ -198,7 +198,7 @@ xfs_ichgtime_fast(
198 * Pull the link count and size up from the xfs inode to the linux inode 198 * Pull the link count and size up from the xfs inode to the linux inode
199 */ 199 */
200STATIC void 200STATIC void
201__linvfs_validate_fields( 201xfs_validate_fields(
202 struct inode *ip, 202 struct inode *ip,
203 struct vattr *vattr) 203 struct vattr *vattr)
204{ 204{
@@ -224,7 +224,7 @@ __linvfs_validate_fields(
224 * inode, of course, such that log replay can't cause these to be lost). 224 * inode, of course, such that log replay can't cause these to be lost).
225 */ 225 */
226STATIC int 226STATIC int
227__linvfs_init_security( 227xfs_init_security(
228 struct vnode *vp, 228 struct vnode *vp,
229 struct inode *dir) 229 struct inode *dir)
230{ 230{
@@ -257,13 +257,13 @@ __linvfs_init_security(
257 * XXX(hch): nfsd is broken, better fix it instead. 257 * XXX(hch): nfsd is broken, better fix it instead.
258 */ 258 */
259STATIC inline int 259STATIC inline int
260__linvfs_has_fs_struct(struct task_struct *task) 260xfs_has_fs_struct(struct task_struct *task)
261{ 261{
262 return (task->fs != init_task.fs); 262 return (task->fs != init_task.fs);
263} 263}
264 264
265STATIC inline void 265STATIC inline void
266__linvfs_cleanup_inode( 266xfs_cleanup_inode(
267 vnode_t *dvp, 267 vnode_t *dvp,
268 vnode_t *vp, 268 vnode_t *vp,
269 struct dentry *dentry, 269 struct dentry *dentry,
@@ -274,7 +274,7 @@ __linvfs_cleanup_inode(
274 274
275 /* Oh, the horror. 275 /* Oh, the horror.
276 * If we can't add the ACL or we fail in 276 * If we can't add the ACL or we fail in
277 * linvfs_init_security we must back out. 277 * xfs_init_security we must back out.
278 * ENOSPC can hit here, among other things. 278 * ENOSPC can hit here, among other things.
279 */ 279 */
280 teardown.d_inode = LINVFS_GET_IP(vp); 280 teardown.d_inode = LINVFS_GET_IP(vp);
@@ -288,7 +288,7 @@ __linvfs_cleanup_inode(
288} 288}
289 289
290STATIC int 290STATIC int
291linvfs_mknod( 291xfs_vn_mknod(
292 struct inode *dir, 292 struct inode *dir,
293 struct dentry *dentry, 293 struct dentry *dentry,
294 int mode, 294 int mode,
@@ -323,7 +323,7 @@ linvfs_mknod(
323 } 323 }
324 } 324 }
325 325
326 if (IS_POSIXACL(dir) && !default_acl && __linvfs_has_fs_struct(current)) 326 if (IS_POSIXACL(dir) && !default_acl && xfs_has_fs_struct(current))
327 mode &= ~current->fs->umask; 327 mode &= ~current->fs->umask;
328 328
329 memset(vattr, 0, sizeof(*vattr)); 329 memset(vattr, 0, sizeof(*vattr));
@@ -347,9 +347,9 @@ linvfs_mknod(
347 } 347 }
348 348
349 if (unlikely(!error)) { 349 if (unlikely(!error)) {
350 error = __linvfs_init_security(vp, dir); 350 error = xfs_init_security(vp, dir);
351 if (error) 351 if (error)
352 __linvfs_cleanup_inode(dvp, vp, dentry, mode); 352 xfs_cleanup_inode(dvp, vp, dentry, mode);
353 } 353 }
354 354
355 if (unlikely(default_acl)) { 355 if (unlikely(default_acl)) {
@@ -358,7 +358,7 @@ linvfs_mknod(
358 if (!error) 358 if (!error)
359 VMODIFY(vp); 359 VMODIFY(vp);
360 else 360 else
361 __linvfs_cleanup_inode(dvp, vp, dentry, mode); 361 xfs_cleanup_inode(dvp, vp, dentry, mode);
362 } 362 }
363 _ACL_FREE(default_acl); 363 _ACL_FREE(default_acl);
364 } 364 }
@@ -370,35 +370,35 @@ linvfs_mknod(
370 if (S_ISCHR(mode) || S_ISBLK(mode)) 370 if (S_ISCHR(mode) || S_ISBLK(mode))
371 ip->i_rdev = rdev; 371 ip->i_rdev = rdev;
372 else if (S_ISDIR(mode)) 372 else if (S_ISDIR(mode))
373 __linvfs_validate_fields(ip, vattr); 373 xfs_validate_fields(ip, vattr);
374 d_instantiate(dentry, ip); 374 d_instantiate(dentry, ip);
375 __linvfs_validate_fields(dir, vattr); 375 xfs_validate_fields(dir, vattr);
376 } 376 }
377 kfree(vattr); 377 kfree(vattr);
378 return -error; 378 return -error;
379} 379}
380 380
381STATIC int 381STATIC int
382linvfs_create( 382xfs_vn_create(
383 struct inode *dir, 383 struct inode *dir,
384 struct dentry *dentry, 384 struct dentry *dentry,
385 int mode, 385 int mode,
386 struct nameidata *nd) 386 struct nameidata *nd)
387{ 387{
388 return linvfs_mknod(dir, dentry, mode, 0); 388 return xfs_vn_mknod(dir, dentry, mode, 0);
389} 389}
390 390
391STATIC int 391STATIC int
392linvfs_mkdir( 392xfs_vn_mkdir(
393 struct inode *dir, 393 struct inode *dir,
394 struct dentry *dentry, 394 struct dentry *dentry,
395 int mode) 395 int mode)
396{ 396{
397 return linvfs_mknod(dir, dentry, mode|S_IFDIR, 0); 397 return xfs_vn_mknod(dir, dentry, mode|S_IFDIR, 0);
398} 398}
399 399
400STATIC struct dentry * 400STATIC struct dentry *
401linvfs_lookup( 401xfs_vn_lookup(
402 struct inode *dir, 402 struct inode *dir,
403 struct dentry *dentry, 403 struct dentry *dentry,
404 struct nameidata *nd) 404 struct nameidata *nd)
@@ -421,7 +421,7 @@ linvfs_lookup(
421} 421}
422 422
423STATIC int 423STATIC int
424linvfs_link( 424xfs_vn_link(
425 struct dentry *old_dentry, 425 struct dentry *old_dentry,
426 struct inode *dir, 426 struct inode *dir,
427 struct dentry *dentry) 427 struct dentry *dentry)
@@ -447,7 +447,7 @@ linvfs_link(
447 if (likely(!error)) { 447 if (likely(!error)) {
448 VMODIFY(tdvp); 448 VMODIFY(tdvp);
449 VN_HOLD(vp); 449 VN_HOLD(vp);
450 __linvfs_validate_fields(ip, vattr); 450 xfs_validate_fields(ip, vattr);
451 d_instantiate(dentry, ip); 451 d_instantiate(dentry, ip);
452 } 452 }
453 kfree(vattr); 453 kfree(vattr);
@@ -455,7 +455,7 @@ linvfs_link(
455} 455}
456 456
457STATIC int 457STATIC int
458linvfs_unlink( 458xfs_vn_unlink(
459 struct inode *dir, 459 struct inode *dir,
460 struct dentry *dentry) 460 struct dentry *dentry)
461{ 461{
@@ -473,15 +473,15 @@ linvfs_unlink(
473 473
474 VOP_REMOVE(dvp, dentry, NULL, error); 474 VOP_REMOVE(dvp, dentry, NULL, error);
475 if (likely(!error)) { 475 if (likely(!error)) {
476 __linvfs_validate_fields(dir, vattr); /* size needs update */ 476 xfs_validate_fields(dir, vattr); /* size needs update */
477 __linvfs_validate_fields(inode, vattr); 477 xfs_validate_fields(inode, vattr);
478 } 478 }
479 kfree(vattr); 479 kfree(vattr);
480 return -error; 480 return -error;
481} 481}
482 482
483STATIC int 483STATIC int
484linvfs_symlink( 484xfs_vn_symlink(
485 struct inode *dir, 485 struct inode *dir,
486 struct dentry *dentry, 486 struct dentry *dentry,
487 const char *symname) 487 const char *symname)
@@ -507,12 +507,12 @@ linvfs_symlink(
507 error = 0; 507 error = 0;
508 VOP_SYMLINK(dvp, dentry, vattr, (char *)symname, &cvp, NULL, error); 508 VOP_SYMLINK(dvp, dentry, vattr, (char *)symname, &cvp, NULL, error);
509 if (likely(!error && cvp)) { 509 if (likely(!error && cvp)) {
510 error = __linvfs_init_security(cvp, dir); 510 error = xfs_init_security(cvp, dir);
511 if (likely(!error)) { 511 if (likely(!error)) {
512 ip = LINVFS_GET_IP(cvp); 512 ip = LINVFS_GET_IP(cvp);
513 d_instantiate(dentry, ip); 513 d_instantiate(dentry, ip);
514 __linvfs_validate_fields(dir, vattr); 514 xfs_validate_fields(dir, vattr);
515 __linvfs_validate_fields(ip, vattr); 515 xfs_validate_fields(ip, vattr);
516 } 516 }
517 } 517 }
518 kfree(vattr); 518 kfree(vattr);
@@ -520,7 +520,7 @@ linvfs_symlink(
520} 520}
521 521
522STATIC int 522STATIC int
523linvfs_rmdir( 523xfs_vn_rmdir(
524 struct inode *dir, 524 struct inode *dir,
525 struct dentry *dentry) 525 struct dentry *dentry)
526{ 526{
@@ -535,15 +535,15 @@ linvfs_rmdir(
535 535
536 VOP_RMDIR(dvp, dentry, NULL, error); 536 VOP_RMDIR(dvp, dentry, NULL, error);
537 if (likely(!error)) { 537 if (likely(!error)) {
538 __linvfs_validate_fields(inode, vattr); 538 xfs_validate_fields(inode, vattr);
539 __linvfs_validate_fields(dir, vattr); 539 xfs_validate_fields(dir, vattr);
540 } 540 }
541 kfree(vattr); 541 kfree(vattr);
542 return -error; 542 return -error;
543} 543}
544 544
545STATIC int 545STATIC int
546linvfs_rename( 546xfs_vn_rename(
547 struct inode *odir, 547 struct inode *odir,
548 struct dentry *odentry, 548 struct dentry *odentry,
549 struct inode *ndir, 549 struct inode *ndir,
@@ -565,10 +565,10 @@ linvfs_rename(
565 VOP_RENAME(fvp, odentry, tvp, ndentry, NULL, error); 565 VOP_RENAME(fvp, odentry, tvp, ndentry, NULL, error);
566 if (likely(!error)) { 566 if (likely(!error)) {
567 if (new_inode) 567 if (new_inode)
568 __linvfs_validate_fields(new_inode, vattr); 568 xfs_validate_fields(new_inode, vattr);
569 __linvfs_validate_fields(odir, vattr); 569 xfs_validate_fields(odir, vattr);
570 if (ndir != odir) 570 if (ndir != odir)
571 __linvfs_validate_fields(ndir, vattr); 571 xfs_validate_fields(ndir, vattr);
572 } 572 }
573 kfree(vattr); 573 kfree(vattr);
574 return -error; 574 return -error;
@@ -580,7 +580,7 @@ linvfs_rename(
580 * uio is kmalloced for this reason... 580 * uio is kmalloced for this reason...
581 */ 581 */
582STATIC void * 582STATIC void *
583linvfs_follow_link( 583xfs_vn_follow_link(
584 struct dentry *dentry, 584 struct dentry *dentry,
585 struct nameidata *nd) 585 struct nameidata *nd)
586{ 586{
@@ -631,7 +631,7 @@ linvfs_follow_link(
631} 631}
632 632
633STATIC void 633STATIC void
634linvfs_put_link( 634xfs_vn_put_link(
635 struct dentry *dentry, 635 struct dentry *dentry,
636 struct nameidata *nd, 636 struct nameidata *nd,
637 void *p) 637 void *p)
@@ -644,7 +644,7 @@ linvfs_put_link(
644 644
645#ifdef CONFIG_XFS_POSIX_ACL 645#ifdef CONFIG_XFS_POSIX_ACL
646STATIC int 646STATIC int
647linvfs_permission( 647xfs_vn_permission(
648 struct inode *inode, 648 struct inode *inode,
649 int mode, 649 int mode,
650 struct nameidata *nd) 650 struct nameidata *nd)
@@ -657,11 +657,11 @@ linvfs_permission(
657 return -error; 657 return -error;
658} 658}
659#else 659#else
660#define linvfs_permission NULL 660#define xfs_vn_permission NULL
661#endif 661#endif
662 662
663STATIC int 663STATIC int
664linvfs_getattr( 664xfs_vn_getattr(
665 struct vfsmount *mnt, 665 struct vfsmount *mnt,
666 struct dentry *dentry, 666 struct dentry *dentry,
667 struct kstat *stat) 667 struct kstat *stat)
@@ -678,7 +678,7 @@ linvfs_getattr(
678} 678}
679 679
680STATIC int 680STATIC int
681linvfs_setattr( 681xfs_vn_setattr(
682 struct dentry *dentry, 682 struct dentry *dentry,
683 struct iattr *attr) 683 struct iattr *attr)
684{ 684{
@@ -736,14 +736,14 @@ linvfs_setattr(
736} 736}
737 737
738STATIC void 738STATIC void
739linvfs_truncate( 739xfs_vn_truncate(
740 struct inode *inode) 740 struct inode *inode)
741{ 741{
742 block_truncate_page(inode->i_mapping, inode->i_size, xfs_get_block); 742 block_truncate_page(inode->i_mapping, inode->i_size, xfs_get_block);
743} 743}
744 744
745STATIC int 745STATIC int
746linvfs_setxattr( 746xfs_vn_setxattr(
747 struct dentry *dentry, 747 struct dentry *dentry,
748 const char *name, 748 const char *name,
749 const void *data, 749 const void *data,
@@ -774,7 +774,7 @@ linvfs_setxattr(
774} 774}
775 775
776STATIC ssize_t 776STATIC ssize_t
777linvfs_getxattr( 777xfs_vn_getxattr(
778 struct dentry *dentry, 778 struct dentry *dentry,
779 const char *name, 779 const char *name,
780 void *data, 780 void *data,
@@ -804,7 +804,7 @@ linvfs_getxattr(
804} 804}
805 805
806STATIC ssize_t 806STATIC ssize_t
807linvfs_listxattr( 807xfs_vn_listxattr(
808 struct dentry *dentry, 808 struct dentry *dentry,
809 char *data, 809 char *data,
810 size_t size) 810 size_t size)
@@ -824,7 +824,7 @@ linvfs_listxattr(
824} 824}
825 825
826STATIC int 826STATIC int
827linvfs_removexattr( 827xfs_vn_removexattr(
828 struct dentry *dentry, 828 struct dentry *dentry,
829 const char *name) 829 const char *name)
830{ 830{
@@ -846,45 +846,45 @@ linvfs_removexattr(
846} 846}
847 847
848 848
849struct inode_operations linvfs_file_inode_operations = { 849struct inode_operations xfs_inode_operations = {
850 .permission = linvfs_permission, 850 .permission = xfs_vn_permission,
851 .truncate = linvfs_truncate, 851 .truncate = xfs_vn_truncate,
852 .getattr = linvfs_getattr, 852 .getattr = xfs_vn_getattr,
853 .setattr = linvfs_setattr, 853 .setattr = xfs_vn_setattr,
854 .setxattr = linvfs_setxattr, 854 .setxattr = xfs_vn_setxattr,
855 .getxattr = linvfs_getxattr, 855 .getxattr = xfs_vn_getxattr,
856 .listxattr = linvfs_listxattr, 856 .listxattr = xfs_vn_listxattr,
857 .removexattr = linvfs_removexattr, 857 .removexattr = xfs_vn_removexattr,
858}; 858};
859 859
860struct inode_operations linvfs_dir_inode_operations = { 860struct inode_operations xfs_dir_inode_operations = {
861 .create = linvfs_create, 861 .create = xfs_vn_create,
862 .lookup = linvfs_lookup, 862 .lookup = xfs_vn_lookup,
863 .link = linvfs_link, 863 .link = xfs_vn_link,
864 .unlink = linvfs_unlink, 864 .unlink = xfs_vn_unlink,
865 .symlink = linvfs_symlink, 865 .symlink = xfs_vn_symlink,
866 .mkdir = linvfs_mkdir, 866 .mkdir = xfs_vn_mkdir,
867 .rmdir = linvfs_rmdir, 867 .rmdir = xfs_vn_rmdir,
868 .mknod = linvfs_mknod, 868 .mknod = xfs_vn_mknod,
869 .rename = linvfs_rename, 869 .rename = xfs_vn_rename,
870 .permission = linvfs_permission, 870 .permission = xfs_vn_permission,
871 .getattr = linvfs_getattr, 871 .getattr = xfs_vn_getattr,
872 .setattr = linvfs_setattr, 872 .setattr = xfs_vn_setattr,
873 .setxattr = linvfs_setxattr, 873 .setxattr = xfs_vn_setxattr,
874 .getxattr = linvfs_getxattr, 874 .getxattr = xfs_vn_getxattr,
875 .listxattr = linvfs_listxattr, 875 .listxattr = xfs_vn_listxattr,
876 .removexattr = linvfs_removexattr, 876 .removexattr = xfs_vn_removexattr,
877}; 877};
878 878
879struct inode_operations linvfs_symlink_inode_operations = { 879struct inode_operations xfs_symlink_inode_operations = {
880 .readlink = generic_readlink, 880 .readlink = generic_readlink,
881 .follow_link = linvfs_follow_link, 881 .follow_link = xfs_vn_follow_link,
882 .put_link = linvfs_put_link, 882 .put_link = xfs_vn_put_link,
883 .permission = linvfs_permission, 883 .permission = xfs_vn_permission,
884 .getattr = linvfs_getattr, 884 .getattr = xfs_vn_getattr,
885 .setattr = linvfs_setattr, 885 .setattr = xfs_vn_setattr,
886 .setxattr = linvfs_setxattr, 886 .setxattr = xfs_vn_setxattr,
887 .getxattr = linvfs_getxattr, 887 .getxattr = xfs_vn_getxattr,
888 .listxattr = linvfs_listxattr, 888 .listxattr = xfs_vn_listxattr,
889 .removexattr = linvfs_removexattr, 889 .removexattr = xfs_vn_removexattr,
890}; 890};