• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m32r/kernel/

Lines Matching refs:relocation

103 	Elf32_Addr relocation;
121 relocation = sym->st_value + rel[i].r_addend;
127 value += relocation;
132 relocation = (relocation >>16) & 0xffff;
133 /* RELA must has 0 at relocation field. */
134 value += relocation;
139 if (relocation & 0x8000) relocation += 0x10000;
140 relocation = (relocation >>16) & 0xffff;
141 /* RELA must has 0 at relocation field. */
142 value += relocation;
147 relocation = relocation & 0xffff;
148 /* RELA must has 0 at relocation field. */
149 hvalue = relocation;
155 relocation = relocation & 0xffff;
156 /* RELA must has 0 at relocation field. */
157 value += relocation;
162 relocation = relocation & 0xffffff;
163 /* RELA must has 0 at relocation field. */
164 value += relocation;
168 relocation = (relocation - (Elf32_Addr) location);
169 if (relocation < -0x20000 || 0x1fffc < relocation)
171 printk(KERN_ERR "module %s: relocation overflow: %u\n",
172 me->name, relocation);
178 /* RELA must has 0 at relocation field. */
179 printk(KERN_ERR "module %s: illegal relocation field: %u\n",
183 relocation = (relocation >> 2) & 0xffff;
184 value += relocation;
189 relocation = (relocation - (Elf32_Addr) location);
193 relocation += svalue;
194 relocation = (relocation >> 2) & 0xff;
196 hvalue += relocation;
200 relocation = (relocation - (Elf32_Addr) location);
201 if (relocation < -0x2000000 || 0x1fffffc < relocation)
203 printk(KERN_ERR "module %s: relocation overflow: %u\n",
204 me->name, relocation);
210 /* RELA must has 0 at relocation field. */
211 printk(KERN_ERR "module %s: illegal relocation field: %u\n",
215 relocation = (relocation >> 2) & 0xffffff;
216 value += relocation;
220 printk(KERN_ERR "module %s: Unknown relocation: %u\n",