Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 130426
b: refs/heads/master
c: c3da23b
h: refs/heads/master
v: v3
  • Loading branch information
Corentin Chary authored and Artem Bityutskiy committed Jan 18, 2009
1 parent 7d9ad42 commit a3fd026
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 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: 141e6ebd1b1759bd5cebf092b7216b6f1c7b4c4f
refs/heads/master: c3da23be1673be4e738aea235604b4e6cb259655
15 changes: 14 additions & 1 deletion trunk/drivers/mtd/ubi/cdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -532,13 +532,26 @@ static int vol_cdev_ioctl(struct inode *inode, struct file *file,
err = ubi_leb_map(desc, req.lnum, req.dtype);
break;
}

/* Logical eraseblock un-map command */
case UBI_IOCEBUNMAP:
{
int32_t lnum;

err = get_user(lnum, (__user int32_t *)argp);
if (err) {
err = -EFAULT;
break;
}
err = ubi_leb_unmap(desc, lnum);
break;
}
#endif

default:
err = -ENOTTY;
break;
}

return err;
}

Expand Down
3 changes: 2 additions & 1 deletion trunk/include/mtd/ubi-user.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@
#define UBI_IOCEBCH _IOW(UBI_VOL_IOC_MAGIC, 2, int32_t)
/* Map an eraseblock, used for debugging, disabled by default */
#define UBI_IOCEBMAP _IOW(UBI_VOL_IOC_MAGIC, 3, struct ubi_map_req)

/* Unmap an eraseblock, used for debugging, disabled by default */
#define UBI_IOCEBUNMAP _IOW(UBI_VOL_IOC_MAGIC, 4, int32_t)

/* Maximum MTD device name length supported by UBI */
#define MAX_UBI_MTD_NAME_LEN 127
Expand Down

0 comments on commit a3fd026

Please sign in to comment.