···1313#include "isofs.h"1414#include "rock.h"15151616-/* These functions are designed to read the system areas of a directory record1616+/*1717+ * These functions are designed to read the system areas of a directory record1718 * and extract relevant information. There are different functions provided1819 * depending upon what information we need at the time. One function fills1920 * out an inode structure, a second one extracts a filename, a third one2021 * returns a symbolic link name, and a fourth one returns the extent number2121- * for the file. */2222+ * for the file.2323+ */22242325#define SIG(A,B) ((A) | ((B) << 8)) /* isonum_721() */2426···36343735/*3836 * This is a way of ensuring that we have something in the system3939- * use fields that is compatible with Rock Ridge. Return zero on success.3737+ * use fields that is compatible with Rock Ridge. Return zero on success.4038 */41394240static int check_sp(struct rock_ridge *rr, struct inode *inode)···113111 return ret;114112}115113116116-/* return length of name field; 0: not found, -1: to be ignored */114114+/*115115+ * return length of name field; 0: not found, -1: to be ignored116116+ */117117int get_rock_ridge_filename(struct iso_directory_record *de,118118 char *retname, struct inode *inode)119119{···539535int parse_rock_ridge_inode(struct iso_directory_record *de, struct inode *inode)540536{541537 int result = parse_rock_ridge_inode_internal(de, inode, 0);542542- /* if rockridge flag was reset and we didn't look for attributes543543- * behind eventual XA attributes, have a look there */538538+539539+ /*540540+ * if rockridge flag was reset and we didn't look for attributes541541+ * behind eventual XA attributes, have a look there542542+ */544543 if ((ISOFS_SB(inode->i_sb)->s_rock_offset == -1)545544 && (ISOFS_SB(inode->i_sb)->s_rock == 2)) {546545 result = parse_rock_ridge_inode_internal(de, inode, 14);···551544 return result;552545}553546554554-/* readpage() for symlinks: reads symlink contents into the page and either555555- makes it uptodate and returns 0 or returns error (-EIO) */556556-547547+/*548548+ * readpage() for symlinks: reads symlink contents into the page and either549549+ * makes it uptodate and returns 0 or returns error (-EIO)550550+ */557551static int rock_ridge_symlink_readpage(struct file *file, struct page *page)558552{559553 struct inode *inode = page->mapping->host;···592584 if (offset + *pnt > bufsize)593585 goto out_bad_span;594586595595- /* Now test for possible Rock Ridge extensions which will override596596- some of these numbers in the inode structure. */587587+ /*588588+ * Now test for possible Rock Ridge extensions which will override589589+ * some of these numbers in the inode structure.590590+ */597591598592 setup_rock_ridge(raw_de, inode, &rs);599593