···19192020 (2) Have the follow_link() op do the following steps:21212222- (a) Call do_kern_mount() to call the appropriate filesystem to set up a2222+ (a) Call vfs_kern_mount() to call the appropriate filesystem to set up a2323 superblock and gain a vfsmount structure representing it.24242525 (b) Copy the nameidata provided as an argument and substitute the dentry
+1-1
drivers/usb/core/inode.c
···569569 ignore_mount = 1;570570571571 /* create the devices special file */572572- retval = simple_pin_fs("usbfs", &usbfs_mount, &usbfs_mount_count);572572+ retval = simple_pin_fs(&usb_fs_type, &usbfs_mount, &usbfs_mount_count);573573 if (retval) {574574 err ("Unable to get usbfs mount");575575 goto exit;
+1-1
fs/afs/mntpt.c
···210210211211 /* try and do the mount */212212 kdebug("--- attempting mount %s -o %s ---", devname, options);213213- mnt = do_kern_mount("afs", 0, devname, options);213213+ mnt = vfs_kern_mount(&afs_fs_type, 0, devname, options);214214 kdebug("--- mount result %p ---", mnt);215215216216 free_page((unsigned long) devname);