Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial
* 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (39 commits) Update broken web addresses in arch directory. Update broken web addresses in the kernel. Revert "drivers/usb: Remove unnecessary return's from void functions" for musb gadget Revert "Fix typo: configuation => configuration" partially ida: document IDA_BITMAP_LONGS calculation ext2: fix a typo on comment in ext2/inode.c drivers/scsi: Remove unnecessary casts of private_data drivers/s390: Remove unnecessary casts of private_data net/sunrpc/rpc_pipe.c: Remove unnecessary casts of private_data drivers/infiniband: Remove unnecessary casts of private_data drivers/gpu/drm: Remove unnecessary casts of private_data kernel/pm_qos_params.c: Remove unnecessary casts of private_data fs/ecryptfs: Remove unnecessary casts of private_data fs/seq_file.c: Remove unnecessary casts of private_data arm: uengine.c: remove C99 comments arm: scoop.c: remove C99 comments Fix typo configue => configure in comments Fix typo: configuation => configuration Fix typo interrest[ing|ed] => interest[ing|ed] Fix various typos of valid in comments ... Fix up trivial conflicts in: drivers/char/ipmi/ipmi_si_intf.c drivers/usb/gadget/rndis.c net/irda/irnet/irnet_ppp.c
This commit is contained in:
@@ -55,7 +55,7 @@ int exofs_read_kern(struct osd_dev *od, u8 *cred, struct osd_obj_id *obj,
|
||||
|
||||
ret = osd_finalize_request(or, 0, cred, NULL);
|
||||
if (unlikely(ret)) {
|
||||
EXOFS_DBGMSG("Faild to osd_finalize_request() => %d\n", ret);
|
||||
EXOFS_DBGMSG("Failed to osd_finalize_request() => %d\n", ret);
|
||||
goto out;
|
||||
}
|
||||
|
||||
@@ -79,7 +79,7 @@ int exofs_get_io_state(struct exofs_layout *layout,
|
||||
*/
|
||||
ios = kzalloc(exofs_io_state_size(layout->s_numdevs), GFP_KERNEL);
|
||||
if (unlikely(!ios)) {
|
||||
EXOFS_DBGMSG("Faild kzalloc bytes=%d\n",
|
||||
EXOFS_DBGMSG("Failed kzalloc bytes=%d\n",
|
||||
exofs_io_state_size(layout->s_numdevs));
|
||||
*pios = NULL;
|
||||
return -ENOMEM;
|
||||
@@ -172,7 +172,7 @@ static int exofs_io_execute(struct exofs_io_state *ios)
|
||||
|
||||
ret = osd_finalize_request(or, 0, ios->cred, NULL);
|
||||
if (unlikely(ret)) {
|
||||
EXOFS_DBGMSG("Faild to osd_finalize_request() => %d\n",
|
||||
EXOFS_DBGMSG("Failed to osd_finalize_request() => %d\n",
|
||||
ret);
|
||||
return ret;
|
||||
}
|
||||
@@ -361,7 +361,7 @@ static int _add_stripe_unit(struct exofs_io_state *ios, unsigned *cur_pg,
|
||||
|
||||
per_dev->bio = bio_kmalloc(GFP_KERNEL, bio_size);
|
||||
if (unlikely(!per_dev->bio)) {
|
||||
EXOFS_DBGMSG("Faild to allocate BIO size=%u\n",
|
||||
EXOFS_DBGMSG("Failed to allocate BIO size=%u\n",
|
||||
bio_size);
|
||||
return -ENOMEM;
|
||||
}
|
||||
@@ -564,7 +564,7 @@ static int _sbi_write_mirror(struct exofs_io_state *ios, int cur_comp)
|
||||
master_dev->bio->bi_max_vecs);
|
||||
if (unlikely(!bio)) {
|
||||
EXOFS_DBGMSG(
|
||||
"Faild to allocate BIO size=%u\n",
|
||||
"Failed to allocate BIO size=%u\n",
|
||||
master_dev->bio->bi_max_vecs);
|
||||
ret = -ENOMEM;
|
||||
goto out;
|
||||
|
Reference in New Issue
Block a user