diff options
author | Josef Sipek <jsipek@fsl.cs.sunysb.edu> | 2006-12-08 05:37:17 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-08 11:28:46 -0500 |
commit | a7a005fd12b84392becca311f2a20d5bf2a1b7af (patch) | |
tree | 0baf326ea34bdef38e42a5ae664d348de3c69ae8 /kernel/cpuset.c | |
parent | ff273773bfd4f2131bad1318e56519fcceac2339 (diff) |
[PATCH] struct path: convert kernel
Signed-off-by: Josef Sipek <jsipek@fsl.cs.sunysb.edu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/cpuset.c')
-rw-r--r-- | kernel/cpuset.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kernel/cpuset.c b/kernel/cpuset.c index 0a6b4d89f9a0..2c3b4431472b 100644 --- a/kernel/cpuset.c +++ b/kernel/cpuset.c | |||
@@ -413,8 +413,8 @@ static struct file_system_type cpuset_fs_type = { | |||
413 | * | 413 | * |
414 | * | 414 | * |
415 | * When reading/writing to a file: | 415 | * When reading/writing to a file: |
416 | * - the cpuset to use in file->f_dentry->d_parent->d_fsdata | 416 | * - the cpuset to use in file->f_path.dentry->d_parent->d_fsdata |
417 | * - the 'cftype' of the file is file->f_dentry->d_fsdata | 417 | * - the 'cftype' of the file is file->f_path.dentry->d_fsdata |
418 | */ | 418 | */ |
419 | 419 | ||
420 | struct cftype { | 420 | struct cftype { |
@@ -1284,8 +1284,8 @@ static ssize_t cpuset_common_file_write(struct file *file, | |||
1284 | const char __user *userbuf, | 1284 | const char __user *userbuf, |
1285 | size_t nbytes, loff_t *unused_ppos) | 1285 | size_t nbytes, loff_t *unused_ppos) |
1286 | { | 1286 | { |
1287 | struct cpuset *cs = __d_cs(file->f_dentry->d_parent); | 1287 | struct cpuset *cs = __d_cs(file->f_path.dentry->d_parent); |
1288 | struct cftype *cft = __d_cft(file->f_dentry); | 1288 | struct cftype *cft = __d_cft(file->f_path.dentry); |
1289 | cpuset_filetype_t type = cft->private; | 1289 | cpuset_filetype_t type = cft->private; |
1290 | char *buffer; | 1290 | char *buffer; |
1291 | char *pathbuf = NULL; | 1291 | char *pathbuf = NULL; |
@@ -1367,7 +1367,7 @@ static ssize_t cpuset_file_write(struct file *file, const char __user *buf, | |||
1367 | size_t nbytes, loff_t *ppos) | 1367 | size_t nbytes, loff_t *ppos) |
1368 | { | 1368 | { |
1369 | ssize_t retval = 0; | 1369 | ssize_t retval = 0; |
1370 | struct cftype *cft = __d_cft(file->f_dentry); | 1370 | struct cftype *cft = __d_cft(file->f_path.dentry); |
1371 | if (!cft) | 1371 | if (!cft) |
1372 | return -ENODEV; | 1372 | return -ENODEV; |
1373 | 1373 | ||
@@ -1417,8 +1417,8 @@ static int cpuset_sprintf_memlist(char *page, struct cpuset *cs) | |||
1417 | static ssize_t cpuset_common_file_read(struct file *file, char __user *buf, | 1417 | static ssize_t cpuset_common_file_read(struct file *file, char __user *buf, |
1418 | size_t nbytes, loff_t *ppos) | 1418 | size_t nbytes, loff_t *ppos) |
1419 | { | 1419 | { |
1420 | struct cftype *cft = __d_cft(file->f_dentry); | 1420 | struct cftype *cft = __d_cft(file->f_path.dentry); |
1421 | struct cpuset *cs = __d_cs(file->f_dentry->d_parent); | 1421 | struct cpuset *cs = __d_cs(file->f_path.dentry->d_parent); |
1422 | cpuset_filetype_t type = cft->private; | 1422 | cpuset_filetype_t type = cft->private; |
1423 | char *page; | 1423 | char *page; |
1424 | ssize_t retval = 0; | 1424 | ssize_t retval = 0; |
@@ -1476,7 +1476,7 @@ static ssize_t cpuset_file_read(struct file *file, char __user *buf, size_t nbyt | |||
1476 | loff_t *ppos) | 1476 | loff_t *ppos) |
1477 | { | 1477 | { |
1478 | ssize_t retval = 0; | 1478 | ssize_t retval = 0; |
1479 | struct cftype *cft = __d_cft(file->f_dentry); | 1479 | struct cftype *cft = __d_cft(file->f_path.dentry); |
1480 | if (!cft) | 1480 | if (!cft) |
1481 | return -ENODEV; | 1481 | return -ENODEV; |
1482 | 1482 | ||
@@ -1498,7 +1498,7 @@ static int cpuset_file_open(struct inode *inode, struct file *file) | |||
1498 | if (err) | 1498 | if (err) |
1499 | return err; | 1499 | return err; |
1500 | 1500 | ||
1501 | cft = __d_cft(file->f_dentry); | 1501 | cft = __d_cft(file->f_path.dentry); |
1502 | if (!cft) | 1502 | if (!cft) |
1503 | return -ENODEV; | 1503 | return -ENODEV; |
1504 | if (cft->open) | 1504 | if (cft->open) |
@@ -1511,7 +1511,7 @@ static int cpuset_file_open(struct inode *inode, struct file *file) | |||
1511 | 1511 | ||
1512 | static int cpuset_file_release(struct inode *inode, struct file *file) | 1512 | static int cpuset_file_release(struct inode *inode, struct file *file) |
1513 | { | 1513 | { |
1514 | struct cftype *cft = __d_cft(file->f_dentry); | 1514 | struct cftype *cft = __d_cft(file->f_path.dentry); |
1515 | if (cft->release) | 1515 | if (cft->release) |
1516 | return cft->release(inode, file); | 1516 | return cft->release(inode, file); |
1517 | return 0; | 1517 | return 0; |
@@ -1700,7 +1700,7 @@ static int pid_array_to_buf(char *buf, int sz, pid_t *a, int npids) | |||
1700 | */ | 1700 | */ |
1701 | static int cpuset_tasks_open(struct inode *unused, struct file *file) | 1701 | static int cpuset_tasks_open(struct inode *unused, struct file *file) |
1702 | { | 1702 | { |
1703 | struct cpuset *cs = __d_cs(file->f_dentry->d_parent); | 1703 | struct cpuset *cs = __d_cs(file->f_path.dentry->d_parent); |
1704 | struct ctr_struct *ctr; | 1704 | struct ctr_struct *ctr; |
1705 | pid_t *pidarray; | 1705 | pid_t *pidarray; |
1706 | int npids; | 1706 | int npids; |