Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 91901
b: refs/heads/master
c: 16abef0
h: refs/heads/master
i:
  91899: d5a0307
v: v3
  • Loading branch information
David Sterba authored and Linus Torvalds committed Apr 22, 2008
1 parent 4e4792c commit b3cc32d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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: e199ceee15c8f8652cc3bb97651bdf246ba23c5f
refs/heads/master: 16abef0e9e79643827fd5a2a14a07bced851ae72
6 changes: 3 additions & 3 deletions trunk/fs/read_write.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ EXPORT_SYMBOL(generic_ro_fops);

loff_t generic_file_llseek(struct file *file, loff_t offset, int origin)
{
long long retval;
loff_t retval;
struct inode *inode = file->f_mapping->host;

mutex_lock(&inode->i_mutex);
Expand All @@ -60,7 +60,7 @@ EXPORT_SYMBOL(generic_file_llseek);

loff_t remote_llseek(struct file *file, loff_t offset, int origin)
{
long long retval;
loff_t retval;

lock_kernel();
switch (origin) {
Expand Down Expand Up @@ -91,7 +91,7 @@ EXPORT_SYMBOL(no_llseek);

loff_t default_llseek(struct file *file, loff_t offset, int origin)
{
long long retval;
loff_t retval;

lock_kernel();
switch (origin) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/fs/seq_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ static int traverse(struct seq_file *m, loff_t offset)
loff_t seq_lseek(struct file *file, loff_t offset, int origin)
{
struct seq_file *m = (struct seq_file *)file->private_data;
long long retval = -EINVAL;
loff_t retval = -EINVAL;

mutex_lock(&m->lock);
m->version = file->f_version;
Expand Down

0 comments on commit b3cc32d

Please sign in to comment.