Changes in / [37b1651d:4c7c251] in mainline
- Files:
-
- 1 deleted
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r37b1651d r4c7c251 42 42 CONFIG_HEADER = config.h 43 43 44 .PHONY: all precheck cscope autotool config_auto config_default config distclean clean check distfile dist44 .PHONY: all precheck cscope autotool config_auto config_default config distclean clean check 45 45 46 46 all: $(COMMON_MAKEFILE) $(COMMON_HEADER) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) … … 64 64 endif 65 65 66 # Autotool (detects compiler features)67 68 66 $(COMMON_MAKEFILE): autotool 69 67 $(COMMON_HEADER): autotool … … 72 70 $(AUTOTOOL) 73 71 -[ -f $(COMMON_HEADER_PREV) ] && diff -q $(COMMON_HEADER_PREV) $(COMMON_HEADER) && mv -f $(COMMON_HEADER_PREV) $(COMMON_HEADER) 74 75 # Build-time configuration76 72 77 73 $(CONFIG_MAKEFILE): config_default … … 88 84 $(CONFIG) $< 89 85 90 # Distribution files91 92 distfile: all93 $(MAKE) -C dist distfile94 95 dist:96 $(MAKE) -C dist dist97 98 # Cleaning99 100 86 distclean: clean 101 rm -f $(CSCOPE).out $(COMMON_MAKEFILE) $(COMMON_HEADER) $(COMMON_HEADER_PREV) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) tools/*.pyc tools/checkers/*.pyc dist/HelenOS-*87 rm -f $(CSCOPE).out $(COMMON_MAKEFILE) $(COMMON_HEADER) $(COMMON_HEADER_PREV) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) tools/*.pyc tools/checkers/*.pyc 102 88 103 89 clean: -
boot/arch/sparc64/include/arch.h
r37b1651d r4c7c251 41 41 #define STACK_BIAS 2047 42 42 #define STACK_WINDOW_SAVE_AREA_SIZE (16 * 8) 43 #define STACK_ARG_SAVE_AREA_SIZE (6 * 8)44 43 45 44 #define NWINDOWS 8 -
boot/arch/sparc64/src/asm.S
r37b1651d r4c7c251 152 152 .global ofw 153 153 ofw: 154 save %sp, - (STACK_WINDOW_SAVE_AREA_SIZE + STACK_ARG_SAVE_AREA_SIZE), %sp154 save %sp, -STACK_WINDOW_SAVE_AREA_SIZE, %sp 155 155 set ofw_cif, %l0 156 156 ldx [%l0], %l0 -
boot/arch/sparc64/src/main.c
r37b1651d r4c7c251 190 190 bootinfo.memmap.zones[0].start += OBP_BIAS; 191 191 bootinfo.memmap.zones[0].size -= OBP_BIAS; 192 bootinfo.memmap.total -= OBP_BIAS;193 192 } 194 193 … … 205 204 bootinfo.physmem_start = ofw_get_physmem_start(); 206 205 ofw_memmap(&bootinfo.memmap); 207 208 if (arch == ARCH_SUN4V)209 sun4v_fixups();210 206 211 207 void *bootinfo_pa = ofw_translate(&bootinfo); … … 257 253 258 254 /* 259 * At this point, we claim and map the physical memory that we260 * aregoing to use. We should be safe in case of the virtual255 * At this point, we claim the physical memory that we are 256 * going to use. We should be safe in case of the virtual 261 257 * address space because the OpenFirmware, according to its 262 * SPARC binding, should restrict its use of virtual memory to 263 * addresses from [0xffd00000; 0xffefffff] and [0xfe000000; 264 * 0xfeffffff]. 258 * SPARC binding, should restrict its use of virtual memory 259 * to addresses from [0xffd00000; 0xffefffff] and 260 * [0xfe000000; 0xfeffffff]. 261 * 262 * We don't map this piece of memory. We simply rely on 263 * SILO to have it done for us already in this case. 264 * 265 * XXX SILO only maps 8 MB for us here. We should improve 266 * this code to be totally independent on the behavior 267 * of SILO. 268 * 265 269 */ 266 270 ofw_claim_phys(bootinfo.physmem_start + dest[i - 1], 267 271 ALIGN_UP(components[i - 1].inflated, PAGE_SIZE)); 268 269 ofw_map(bootinfo.physmem_start + dest[i - 1], dest[i - 1],270 ALIGN_UP(components[i - 1].inflated, PAGE_SIZE), -1);271 272 272 273 int err = inflate(components[i - 1].start, components[i - 1].size, … … 303 304 sun4u_smp(); 304 305 306 if (arch == ARCH_SUN4V) 307 sun4v_fixups(); 308 305 309 printf("Booting the kernel ...\n"); 306 310 jump_to_kernel(bootinfo.physmem_start | BSP_PROCESSOR, &bootinfo, subarch, -
boot/generic/src/balloc.c
r37b1651d r4c7c251 65 65 void *balloc_rebase(void *ptr) 66 66 { 67 return (void *) (( (uintptr_t) ptr - phys_base)+ ballocs->base);67 return (void *) ((uintptr_t) ptr - phys_base + ballocs->base); 68 68 } -
kernel/arch/sparc64/src/sun4v/asm.S
r37b1651d r4c7c251 41 41 .global switch_to_userspace 42 42 switch_to_userspace: 43 save %o1, -(STACK_WINDOW_SAVE_AREA_SIZE + STACK_ARG_SAVE_AREA_SIZE), %sp 43 wrpr PSTATE_PRIV_BIT, %pstate 44 save %o1, -STACK_WINDOW_SAVE_AREA_SIZE, %sp 44 45 flushw 45 46 wrpr %g0, 0, %cleanwin ! avoid information leak -
tools/toolchain.sh
r37b1651d r4c7c251 28 28 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 29 # 30 31 GMP_MAIN=<<EOF32 #define GCC_GMP_VERSION_NUM(a, b, c) \33 (((a) << 16L) | ((b) << 8) | (c))34 35 #define GCC_GMP_VERSION \36 GCC_GMP_VERSION_NUM(__GNU_MP_VERSION, __GNU_MP_VERSION_MINOR, __GNU_MP_VERSION_PATCHLEVEL)37 38 #if GCC_GMP_VERSION < GCC_GMP_VERSION_NUM(4,3,2)39 choke me40 #endif41 EOF42 43 MPFR_MAIN=<<EOF44 #if MPFR_VERSION < MPFR_VERSION_NUM(2, 4, 2)45 choke me46 #endif47 EOF48 49 MPC_MAIN=<<EOF50 #if MPC_VERSION < MPC_VERSION_NUM(0, 8, 1)51 choke me52 #endif53 EOF54 55 #56 # Check if the library described in the argument57 # exists and has acceptable version.58 #59 check_dependency() {60 DEPENDENCY="$1"61 HEADER="$2"62 BODY="$3"63 64 FNAME="/tmp/conftest-$$"65 66 echo "#include ${HEADER}" > "${FNAME}.c"67 echo >> "${FNAME}.c"68 echo "int main()" >> "${FNAME}.c"69 echo "{" >> "${FNAME}.c"70 echo "${BODY}" >> "${FNAME}.c"71 echo " return 0;" >> "${FNAME}.c"72 echo "}" >> "${FNAME}.c"73 74 cc -c -o "${FNAME}.o" "${FNAME}.c" 2> "${FNAME}.log"75 RC="$?"76 77 if [ "$RC" -ne "0" ] ; then78 echo " ${DEPENDENCY} not found, too old or compiler error."79 echo " Please recheck manually the source file \"${FNAME}.c\"."80 echo " The compilation of the toolchain is probably going to fail,"81 echo " you have been warned."82 echo83 echo " ===== Compiler output ====="84 cat "${FNAME}.log"85 echo " ==========================="86 echo87 else88 echo " ${DEPENDENCY} found"89 rm -f "${FNAME}.log" "${FNAME}.o" "${FNAME}.c"90 fi91 }92 93 check_dependecies() {94 echo ">>> Basic dependency check"95 check_dependency "GMP" "<gmp.h>" "${GMP_MAIN}"96 check_dependency "MPFR" "<mpfr.h>" "${MPFR_MAIN}"97 check_dependency "MPC" "<mpc.h>" "${MPC_MAIN}"98 echo99 }100 30 101 31 check_error() { … … 139 69 echo " sparc64 SPARC V9" 140 70 echo " all build all targets" 141 echo142 echo "The toolchain will be installed to the directory specified by"143 echo "the CROSS_PREFIX environment variable. If the variable is not"144 echo "defined, /usr/local will be used by default."145 71 echo 146 72 … … 192 118 echo " - native C library with headers" 193 119 echo 120 121 show_countdown 10 194 122 } 195 123 … … 353 281 354 282 show_dependencies 355 check_dependecies356 show_countdown 10357 283 358 284 case "$1" in -
uspace/app/bdsh/cmds/modules/mount/mount.c
r37b1651d r4c7c251 31 31 #include <vfs/vfs.h> 32 32 #include <errno.h> 33 #include <getopt.h>34 33 #include "config.h" 35 34 #include "util.h" … … 41 40 static const char *cmdname = "mount"; 42 41 43 static struct option const long_options[] = { 44 { "help", no_argument, 0, 'h' }, 45 { 0, 0, 0, 0 } 46 }; 47 48 49 /* Displays help for mount in various levels */ 42 /* Dispays help for mount in various levels */ 50 43 void help_cmd_mount(unsigned int level) 51 44 { … … 66 59 unsigned int argc; 67 60 const char *mopts = ""; 68 int rc , c, opt_ind;61 int rc; 69 62 70 63 argc = cli_count_args(argv); 71 64 72 for (c = 0, optind = 0, opt_ind = 0; c != -1;) {73 c = getopt_long(argc, argv, "h", long_options, &opt_ind);74 switch (c) {75 case 'h':76 help_cmd_mount(HELP_LONG);77 return CMD_SUCCESS;78 }79 }80 81 65 if ((argc < 4) || (argc > 5)) { 82 printf("%s: invalid number of arguments. Try `mount --help'\n",66 printf("%s: invalid number of arguments.\n", 83 67 cmdname); 84 68 return CMD_FAILURE; -
uspace/lib/c/generic/loader.c
r37b1651d r4c7c251 160 160 int rc = async_data_write_start(ldr->phone_id, (void *) pa, pa_len); 161 161 if (rc != EOK) { 162 free(pa);163 162 async_wait_for(req, NULL); 164 163 return rc; -
uspace/lib/c/generic/vfs/vfs.c
r37b1651d r4c7c251 69 69 char *ncwd_path; 70 70 char *ncwd_path_nc; 71 size_t total_size;72 71 73 72 fibril_mutex_lock(&cwd_mutex); … … 78 77 return NULL; 79 78 } 80 total_size = cwd_size + 1 + size + 1; 81 ncwd_path_nc = malloc(total_size); 79 ncwd_path_nc = malloc(cwd_size + 1 + size + 1); 82 80 if (!ncwd_path_nc) { 83 81 fibril_mutex_unlock(&cwd_mutex); 84 82 return NULL; 85 83 } 86 str_cpy(ncwd_path_nc, total_size, cwd_path);84 str_cpy(ncwd_path_nc, cwd_size + 1 + size + 1, cwd_path); 87 85 ncwd_path_nc[cwd_size] = '/'; 88 86 ncwd_path_nc[cwd_size + 1] = '\0'; 89 87 } else { 90 total_size = size + 1; 91 ncwd_path_nc = malloc(total_size); 88 ncwd_path_nc = malloc(size + 1); 92 89 if (!ncwd_path_nc) { 93 90 fibril_mutex_unlock(&cwd_mutex); … … 96 93 ncwd_path_nc[0] = '\0'; 97 94 } 98 str_append(ncwd_path_nc, total_size, path);95 str_append(ncwd_path_nc, cwd_size + 1 + size + 1, path); 99 96 ncwd_path = canonify(ncwd_path_nc, retlen); 100 97 if (!ncwd_path) { -
uspace/srv/devmap/devmap.c
r37b1651d r4c7c251 123 123 static devmap_handle_t last_handle = 0; 124 124 static devmap_device_t *null_devices[NULL_DEVICES]; 125 126 /*127 * Dummy list for null devices. This is necessary so that null devices can128 * be used just as any other devices, e.g. in devmap_device_unregister_core().129 */130 static LIST_INITIALIZE(dummy_null_driver_devices);131 125 132 126 static devmap_handle_t devmap_create_handle(void) … … 959 953 device->name = dev_name; 960 954 961 /* 962 * Insert device into list of all devices and into null devices array. 963 * Insert device into a dummy list of null driver's devices so that it 964 * can be safely removed later. 965 */ 955 /* Insert device into list of all devices 956 and into null devices array */ 966 957 list_append(&device->devices, &devices_list); 967 list_append(&device->driver_devices, &dummy_null_driver_devices);968 958 null_devices[i] = device; 969 959 -
uspace/srv/fs/fat/fat_ops.c
r37b1651d r4c7c251 325 325 uint16_t_le2host(d->firstc)); 326 326 if (rc != EOK) { 327 (void) block_put(b);328 327 (void) fat_node_put(FS_NODE(nodep)); 329 328 return rc; … … 812 811 fibril_mutex_unlock(&childp->idx->lock); 813 812 childp->lnkcnt = 0; 814 childp->refcnt++; /* keep the node in memory until destroyed */815 813 childp->dirty = true; 816 814 fibril_mutex_unlock(&childp->lock); … … 1490 1488 fs_index_t index = (fs_index_t)IPC_GET_ARG2(*request); 1491 1489 fs_node_t *fn; 1492 fat_node_t *nodep;1493 1490 int rc; 1494 1491 … … 1502 1499 return; 1503 1500 } 1504 1505 nodep = FAT_NODE(fn);1506 /*1507 * We should have exactly two references. One for the above1508 * call to fat_node_get() and one from fat_unlink().1509 */1510 assert(nodep->refcnt == 2);1511 1501 1512 1502 rc = fat_destroy_node(fn);
Note:
See TracChangeset
for help on using the changeset viewer.