summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2015-12-11 07:09:03 -0500
committerSteven Rostedt <rostedt@goodmis.org>2015-12-16 09:28:23 -0500
commitdd39a26538e37f6c6131e829a4a510787e43c783 (patch)
tree9803a42e2db54046bf428f6aff607b6256f53f51 /scripts
parent9f9499ae8e6415cefc4fe0a96ad0e27864353c89 (diff)
scripts: recordmcount: break hardlinks
recordmcount edits the file in-place, which can cause problems when using ccache in hardlink mode. Arrange for recordmcount to break a hardlinked object. Link: http://lkml.kernel.org/r/E1a7MVT-0000et-62@rmk-PC.arm.linux.org.uk Cc: stable@vger.kernel.org # 2.6.37+ Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/recordmcount.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/recordmcount.c b/scripts/recordmcount.c
index 698768bdc581..91705ef30402 100644
--- a/scripts/recordmcount.c
+++ b/scripts/recordmcount.c
@@ -211,6 +211,20 @@ static void *mmap_file(char const *fname)
211 addr = umalloc(sb.st_size); 211 addr = umalloc(sb.st_size);
212 uread(fd_map, addr, sb.st_size); 212 uread(fd_map, addr, sb.st_size);
213 } 213 }
214 if (sb.st_nlink != 1) {
215 /* file is hard-linked, break the hard link */
216 close(fd_map);
217 if (unlink(fname) < 0) {
218 perror(fname);
219 fail_file();
220 }
221 fd_map = open(fname, O_RDWR | O_CREAT, sb.st_mode);
222 if (fd_map < 0) {
223 perror(fname);
224 fail_file();
225 }
226 uwrite(fd_map, addr, sb.st_size);
227 }
214 return addr; 228 return addr;
215} 229}
216 230