Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 29692
b: refs/heads/master
c: 515decd
h: refs/heads/master
v: v3
  • Loading branch information
Jan Engelhardt authored and Linus Torvalds committed Jun 25, 2006
1 parent 7fec03a commit 2878700
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 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: 0928d68056fa25456830b1de9f0ee89bc37447cd
refs/heads/master: 515decdccf81cfbf5273d7f0085aea954ecd26c4
24 changes: 12 additions & 12 deletions trunk/fs/openpromfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ static ssize_t nodenum_read(struct file *file, char __user *buf,

if (count < 0 || !inode->u.generic_ip)
return -EINVAL;
sprintf (buffer, "%8.8x\n", (u32)(long)(inode->u.generic_ip));
sprintf (buffer, "%8.8lx\n", (long)inode->u.generic_ip);
if (file->f_pos >= 9)
return 0;
if (count > 9 - file->f_pos)
Expand Down Expand Up @@ -123,7 +123,7 @@ static ssize_t property_read(struct file *filp, char __user *buf,
GFP_KERNEL);
if (!filp->private_data)
return -ENOMEM;
op = (openprom_property *)filp->private_data;
op = filp->private_data;
op->flag = 0;
op->alloclen = 2 * i;
strcpy (op->name, p);
Expand Down Expand Up @@ -163,7 +163,7 @@ static ssize_t property_read(struct file *filp, char __user *buf,
op->len--;
}
} else
op = (openprom_property *)filp->private_data;
op = filp->private_data;
if (!count || !(op->len || (op->flag & OPP_ASCIIZ)))
return 0;
if (*ppos >= 0xffffff || count >= 0xffffff)
Expand Down Expand Up @@ -335,7 +335,7 @@ static ssize_t property_write(struct file *filp, const char __user *buf,
return i;
}
k = *ppos;
op = (openprom_property *)filp->private_data;
op = filp->private_data;
if (!(op->flag & OPP_STRING)) {
u32 *first, *last;
int first_off, last_cnt;
Expand Down Expand Up @@ -388,13 +388,13 @@ static ssize_t property_write(struct file *filp, const char __user *buf,
memcpy (b, filp->private_data,
sizeof (openprom_property)
+ strlen (op->name) + op->alloclen);
memset (((char *)b) + sizeof (openprom_property)
memset (b + sizeof (openprom_property)
+ strlen (op->name) + op->alloclen,
0, 2 * i - op->alloclen);
op = (openprom_property *)b;
op = b;
op->alloclen = 2*i;
b = filp->private_data;
filp->private_data = (void *)op;
filp->private_data = op;
kfree (b);
}
first = ((u32 *)op->value) + (k / 9);
Expand Down Expand Up @@ -498,13 +498,13 @@ static ssize_t property_write(struct file *filp, const char __user *buf,
memcpy (b, filp->private_data,
sizeof (openprom_property)
+ strlen (op->name) + op->alloclen);
memset (((char *)b) + sizeof (openprom_property)
memset (b + sizeof (openprom_property)
+ strlen (op->name) + op->alloclen,
0, 2*(count - *ppos) - op->alloclen);
op = (openprom_property *)b;
op = b;
op->alloclen = 2*(count + *ppos);
b = filp->private_data;
filp->private_data = (void *)op;
filp->private_data = op;
kfree (b);
}
p = op->value + *ppos - ((op->flag & OPP_QUOTED) ? 1 : 0);
Expand Down Expand Up @@ -533,7 +533,7 @@ static ssize_t property_write(struct file *filp, const char __user *buf,

int property_release (struct inode *inode, struct file *filp)
{
openprom_property *op = (openprom_property *)filp->private_data;
openprom_property *op = filp->private_data;
int error;
u32 node;

Expand Down Expand Up @@ -932,7 +932,7 @@ static int __init check_space (u16 n)
return -1;

if (nodes) {
memcpy ((char *)pages, (char *)nodes,
memcpy ((char *)pages, nodes,
(1 << alloced) * PAGE_SIZE);
free_pages ((unsigned long)nodes, alloced);
}
Expand Down

0 comments on commit 2878700

Please sign in to comment.