summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2003-04-25 00:18:43 -0700
committerLinus Torvalds <torvalds@home.transmeta.com>2003-04-25 00:18:43 -0700
commitea1499aa88c2f8a86f8fd16bba0979ab1d9ea183 (patch)
tree288c09fbfb1d2fc5df7174c12f3531d1805fd1a8
parent4971461f0d1bece3af4f63cabebcb8b7e95b6f02 (diff)
[PATCH] Remove unused function from fs/isofs/rock.c
find_rock_ridge_relocation() has been unused since 2.4.0-test11 -- time to bury it. Acked by Peter Anvin.
-rw-r--r--fs/isofs/rock.c70
-rw-r--r--include/linux/iso_fs.h2
2 files changed, 0 insertions, 72 deletions
diff --git a/fs/isofs/rock.c b/fs/isofs/rock.c
index df1d4cbd002b..8d66d202f04e 100644
--- a/fs/isofs/rock.c
+++ b/fs/isofs/rock.c
@@ -84,76 +84,6 @@
printk("Unable to read rock-ridge attributes\n"); \
}}
-/* This is the inner layer of the get filename routine, and is called
- for each system area and continuation record related to the file */
-
-int find_rock_ridge_relocation(struct iso_directory_record * de,
- struct inode * inode) {
- int flag;
- int len;
- int retval;
- unsigned char * chr;
- CONTINUE_DECLS;
- flag = 0;
-
- /* If this is a '..' then we are looking for the parent, otherwise we
- are looking for the child */
-
- if (de->name[0]==1 && de->name_len[0]==1) flag = 1;
- /* Return value if we do not find appropriate record. */
- retval = isonum_733 (de->extent);
-
- if (!ISOFS_SB(inode->i_sb)->s_rock) return retval;
-
- SETUP_ROCK_RIDGE(de, chr, len);
- repeat:
- {
- int rrflag, sig;
- struct rock_ridge * rr;
-
- while (len > 1){ /* There may be one byte for padding somewhere */
- rr = (struct rock_ridge *) chr;
- if (rr->len == 0) goto out; /* Something got screwed up here */
- sig = isonum_721(chr);
- chr += rr->len;
- len -= rr->len;
-
- switch(sig){
- case SIG('R','R'):
- rrflag = rr->u.RR.flags[0];
- if (flag && !(rrflag & RR_PL)) goto out;
- if (!flag && !(rrflag & RR_CL)) goto out;
- break;
- case SIG('S','P'):
- CHECK_SP(goto out);
- break;
- case SIG('C','L'):
- if (flag == 0) {
- retval = isonum_733(rr->u.CL.location);
- goto out;
- }
- break;
- case SIG('P','L'):
- if (flag != 0) {
- retval = isonum_733(rr->u.PL.location);
- goto out;
- }
- break;
- case SIG('C','E'):
- CHECK_CE; /* This tells is if there is a continuation record */
- break;
- default:
- break;
- }
- }
- }
- MAYBE_CONTINUE(repeat, inode);
- return retval;
- out:
- if(buffer) kfree(buffer);
- return retval;
-}
-
/* return length of name field; 0: not found, -1: to be ignored */
int get_rock_ridge_filename(struct iso_directory_record * de,
char * retname, struct inode * inode)
diff --git a/include/linux/iso_fs.h b/include/linux/iso_fs.h
index 8416bedc5c27..4763b595287a 100644
--- a/include/linux/iso_fs.h
+++ b/include/linux/iso_fs.h
@@ -224,8 +224,6 @@ extern int parse_rock_ridge_inode(struct iso_directory_record *, struct inode *)
extern int get_rock_ridge_filename(struct iso_directory_record *, char *, struct inode *);
extern int isofs_name_translate(struct iso_directory_record *, char *, struct inode *);
-extern int find_rock_ridge_relocation(struct iso_directory_record *, struct inode *);
-
int get_joliet_filename(struct iso_directory_record *, unsigned char *, struct inode *);
int get_acorn_filename(struct iso_directory_record *, char *, struct inode *);