Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 135943
b: refs/heads/master
c: ce6cdc4
h: refs/heads/master
i:
  135941: 00b4ad3
  135939: d4a7802
  135935: 1b738d1
v: v3
  • Loading branch information
Al Viro committed Mar 27, 2009
1 parent f9f6731 commit 5d1600c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 4269590a72934bb901b33b686e20605bf66653c4
refs/heads/master: ce6cdc474aa5bf4c1a7dc698d83bb0622846a81d
2 changes: 1 addition & 1 deletion trunk/fs/fat/namei_msdos.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ static int msdos_cmp(struct dentry *dentry, struct qstr *a, struct qstr *b)
goto out;
}

static struct dentry_operations msdos_dentry_operations = {
static const struct dentry_operations msdos_dentry_operations = {
.d_hash = msdos_hash,
.d_compare = msdos_cmp,
};
Expand Down
4 changes: 2 additions & 2 deletions trunk/fs/fat/namei_vfat.c
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,13 @@ static int vfat_cmp(struct dentry *dentry, struct qstr *a, struct qstr *b)
return 1;
}

static struct dentry_operations vfat_ci_dentry_ops = {
static const struct dentry_operations vfat_ci_dentry_ops = {
.d_revalidate = vfat_revalidate_ci,
.d_hash = vfat_hashi,
.d_compare = vfat_cmpi,
};

static struct dentry_operations vfat_dentry_ops = {
static const struct dentry_operations vfat_dentry_ops = {
.d_revalidate = vfat_revalidate,
.d_hash = vfat_hash,
.d_compare = vfat_cmp,
Expand Down

0 comments on commit 5d1600c

Please sign in to comment.