aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/kobject.c14
-rw-r--r--lib/mpi/mpi-bit.c5
2 files changed, 10 insertions, 9 deletions
diff --git a/lib/kobject.c b/lib/kobject.c
index bbffa2110d4..38fcc60e661 100644
--- a/lib/kobject.c
+++ b/lib/kobject.c
@@ -190,14 +190,14 @@ static int kobject_add_internal(struct kobject *kobj)
190 190
191 /* be noisy on error issues */ 191 /* be noisy on error issues */
192 if (error == -EEXIST) 192 if (error == -EEXIST)
193 printk(KERN_ERR "%s failed for %s with " 193 WARN(1, "%s failed for %s with "
194 "-EEXIST, don't try to register things with " 194 "-EEXIST, don't try to register things with "
195 "the same name in the same directory.\n", 195 "the same name in the same directory.\n",
196 __func__, kobject_name(kobj)); 196 __func__, kobject_name(kobj));
197 else 197 else
198 printk(KERN_ERR "%s failed for %s (%d)\n", 198 WARN(1, "%s failed for %s (error: %d parent: %s)\n",
199 __func__, kobject_name(kobj), error); 199 __func__, kobject_name(kobj), error,
200 dump_stack(); 200 parent ? kobject_name(parent) : "'none'");
201 } else 201 } else
202 kobj->state_in_sysfs = 1; 202 kobj->state_in_sysfs = 1;
203 203
diff --git a/lib/mpi/mpi-bit.c b/lib/mpi/mpi-bit.c
index 2f526627e4f..0c505361da1 100644
--- a/lib/mpi/mpi-bit.c
+++ b/lib/mpi/mpi-bit.c
@@ -177,8 +177,8 @@ int mpi_rshift(MPI x, MPI a, unsigned n)
177 */ 177 */
178int mpi_lshift_limbs(MPI a, unsigned int count) 178int mpi_lshift_limbs(MPI a, unsigned int count)
179{ 179{
180 mpi_ptr_t ap = a->d; 180 const int n = a->nlimbs;
181 int n = a->nlimbs; 181 mpi_ptr_t ap;
182 int i; 182 int i;
183 183
184 if (!count || !n) 184 if (!count || !n)
@@ -187,6 +187,7 @@ int mpi_lshift_limbs(MPI a, unsigned int count)
187 if (RESIZE_IF_NEEDED(a, n + count) < 0) 187 if (RESIZE_IF_NEEDED(a, n + count) < 0)
188 return -ENOMEM; 188 return -ENOMEM;
189 189
190 ap = a->d;
190 for (i = n - 1; i >= 0; i--) 191 for (i = n - 1; i >= 0; i--)
191 ap[i + count] = ap[i]; 192 ap[i + count] = ap[i];
192 for (i = 0; i < count; i++) 193 for (i = 0; i < count; i++)