Overview
| Comment: | Added back completely needed operation | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 84483d593356b6108ab4625fdbb0266c | 
| User & Date: | rkeene on 2014-11-14 05:20:16 | 
| Other Links: | manifest | tags | 
Context
| 2014-11-14 | ||
| 06:13 | Updated to decrement reference count for objects as we are done with them check-in: 651fd8051a user: rkeene tags: trunk | |
| 05:20 | Added back completely needed operation check-in: 84483d5933 user: rkeene tags: trunk | |
| 04:27 | Fixed extraneous profiling flag check-in: 9c566a30db user: rkeene tags: trunk | |
Changes
Modified appfsd.c from [293b50199a] to [cb5c5230cc].
| ︙ | ︙ | |||
| 503 504 505 506 507 508 509 510 511 512 513 514 515 516 | 
static unsigned long long appfs_get_path_inode(const char *path) {
	int retval;
	const char *p;
	retval = 10;
	for (p = path; *p; p++) {
		retval += *p;
		retval <<= 6;
	}
	retval += 10;
	retval %= 4294967286ULL;
	retval += 10;
 | > | 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 | 
static unsigned long long appfs_get_path_inode(const char *path) {
	int retval;
	const char *p;
	retval = 10;
	for (p = path; *p; p++) {
		retval %= 4290960290ULL;
		retval += *p;
		retval <<= 6;
	}
	retval += 10;
	retval %= 4294967286ULL;
	retval += 10;
 | 
| ︙ | ︙ |